谷歌云 SSH改root权限针对centos7.6 或者 ubantu 20.4系统均有用

sudo -i                  #切换到root

passwd                  #设置密码

 
sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config


sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config

 
sudo service sshd restart

 
reboot                        #重启服务器

你可能感兴趣的:(服务器,运维)