您的位置 首页 网站建设

nginx 让users有权限启动的两种方法

让普通用户拥有执行nginx启动的方法。

linux下有普通用户 user01,在执行restart和reload nginx时,会报错:
nginx: [warn] the “user” directive makes sense only if the master process runs with super-user privileges, ignored in /usr/local/nginx/conf/nginx.conf:2

原因是:默认情况下Linux的1024以下端口是只有root用户才有权限占用

普通用户不能给root权限,只好修改nginx权限。

方法一:
所有用户都可以运行(因为是755权限,文件所有者:root,组所有者:root)

chown root.root nginx
chmod 755 nginx
chmod u+s nginx

方法二:
仅 root 用户和 user01用户可以运行(因为是750权限,文件所有者:root,组所有者:www)

chown root.www nginx
chmod 750 nginx
chmod u+s nginx

 

本文转载自https://blog.csdn.net/yan7895566/article/details/79876059,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。如有侵权行为,请联系我们,我们会及时删除。转载请注明出处:https://www.seohub.org/web/392
0 0 投票数
文章评分
订阅评论
提醒
guest

0 评论
内联反馈
查看所有评论
返回顶部
0
希望看到您的想法,请您发表评论x