工作中经常遇到普通用户需要重启apache的权限
shell> visudo
格式:
用户名 <空格/TAB> ALL=/etc/init.d/httpd
验证:
shell> sudo /etc/init.d/httpd restart
输入该用户名的密码即可重启apache
//visudo的格式简介
# %wheel ALL=(ALL) ALL
%wheel ----- wheel组,可以直接写上指定的用户
ALL -----允许执行操作的主机
(ALL) --- 允许切换成哪个用户的身份去执行,如果不加(ALL)则默认用root去执行
ALL ---- 允许执行的命令
//我们经常会用写简便的方法去编辑visudo中的文件格式来达到一定效果,
testuser ALL=/etc/init.d/httpd
解析:
testuser用户可以通过任何主机去执行/etc/init.d/httpd命令
阅读(1045) | 评论(0) | 转发(0) |