/var/empty/sshd 및 /etc/ssh/ssh_host_rsa_key 구성 파일 권한 등 sshd 구성 파일의 권한이 수정되어 SSH를 사용하여 로그인하지 못할 수 있습니다.sshd -t
“/var/empty/sshd must be owned by root and not group or world-writable.”
/var/empty/sshd/ 파일 권한을 수정합니다.chmod 711 /var/empty/sshd/
sshd -t
“/etc/ssh/ssh_host_rsa_key are too open”
/etc/ssh/ssh_host_rsa_key 파일 권한을 수정합니다.chmod 600 /etc/ssh/ssh_host_rsa_key
피드백