SSH打通密钥后仍需要密码
时间:2022-05-05 01:29
其他原因导致的此问题:
一、配置文件sshd_config需要设置
vim /etc/ssh/sshd_config
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
重启SSH服务
二、文件权限问题
chmod 700 ~/. ssh /
chmod 700 /home/userName
chmod 600 ~/. ssh /authorized_keys
如果非上述原因导致的SSH打通密钥仍需要密码登陆,在需要查看日志/var/log/secure
例如此类报错:Authentication refused:bad ownership or modes for directory /root
则需要查看/root/ 目录权限,确保宿主用户为root
修复方法:chown root:root -R /root