This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: how to make ssh-agent automatically


Hi HS...

You can use keychain (a package available from setup.exe).

I do something like

ssh-add -l >/dev/null 2>&1
if [ $? -eq 1 ]; then
 ssh-add
fi

in my .bash_profile, because keychain is slow when I launch several windows.

Why do you kill the agent when you log out? (Windows will kill it when you log off from windows.)
If you want to keep the agent around from one login to the next, you can launch the agent as a service. I used to do that with keychain, but for performance reasons, I use ssh-agent and ssh-add directly. I plan on proposing a package for doing this.


HTH,

...Karl


From: "H.S."
Subject: how to make ssh-agent automatically
Date: Wed, 30 Nov 2005 17:56:21 -0500

Hi,

I yesterday installed a bare minimum Cygwin (via internet) on to a
laptop running Windows XP. The purpose of the Cygwin installation is to
backup data on to a Linux computer using rsync and ssh.

I was wondering, to allow for passwordless login via ssh I have to run
ssh-agent and ssh-add commands. I have put ssh-agent in .bashrc in
Cygwin user's home and "kill $SSH_AGENT_PID" in .bash_logout. But how do
I deal with ssh-add? In other words, what do I need to do so that a user
doesn't need to do ssh-add each time he logins into his account in
Windows XP (ssh-agent and ssh-add run automatically)? There is no X
server installed, no Gnome, no KDM, no fvwm.

All help is appreciated.
thanks,
->HS


-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/




-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]