有时候买vps,不能设置root密码连接,只可以通过秘钥连接,所以用这几个名字,开启root,设置密码,方便登录!
这个命令,需要在
root
模式下执行
echo root:你需要设置的密码|sudo chpasswd root
sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
systemctl restart sshd.service