无密码 ssh 错误

无密码 ssh 错误

我正在尝试为 Hadoop 2.6.0 启用无密码 ssh。我尝试的方法如下:

ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa
cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys

我还尝试将以下内容添加到 ssh_config 文件中,正如这里的一些问题中提到的那样

PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PermitRootLogin yes

我仍然无法通过 ssh 进入本地主机。输出ssh -v localhost如下:

OpenSSH_6.8p1, OpenSSL 1.0.2a 19 Mar 2015
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to localhost [127.0.0.1] port 22.
debug1: Connection established.
debug1: identity file /home/MP30589/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_rsa-cert type -1
debug1: identity file /home/MP30589/.ssh/id_dsa type 2
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.8
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.8
debug1: match: OpenSSH_6.8 pat OpenSSH* compat 0x04000000
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr [email protected] none
debug1: kex: client->server aes128-ctr [email protected] none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:l/78VMLSVdtD9SMx46+m4NZt4Kmd1x8I038v9ozQYbM
debug1: Host 'localhost' is known and matches the ECDSA host key.
debug1: Found key in /home/MP30589/.ssh/known_hosts:1
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,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/MP30589/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Offering DSA public key: /home/MP30589/.ssh/id_dsa
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Trying private key: /home/MP30589/.ssh/id_ecdsa
debug1: Trying private key: /home/MP30589/.ssh/id_ed25519
debug1: Next authentication method: keyboard-interactive
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: password
MP30589@localhost's password:

有人能帮我吗?提前谢谢!

编辑:

我也尝试过按如下方式更改文件权限,但错误仍然出现

chmod 700 ~/.ssh 
chmod 600 ~/.ssh/authorized_keys

答案1

这不是办法。首先,要设置无密码访问,您需要一台目标机器。这不是您在本地设置的东西,您必须设置无密码访问某处。无论如何,这样做的方法是:

ssh-keygen -t rsa -P ''

这将生成您的密钥。现在,您需要将其复制到目标机器:

ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]

完成后,您将remote.com无需密码即可登录。

相关内容