centos7 创建普通用户
Posted 请叫我东子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 创建普通用户相关的知识,希望对你有一定的参考价值。
1.创建新用户
adduser centos
2.为新用户初始化密码
passwd centos
3.授权sudoers
whereis sudoers
ls -l /etc/sudoers
chmod -v u+w /etc/sudoers
4.修改&编辑sudoers
vim /etc/sudoers
# 找到一下这个地方添加一条即可 centos centos ALL=(ALL) ALL
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
centos ALL=(ALL) ALL
#centos ALL=(ALL) NOPASSWD:ALL
5.回收权限
chmod -v u-w /etc/sudoers
到此就完成了用户 centos 的创建
6. Q & A?
6.1 centos普通用户能登陆root用户不能登录解决方法
- 登录普通用户,并打开终端输入
sudo su
输入此账号密码后进入root权限
- 输入命令
passwd root
输入此命令后作用是更改root密码
,输入新的密码回车,再确认输入一遍新的密码回车,密码修改成功。
以上是关于centos7 创建普通用户的主要内容,如果未能解决你的问题,请参考以下文章
centos7 创建普通用户,添加sudo权限,禁止root远程登录和公钥登录脚本