【设置】ubuntu14.04 允许root用ssh登录
2020年07月23日 10:26:14 作者:Jiaozn 分类:Linux 评论(0)重启ssh
1 | service ssh restart |
查看ssh是否已安装
ssh进程
1 | ps -e | grep ssh |
ssh占用端口
1 | lsof -i:22 |
ssh服务已启动,但是用root账号无法连接
注:
一般root是被禁用的,需要先开启root,参照
使用其他账号连接没问题
编辑/etc/ssh/sshd_config
1 2 3 | 注释掉PermitRootLogin without-password 增加PermitRootLogin yes |
保存,重启ssh
sudo service ssh restart
用putty可以登录到服务器了
除非注明,发表在“Jiaozn的博客”的文章『【设置】ubuntu14.04 允许root用ssh登录』版权归Jiaozn所有。
转载请注明出处为“本文转载于『Jiaozn的博客』原地址https://jiaozn.com/reed/594.html”
评论
发表评论