On Tue, Nov 27, 2012 at 04:41:42PM -0800, Bhavani Thodupunuri wrote: > 1. logged into my local Gitorious server > 2. upload your SSH key through the web interface > 3. verified that the key is marked as ready > 4. Deleted old keys which were already in the list. > 5. Still does not work.
Bhavani, When you upload an SSH key through the web interface, a message is sent to the message queue on your server. The script/poller script (provided it's running) will fetch this message from the queue and add it to the public key repository (~git/.ssh/authorized_keys) and mark the key as ready after doing so. When this isn't happening it could mean one of two things: - The script/poller script isn't running on your server - An error occured while processing your key. One thing that could occur is if the poller script is run by a user who is not permitted to write to ~git/.ssh/authorized_keys; you should make sure the script is running as the git user. The first thing to verify would be that the poller is running. If it is, the $gitorious_root/log/message_processing.log file should have an error message describing what went wrong. Cheers, - Marius -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected]
