我试图设置无密码login从我的mac到我的远程服务器运行CentOS与“用户1”的公共密钥authentication。
我用$ ssh-keygen -t rsa在我的mac上设置一个公钥,然后将mykey.pub文件复制到CentOS user1的.ssh目录中,然后做了一个
cat mykey.pub >> authorized_keys
在.ssh目录中。
我还将.ssh目录的权限设置为700,将authorized_keys设置为600。
当我做一个:
ssh [email protected]
它仍然提示我input密码。 这是怎么回事?
这里是我的sshd_config文件在远程机器上的副本:
Protocol 2 SyslogFacility AUTHPRIV PermitRootLogin no RSAAuthentication yes PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys PasswordAuthentication yes PermitEmptyPasswords no ChallengeResponseAuthentication no GSSAPIAuthentication yes GSSAPICleanupCredentials yes UsePAM no AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT AcceptEnv LC_IDENTIFICATION LC_ALL X11Forwarding yes Subsystem sftp /usr/libexec/openssh/sftp-server
更多信息:
这是我的ssh -v输出。 我认为系统默认使用id_rsa.pub而不是我命名的mykey.pub和mykey(私钥文件)。
OpenSSH_5.2p1, OpenSSL 0.9.8r 8 Feb 2011 debug1: Reading configuration data /etc/ssh_config debug1: Connecting to myremoteserver.com [1.1.1.1 (fake IP)] port 22. debug1: Connection established. debug1: identity file /Users/LocalUser/.ssh/identity type -1 debug1: identity file /Users/LocalUser/.ssh/id_rsa type -1 debug1: identity file /Users/LocalUser/.ssh/id_dsa type -1 debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3 debug1: match: OpenSSH_4.3 pat OpenSSH_4* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_5.2 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: Host 'myremoteserver.com' is known and matches the RSA host key. debug1: Found key in /Users/LocalUser/.ssh/known_hosts:11 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,gssapi-with-mic,password debug1: Next authentication method: publickey debug1: Trying private key: /Users/LocalUser/.ssh/identity debug1: Trying private key: /Users/LocalUser/.ssh/id_rsa debug1: Trying private key: /Users/LocalUser/.ssh/id_dsa debug1: Next authentication method: password
如何告诉系统使用mykey而不是id_rsa?
看起来你真正的问题是在最后:
如何告诉系统使用mykey而不是id_rsa?
用-i标志。
FTFM:
-i identity_file Selects a file from which the identity (private key) for RSA or DSA authentication is read. The default is ~/.ssh/identity for protocol version 1, and ~/.ssh/id_rsa and ~/.ssh/id_dsa for pro- tocol version 2. Identity files may also be specified on a per- host basis in the configuration file. It is possible to have multiple -i options (and multiple identities specified in config- uration files).
那么:
ssh -i mykey [email protected]
当你创build一个公钥时,你也在创build一个叫做id_rsa的私钥
id_rsa文件应位于连接的用户.ssh文件夹中,并按照您对服务器所描述的那样设置权限。
如果存在,那么试试
ssh -vvv <server>
这将给你更详细的日志logging,并将提供更多的线索,为什么它不工作。