未分类 · 2023年 1月 19日 0

服务器或VPS如何用ROOT权限密码登录

方法A

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 重启服务器

方法B

sudo -i  用root身份

passwd  设置root密码

vi /etc/ssh/sshd_config   修改配置文件

PermitRootLogin yes

PasswordAuthentication yes

reboot 重启服务器