ssh-agent Questions
1
I have an Ubuntu server. I have configure ssh-agent forwarding to it. The server runs a few lxc containers.
When I "lxc exec container bash", the ssh-agent isn't forwarded to the lxc bash.
How ca...
2
2
Solved
I run shell script with ssh command inside my application. Used private key is encrypted by passphrase and the problem is - I cannot interactively pass it when asked.Key is not added in ssh-agent. ...
5
I am using git on linux, when pushing to gitlab, sometimes it either stuck at:
debug1: Connecting to gitlab.com [52.167.219.168] port 22.
or
debug1: client_input_channel_req: channel 0 rty...
5
I’m running Apache Netbeans 12 on Windows and I’m really struggling to connect to my github repositories using an SSH connection.
I get the strong impression that this has been a problem for Netbea...
Pessimism asked 15/7, 2020 at 15:19
6
Solved
Local OS: Windows 10 Pro (using Git Bash as my terminal)
Staging Server OS: Ubuntu 16.04 LTS
I've been struggling to get a basic Capistrano deploy working on my staging server. I followed this gu...
Moye asked 6/1, 2018 at 4:51
2
Solved
I'm using cygwin as my terminal on Windows 7. I have found several suggestions to run ssh-agent in cygwin so I don't have to enter my password every time I run a git fetch/pull/push. I added the fo...
3
Solved
TLDR: how to ssh a different machine and where to store ssh credentials on Jenkins pipeline (using ssh / SSHAgent plugin /etc...) ?
The Problem: In Jenkins pipeline I need a remote ssh to target ma...
Prelect asked 14/6, 2016 at 7:42
2
Solved
I have a simple jenkins pipeline build, this is my jenkinsfile:
pipeline {
agent any
stages {
stage('deploy-staging') {
when {
branch 'staging'
}
steps {
sshagent(['my-credentials-id']) {
...
Egan asked 14/3, 2018 at 10:26
9
Solved
I have a following problem:
$ git push -u origin master
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the re...
3
Okay so for several projects I need to access my private repositories, so I'd like to forward the host's SSH Agent to the container to allow retrieving from these private repositories. Eventually I...
Clypeate asked 16/11, 2017 at 16:33
3
Solved
I run Windows 10 with WSL. I have the desired behaviour on one computer, but cannot replicate elsewhere. Here's what I'm after:
First time I run a remote git command using my ssh key, git prompts...
Latinity asked 20/9, 2018 at 11:2
1
Solved
I have been having serious troubles to get ssh-agent forwarded into the docker container (with my docker-compose installation). I have Mac running Catalina, with docker-engine 19.03.8 and Compose @...
Lucifer asked 30/4, 2020 at 13:52
1
Solved
I have always just generated the ssh key, and then add it to GitHub and it is done: I can clone or push to GitHub and do all the tasks.
But nowadays I see "Adding your SSH key to the ssh-agent", a...
12
Solved
5
Solved
Firstly I tried to get fabric working, but it kept asking me for a password.
So I'm trying to reduce the problem. Perhaps it would be a good POC to just create a SSH connection from Python. I disc...
3
I have a problem when trying to use Git with Cygwin.
I've generated and added ssh key to the GitLab server and everything works just fine through the MINGW64 (cloning, pulling, etc), but I wanted t...
4
Solved
I use eclipse with git (egit).
I would like to make use of my ssh-agent so I can push from eclipse. Does anybody know how to set up egit to use ssh-agent?
background: I can't upload my key to ec...
3
Solved
I've installed SSH Agent Plugin to pull Git repository using SSH authentication. I'd like to use SSH keys located in system file (from the Jenkins master ~/.ssh option). It's screenshot taken from ...
Odo asked 30/6, 2018 at 23:54
2
I am writing a client program that allows the user to log in to a server. The program expects that the user has already set up an ssh agent and added their RSA keypair to it. It grabs the public ke...
2
I am trying to use Ansible to create an infrastructure for ssh connections.
- name: Copy ssh key to each server
copy: src=static_folder_key dest=/home/ec2-user/.ssh/ mode=0600
- name: Enable ss...
13
Solved
I have a private key protected with a password to access a server via SSH.
I have 2 linux (ubuntu 10.04) machines and the behavior of ssh-add command is different in both of them.
In one ...
3
Solved
I want to pull code from Github into my Docker image while building. I have a deploy key generated from the repository, but it seems to me the ssh-agent is not working on my Docker image.
What I ...
1
This thread is a response to the titled question : Why ssh-agent doesn't forward my SSH certificate ?
Actually I couldn't find any information during my search. I had to read the C code of ssh-a...
Palette asked 6/12, 2017 at 17:3
7
I have msysgit installed, with OpenSSH. I am connecting to a gitosis repo. From the git bash, I have created a .profile file that runs ssh-agent (if not already running) each time git bash is opene...
© 2022 - 2024 — McMap. All rights reserved.