useradd devops
passwd username
授权sudo权限,需要修改sudoers
文件。文件位置在/etc/sudoers
,也可以用whereis sudoers
查找一下。
[root@devops script]# whereis sudoers
sudoers: /etc/sudoers.d /etc/sudoers /usr/share/man/man5/sudoers.5.gz
sudoers文件默认为只读,增加一下写权限。
[root@devops script]# ls -l /etc/sudoers
-r--r-----. 1 root root 4350 Apr 13 08:32 /etc/sudoers
[root@devops script]# chmod u+w /etc/sudoers # 修改文件权限为可编辑
修改文件,在如下位置增加一行,保存退出。
[root@devops script]# vim /etc/sudoers
...
# 大约在99行附近
99 ## Allow root to run any commands anywhere
100 root ALL=(ALL) ALL
101 devops ALL=(ALL) ALL # 增加此行,devops是你需要授权sudo的用户名
102
103 ## Allows members of the 'sys' group to run networking, software,
还原文件权限为只读。
[root@devops script]# chmod u-w /etc/sudoers
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有