“Could not open a connection to your authentication agent” SSH-Add Error
- by Joe Jr Yamut
When `ssh-add` does not work as expected because a ‘Could not open a connection to your authentication agent.’ error comes out, this might help:
eval `ssh-agent`
There are environment variables that needs to be set and doing the command above will essentially do just that but with far lesser key strokes. It is also easier to remember since those archaic commands and environment variables that needs to be set always escape my mind.
However, do check that an ssh-agent daemon is running in the background. This can be done easily with `ps aux|grep agent` command. Supposedly, the agent should be running as it is started at the “beginning of an X-session or a login session.”
Similar Posts:
- > How To Force Disconnect A Login Session That Is No Longer In Use October 15, 2013
- > How To Set Default Desktop Session On Ubuntu June 11, 2011
- > Odd Firefox 4 Restore Previous Session Behavior March 15, 2011
- > SUSE Kickoff Menu October 31, 2006
- > Run Pipelight On Firefox March 29, 2015
When `ssh-add` does not work as expected because a ‘Could not open a connection to your authentication agent.’ error comes out, this might help: eval `ssh-agent` There are environment variables that needs to be set and doing the command above will essentially do just that but with far lesser key strokes. It is also easier…