赞
踩
1、检查是否开启SSH服务
ps -e |grep ssh
2、安装SSH服务
sudo apt-get install openssh-client 客户端
sudo apt-get install openssh-server 服务器
3、修改SSH配置文件\可以通过SSH配置文件更改包括端口、是否允许root登录等设置,配置文件位置:
/etc/ssh/sshd_config #默认是不允许root远程登录的,可以再配置文件开启。
sudo vi /etc/ssh/sshd_config
找到PermitRootLogin without-password 修改为PermitRootLogin yes
4、重启SSH服务
systemctl restart ssh
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。