[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Savannah-users] SSH key change seems ineffectual
From: |
Bob Proulx |
Subject: |
Re: [Savannah-users] SSH key change seems ineffectual |
Date: |
Fri, 6 Apr 2018 16:57:33 -0600 |
User-agent: |
Mutt/1.9.4 (2018-02-28) |
Hi Steve,
> I am trying to do commits from a new machine. I added its SSH public
> RSA key on the Savannah web page (for GNU FreeFont project), but for
> hours, neither SVN nor CVS works for me. Both are asking for a
> password.
Looking in the logs doesn't show anything obvious. Seems like it
should be working. I looked quickly at your ssh keys in the database
and they looked okay. Since you say you are working from a new
machine then I suspect something there. Perhaps permissions. Usually
permissions must not be group writable anywhere up the directory tree
for example so be sure to check permissions.
> Have i forgotten something? Or do key changes have to be authorized
> by somebody?
Things should be working. Try this as a simple test.
$ ssh address@hidden hostname
You should see:
You tried to execute: hostname
Sorry, you are not allowed to execute that command.
That means things are working. But you might be seeing something
else. If so and the reason isn't obvious then try:
ssh -v address@hidden hostname
You should see something like (this is from me):
debug1: Next authentication method: publickey
debug1: Offering public key: RSA
SHA256:ny9SZmnnLpUeTcmzt+pVpoxdH39AntZ+8Cb33tmCLzQ /home/rwp/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 279
If you don't then something is wrong with the public key offer.
Either permissions or something.
Bob