Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] Gerrit registration problem

"Baumgart, Jens" <jens.baumgart@xxxxxxx> wrote:
> I got some problems on registration. I can log on to Gerrit (User jensbaumgart) but I can not 
> execute SSH to accept the host key:
> 
> $ ssh -p 29418 jensbaumgart@xxxxxxxxxxxxxxxx
> jensbaumgart@xxxxxxxxxxxxxxxx's password:
> Permission denied, please try again.

It seems you aren't picking the correct SSH key in your SSH client.
Try adding a Host block to your ~/.ssh/config file:

  Host egit.eclipse.org
    User jensbaumgart
	IdentityFile .ssh/id_....

so the client knows exactly which key is listed in your Settings >
SSH Keys tab within Gerrit.


The password based login is failing because its a different password
than your web login.  To use a password based login for git over
ssh:// or http:// you first have to generate a password in the
Settings > SSH Keys panel.

-- 
Shawn.


Back to the top