linux-禁止root登录

为提高服务器安全性,通常都会禁止root登录

1、添加普通用户dwchensenwen并设置密码

useradd dwchensenwen

echo "csw930328@"|passwd dwchensenwen --stdin

usermod -a -G wheel dwchensenwen

vim /etc/sudoers

此时dwchensenwen普通用户就可以切换到root用户下

 

2、编辑/etc/ssh/sshd_config

vim /etc/ssh/sshd_config

修改PermitRootLogin yes为PermitRootLogin no

重启sshd服务

systemctl restart sshd

 

posted @ 2019-06-28 17:02  虫儿飞_mustartk  阅读(235)  评论(0编辑  收藏  举报