Ubuntu开启root远程ssh连接

最后都变了- 提交于 2020-08-11 03:49:21

ubuntu 开启Root SSH远程连接

  • 为root账户设置密码
sudo passwd root

  • 切换到root账户
su root

  • 查看系统中是否运行ssh服务
ps -ef | grep ssh

  • 没有运行就安装ssh
apt-get install openssh-server

  • 修改/etc/ssh/sshd_config文件
vim /etc/ssh/sshd_config
#PermitRootLogin prohibit-password 注释掉并新增 PermitRootLogin yes

  • 重启ssh服务
service ssh restart
或者
systemctl restart ssh
  • 使用xshell连接
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!