client: ~/.ssh/id_*.pub
server: ~/.ssh/authorized_keys
保证你的server端目录~/.ssh(0700)和~/.ssh/authorized_keys(0600)只有属主拥有读写权限。至于client端你设置成777都没有关系,不受影响。
权限错误的日志分析。(服务器Server端)
$ssh localhost -v 可以追踪信息,/var/log/secure和auth.log也可查看有关ssh的日志
[root@minot ~]# tail -f /var/log/secure
......................
Mar 28 09:41:14 minot sshd[3152]: Authentication refused: bad ownership or modes for file /root/.ssh/authorized_keys
......................
这里的权限已经提示了,这包括authorized_keys文件本身,也包括.ssh目录,root目录,整个路径
阅读(3969) | 评论(0) | 转发(0) |