Bad owner or permissions on $HOME/.ssh/config
The ssh with RHEL 4 is a lot more anal about security checking. In my case, it was the fact that $HOME/.ssh/config was group-writable which was causing it to barf. To fix:
$ cd ~/.ssh $ chmod 600 *
Note that this error message is kind of stupid, since $HOME/.ssh had permissions 700 on it, and $HOME had 750 permissions on it. If any process managed to evade those permissions, changing the permissions on the config file would be similarly defeated.
解决SSH权限错误
本文解决了一个特定的SSH连接问题,即Badownerorpermissionson$HOME/.ssh/config错误。该问题出现在RHEL4系统中,原因是$HOME/.ssh/config文件具有组写权限。通过将文件权限更改为600解决了此问题。
2138

被折叠的 条评论
为什么被折叠?



