SSH在CentOS 6.3上不使用PublicKey

我有一个CentOS 6.3服务器和一个名为ako的用户。
我运行Kubuntu 12.10作为我的客户端,并使用ssh-copy-id命令将我的公钥复制到服务器。
我用这些值更新了/etc/ssh/sshd_config文件:

 RSAAuthentication yes PubkeyAuthentication yes StrictModes yes PasswordAuthentication no 

但是,当我尝试login到服务器,我得到这个错误:

 Permission denied (publickey). 

我已经安装了很多次SSH,没有问题,但我不知道为什么这个不工作!

编辑
这是以详细模式运行的ssh的输出:

 ssh [email protected] -v OpenSSH_6.0p1 Debian-3ubuntu1, OpenSSL 1.0.1c 10 May 2012 debug1: Reading configuration data /etc/ssh/ssh_config debug1: /etc/ssh/ssh_config line 19: Applying options for * debug1: Connecting to 123.456.789.000 [123.456.789.000] port 22. debug1: Connection established. debug1: identity file /home/ako/.ssh/id_rsa type 1 debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048 debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048 debug1: identity file /home/ako/.ssh/id_rsa-cert type -1 debug1: identity file /home/ako/.ssh/id_dsa type -1 debug1: identity file /home/ako/.ssh/id_dsa-cert type -1 debug1: identity file /home/ako/.ssh/id_ecdsa type -1 debug1: identity file /home/ako/.ssh/id_ecdsa-cert type -1 debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3 debug1: match: OpenSSH_5.3 pat OpenSSH_5* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_6.0p1 Debian-3ubuntu1 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes128-ctr hmac-md5 none debug1: kex: client->server aes128-ctr hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug1: Server host key: RSA xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx debug1: Host '123.456.789.000' is known and matches the RSA host key. debug1: Found key in /home/ako/.ssh/known_hosts:1 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: Roaming not allowed by server debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey debug1: Next authentication method: publickey debug1: Offering RSA public key: /home/ako/.ssh/id_rsa debug1: Authentications that can continue: publickey debug1: Trying private key: /home/ako/.ssh/id_dsa debug1: Trying private key: /home/ako/.ssh/id_ecdsa debug1: No more authentication methods to try. Permission denied (publickey). 

你可以在详细模式下运行你的ssh来查看具体信息……看起来你是以不同的用户身份连接的……“ako”

检查目标系统上“ako”用户主目录的权限。 ssh-copy-id应该已经为你做了。

 chmod go-w ~/ chmod 700 ~/.ssh chmod 600 ~/.ssh/authorized_keys 

您已将您的ID文件从具有AppArmor的系统复制到使用SELinux的系统。
在Centos 6.3机器上运行:

  • restorecon ~/.ssh/authorized_keys
  • chcon unconfined_u:object_r:ssh_home_t:s0 ~/.ssh/authorized_keys

上下文应该看起来像。

ls -Z .ssh / authorized_keys
-rw ——-。 用户用户unconfined_u:object_r:ssh_home_t:s0 .ssh / authorized_keys