From ae36e4fb4b087a689bb65da871356058d2a47021 Mon Sep 17 00:00:00 2001 From: tekkub Date: Mon, 30 Nov 2009 21:06:30 -0700 Subject: More details on ssh errors --- _posts/2009-06-17-troubleshooting-ssh.textile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to '_posts') diff --git a/_posts/2009-06-17-troubleshooting-ssh.textile b/_posts/2009-06-17-troubleshooting-ssh.textile index be33dd0..22bd7cd 100644 --- a/_posts/2009-06-17-troubleshooting-ssh.textile +++ b/_posts/2009-06-17-troubleshooting-ssh.textile @@ -22,6 +22,26 @@ h2. Permission denied (publickey) This is usually caused when ssh cannot find your keys. Make sure your key is in the default location, @~/.ssh@. If you run @ssh-keygen@ again and just press enter at all 3 prompts it will be placed here automatically. Then you can add the contents of id_rsa.pub to "my github keys":https://github.com/account. If id_rsa.pub doesn't work try id_dsa.pub. You might need to generate a new dsa key with @ssh-keygen -t dsa@ if you just have an rsa key. +h3. Finding out what keys ssh is using + +Finding what keys ssh is offering to the server is fairly simple. Run ssh -v git@github.com and look at the output: + +
debug1: Next authentication method: publickey
+debug1: Trying private key: /Users/tekkub/.ssh/identity
+debug1: Trying private key: /Users/tekkub/.ssh/id_rsa
+debug1: Trying private key: /Users/tekkub/.ssh/id_dsa
+debug1: No more authentication methods to try.
+ +In this example, SSH could not find any keys ("Trying" means ssh is trying to find the key on disk). We should either rename our keypair to use a default name, or run @ssh add path/to/key@ to make SSH aware of the key's existence. + +
debug1: Next authentication method: publickey
+debug1: Offering public key: /Users/tekkub/.ssh/id_rsa
+debug1: Remote: Forced command: gerve tekkub
+...
+ERROR: Hi tekkub! You've successfully authenticated, but GitHub does not provide shell access
+ +Here we've renamed our keypair to @~/.ssh/id_rsa@. SSH finds the key and offers it to the server. This key works and we authenticate as user "tekkub". + h2. Issues when using sudo p((. _You shouldn't run @sudo git@ unless you have a very good reason. If you don't know if you have a good reason to use sudo, it's likely that you do not have one._ -- cgit v1.3.1