ssh-agent Questions
2
Solved
I'm getting an error when using ssh, which tries to use keys from ssh-agent, but fails with this message (when running ssh -v):
debug1: get_agent_identities: ssh_fetch_identitylist: communication w...
7
Solved
I'm on Windows. I installed git and posh-git (some helpers for Windows PowerShell). I can add keys with ssh-add and can authenticate with github and my webserver. I can also use git from the PowerS...
Osmometer asked 6/1, 2016 at 16:55
25
Solved
I created keys as instructed in the GitHub tutorial, added them to GitHub, and tried using ssh-agent explicitly — yet git continues to ask me for my passphrase every time I try to do a pull or a pu...
43
I am running into this error of:
$ git push heroku master
Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list of known hosts.
! Your key with fingerprint b7:fd:1...
43
I am running into this error of:
$ git push heroku master
Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list of known hosts.
! Your key with fingerprint b7:fd:1...
4
I'm on windows/Git bash/MingW64, trying to automate adding ssh keys for use with git.
I've followed this guide, altering only the path of my private key file.
It seems to work - when opening git ba...
10
Solved
I'm setting up a git environment on Windows XP (msysGit 1.7.11, TortoiseGit 1.7.14) and trying to achieve following points :
ssh connection on a port different than default 22
ssh authentificati...
Tycoon asked 22/11, 2012 at 15:45
14
I am trying to find a nice way to restore the SSH agent when I reconnect a disconnected tmux session.
The cause seems to be that the SSH agent session changes but the environment variable from the...
5
Solved
ssh-add -l displays that I have 3 RSA keys added to my SSH agent.
ssh-add -L displays those public keys.
How do I get the private keys as well, so that I can save them to a file? Or is it by desi...
Kittrell asked 4/6, 2010 at 17:45
1
I copying over my ssh key in a dockerfile for dev purposes on a windows machine, but I cannot get the SSH_AUTH_SOCK variable set,
here is my Dockerfile
FROM node:alpine
WORKDIR /usr/src/app
COP...
Barman asked 10/5, 2019 at 13:37
5
I getting error "ERROR: Failed to run ssh-add"
I am trying to ssh into remote machine so
SSH credential are set
Pipeline script is calling ssh-agent
On executing the job I get error below
I ...
4
Solved
I'm wondering if I could get some help. I recently reinstalled my OS and I'm running into a strange issue that I've never run into before. I'm following the Github steps to add ssh agent
Basically,...
7
Solved
I am trying to add a key to ssh-agent and want ssh-add to read the password from the key file I'm using. How is this possible?
How do I automate this process from the shell script?
0
I am trying to configure ssh for use with github on a new computer. I've attempted to follow the instructions listed in the tutorial on github to no avail. Here's a summary.
Using my M1 mac's (macO...
Thesaurus asked 17/9, 2022 at 13:50
1
Solved
I want to load ssh key protected by passphrase from varible with ssh-add.
When I try to load it from file works well like this.
eval $(ssh-agent)
DISPLAY=1 SSH_ASKPASS="passwordfile" ssh-...
3
Solved
I cannot for the life of me figure out why my SSH config is forwarding the wrong key. I have two keys, we'll call them home_rsa and work_rsa. I have done the following:
eval `ssh-agent`
ssh-add -K...
Oedema asked 1/4, 2016 at 18:24
3
Solved
I am trying to create a docker image for my Python flask API.
I need git to install dependencies and I have already installed git in docker few times. But here, I cannot understand what I'm doing...
1
Solved
When I search PID of manualy started ssh-agent I also found process /usr/bin/ssh-agent -l. I try to find description in man but I can't. What is the -l flag and can it be useful?
2
Solved
Is there a way to add root's ssh private key in ssh-agent, with a standard sudo user?
I'm not really sure, but is this the restriction with this command?
In the ssh-add man page I found this:
Ide...
3
Solved
I can add pem files to my SSH agent very easily using ssh-add, like so:
$ ssh-add /home/jsmith/keys/mytest.pem
But I can't seem to remove them:
$ ssh-add -d /home/jsmith/keys/mytest.pem
Bad key...
3
Solved
Using git for windows (git-scm.com) and a script, i can get Bash to stop asking for the passphrase but i can not seem to remove the passphrase prompt from git GUI.
The url to the remote is using t...
Receiptor asked 14/6, 2019 at 20:55
2
Solved
How can I tell ssh with a command line option to not use the SSH agent?
ssh -a does something different. It does not forward the agent, but uses it.
I read the man page, and could not find a soluti...
2
Somewhat of a noob question but everyday at work when I open git bash I have to start the ssh-agent daemon and I have to add my ssh-private key to the user-agent so that Github knows who I am.
eva...
2
6
I'm using sshtunnel to connect to connect to a remote server and on to a database from there. Everything is working fine, except that sshtunnel doesn't seem to recognize my ssh_private_key_password...
Kravits asked 21/10, 2016 at 3:17
1 Next >
© 2022 - 2024 — McMap. All rights reserved.