首先須要查看是否安裝ssh,若是沒有,輸入如下命令安裝ssh
sudo apt-get install openssh-server
進入/etc/ssh/sshd_config文件rest
vi /etc/ssh/sshd_config
將PermitRootLogin prohibit-password 改成 PermitRootLogin yes而後重啓ssh服務code
PermitRootLogin prohibit-password
PermitRootLogin yes
/etc/init.d/ssh restart