奇怪的是,如果 chmod 为 664,.ssh/authorized_keys 将不起作用?
我尝试使用 ssh 设置自动登录,但它不起作用,并且
rw-rw-r--
在服务器上看到该文件,因此它是 664
。但是无法自动登录,直到我chmod到600,然后突然就可以自动登录了。有没有要求必须是600
才能登录工作?
I was trying to set up automatic log in using ssh, but it didn't work, and saw the file as
rw-rw-r--
on the server, so it is 664
. But it can't automatic log in, until I chmod to 600 for it, and then all of a sudden, it can automatic log in. Is there a requirement that says it must be 600
for it to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
644也不错。它只是不能是组和/或其他可写的。
644 is fine too. It just can't be group and/or other writable.
在 sshd_config 中设置 StrictModes no 将删除此限制。但不建议这样做。
Setting StrictModes no in sshd_config will remove this restriction. But it's not recommended.