I am trying to clone to a gerrit server using another user username2
however it fails with Permission denied (publickey)
. I tried to generate an ssh key following the advice of Server Fault question "how do you create an ssh key for another user?"
The following steps didn't work. What am I missing?
ssh-keygen -f ~/.ssh/username2
cp ~/.ssh/username2.pub ~/.ssh/authorized_keys
- Added the username2.pub to tech-gerrit.sd.company.com
- ~/.ssh/config
Host tech-gerrit.sd.company.com HostName tech-gerrit.sd.company.com Port 29418 User username2 IdentityFile /Users/username1/.ssh/username2
- Tried to clone using below command
git clone ssh://[email protected]:29418
- Logged in as username2 into gerrit and added the username2.pub to
Normally, Git SCM is designed to use
git
as the user for SSH cloning. All users public keys in the SCM is propagated to that user. So it shouldn't matter which user you're trying to clone, as long as there's a private key matching the public key in SCM.You can check if the key works by running
ssh [email protected]:29418
and this should print a greeting that addresses the user with matching the private keyAs you can see, all main steam SCM systems use the same user for SSH, which is
git@
.The only time you would need to use a username is when you're cloning a repo over HTTP/HTTPS. In which case you would normally use
username@
.Hope this helps.
Also don't forget to load the private key to the agent.
Run
ssh-add -l
and if you getThe agent has no identities.
Try adding the key withssh-add
.