# CentOS7配置管理员用户
# 介绍
[TOC]
环境:CentOS7
# 配置管理员用户
# 添加用户
添加用户
adduser dmadmin
1设置密码
passwd dmadmin
1# 配置管理员(root)权限
方法一 修改 /etc/sudoers 文件,找到下面一行,把前面的注释(#)去掉
## Allows people in group wheel to run all commands %wheel ALL=(ALL) ALL
1
2然后修改用户,使其属于root组(wheel),命令如下
usermod -g root tommy
1方法二
修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行
## Allow root to run any commands anywhere root ALL=(ALL) ALL dmadmin ALL=(ALL) ALL
1
2
3方法三
修改 /etc/passwd 文件,找到如下行,把用户ID修改为 0
tommy:x:500:500:tommy:/home/tommy:/bin/bash
1修改后如下
tommy:x:0:500:tommy:/home/tommy:/bin/bash
1
推荐方法二