欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu 18.04 远程允许root登录

程序员文章站 2022-06-05 18:38:06
...

1. 查看ssh服务器是否安装并启动

  #sudo ps -e | grep ssh

1. 安装ssh服务器

#sudo apt-get install openssh-server

2. 配置sshd文件

#sudo vi /etc/ssh/sshd_config

 PermitRootLogin yes (默认为#PermitRootLogin prohibit-password)

3. 重启服务器 service ssh restart