ssh服务相关命令
#启动SSH服务
sudo /etc/init.d/ssh start
#查看服务是否已启动
ps -e | grep ssh
解决远程连接不上问题
修改SSH配置文件
vim /etc/ssh/sshd_config
修改前:
# Authentication:
#LoginGraceTime 2m
#PermitRootLogin prohibit-password
#StrictModes yes
修改后:
# Authentication:
LoginGraceTime 2m
PermitRootLogin yes
StrictModes yes
重启ssh服务
sudo service ssh restart
登录成功
恭喜你,今天又解决了一个问题,奥力给!给自己点个赞👇 👇 👇~