Hi Team,
root user is must for NGinx restart?
Everytime of restart, prompts for root user than other users. PID’s are
not
getting killed…for the running process with project users.
I tried solution of adding entry to Sudoers file with an path of
executable
script. No luck. Following are the changes made
/ectc/sudoers
%gvp ALL=NOPASSWD: /var/gvp/Nginx/bin/restartNginx #To get rid of Nginx
restart with root user and to attain with gvp user
nginx mailing list [email protected] nginx Info Page
You only need root privileges if you are trying to open a port with a
number lower than 1024 ( might be 1000, been a while! ). You could set
the setuid privileges on the start script, and run it that way…
however, most linux shells will forbid that for security reasons.
Your sudo solution should work fine, and really is the best one. Here’s
an entry on one of my servers to allow user alchemy to manage apache ( I
know, they’re in the stone age! ) on debian wheezy… I just provide
them access to the standard System V init scripts via the service
command
cat /etc/sudoers.d/alchemy
alchemy ALL = NOPASSWD: /usr/sbin/service apache2 *