Difference between revisions of "Understanding sudo configuration syntax"
From Notes_Wiki
m |
m |
||
Line 1: | Line 1: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Sudo configuration]] > [[Understanding sudo configuration syntax|Sudo configuration syntax]] | |||
Lines in sudo configuration use following format: | Lines in sudo configuration use following format: | ||
Line 20: | Line 19: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Sudo configuration]] > [[Understanding sudo configuration syntax|Sudo configuration syntax]] |
Latest revision as of 13:38, 14 July 2022
Home > CentOS > CentOS 6.x > Sudo configuration > Sudo configuration syntax
Lines in sudo configuration use following format:
<username> or %<group> <machine> = [(<user>)] [NOPASSWD] :<command1> [, <command2> ...]
Note that group is indicated using %sign.
For example:
saurabh barjatiya = (root) NOPASSWD: /usr/sbin/wireshark, /usr/sbin/tcpdump
will allow user 'saurabh' to run '/usr/sbin/wireshark' and '/usr/sbin/tcpdump' commands on machine 'barjatiya' without supplying password as root user.
Please note that by default sudo requires tty. Hence running sudo commands from services such as MySQL, apache, nagios, etc. which do not have tty may not work. To change this default behavior comment 'Defaults Requiretty' in /etc/sudoers using visudo.
Home > CentOS > CentOS 6.x > Sudo configuration > Sudo configuration syntax