环境
- Red Hat Enterprise Linux 4/5
问题
- How to allow users with no password to login with SSH ?
决议
By default, sshd will not allows login to accounts with empty password. To allow such logins, set the following in /etc/ssh/sshd_config
PermitEmptyPasswords yes
snip from 'man sshd_config'
PermitEmptyPasswords : When password authentication is allowed,it specifies whether the server allows login to accounts with empty password strings.The default is “no”.
转载至https://access.redhat.com/solutions/37060