Debian从8.0开始,默认关闭了SSH。打开的方式如下:
1.修改/etc/ssh/sshd_config
2.将#PermitRootLogin yes
3.启动SSH服务,命令为:/etc/init.d/ssh start // 或者service ssh start
4.验证SSH服务状态,命令为:/etc/init.d/ssh status
5.添加开机自启动 update-rc.d ssh enable
tips:关闭则为 update-rc.d ssh disabled