启动SSH服务时若出现“Permissions 0737 for '/etc/ssh/ssh_host_rsa_key' are too open”问题
解决办法:
正确设置文件的访问权限,如
chmod 600 /etc/ssh/ssh_host_rsa_key
本文解决SSH服务启动时出现的“Permissions 0737 for '/etc/ssh/ssh_host_rsa_key' are too open”问题,指导如何正确设置密钥文件权限。
启动SSH服务时若出现“Permissions 0737 for '/etc/ssh/ssh_host_rsa_key' are too open”问题
解决办法:
正确设置文件的访问权限,如
chmod 600 /etc/ssh/ssh_host_rsa_key
3625