查看ssh服务状态
/etc/init.d/ssh status
修改配置文件
vim /etc/ssh/sshd_config
1、取消注释后把prohibit-password修改为yes
#PermitRootLogin prohibit-password
PermitRootLogin yes
2、把以下取消注释
#PasswordAuthentication yes
PasswordAuthentication yes
重启服务
/etc/init.d/ssh restart
设置ssh开机自启
update-rc.d ssh enable