linux免密登录报错 Bad owner or permissions on /etc/ssh/ssh_config.d/05-redhat.conf

问题:权限不对的

解决:
1.检查文件的所有者和权限。

确保文件的所有者是正确的。 运行以下命令来确定文件的所有者和权限:

  ls -l /etc/ssh/ssh_config.d/05-redhat.conf

通常情况下,SSH配置文件应该属于root用户。如果所有者不是root,修改为root

2.使用以下命令更改所有者:

SSH配置文件应该具有以下权限:所有者可读可写,组用户只能读取,其他用户只能读取。 

 chown root:root /etc/ssh/ssh_config.d/05-redhat.conf

再次执行就可以了。 

linux免密登录报错 Bad owner or permissions on /etc/ssh/ssh_config.d/05-redhat.conf_第1张图片

你可能感兴趣的:(linux,ssh,服务器)