Ubuntu SSH连接密码错误 Permission denied
首先可能并不是密码错误,而是ssh没有配置密码登录权限
解决办法
# vim /etc/ssh/sshd_config
修改: #PasswordAuthentication yes
为: PasswordAuthentication yes
修改: PermitRootLogin prohibit-password
为: PermitRootLogin yes
重新启动ssh
# /etc/init.d/ssh restart
再一次连接就会成功了