CentOS启用sudo方法

内容摘要
1、添加sudo用户
执行visudo命令,找到:
root ALL=(ALL) ALL
在下面增加:
centos ALL=(ALL) ALL

2、禁止root用户登录
编辑/etc/ssh/sshd_config

PermitR
文章正文

1、添加sudo用户

执行visudo命令,找到:

    root    ALL=(ALL) ALL

在下面增加:

    centos ALL=(ALL) ALL
 
2、禁止root用户登录

编辑/etc/ssh/sshd_config

    PermitRootLogin yes

改为

    PermitRootLogin no

3、重启sshd:

    service sshd reload


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!