Linux 普通用户启动nginx

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 普通用户启动nginx相关的知识,希望对你有一定的参考价值。

众所周知,apache的80端口为系统保留端口,如果通过其他非root用户启动,会报错如下:

(13)Permission denied: make_sock: could not bind to address [::]:80
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs

因为普通用户只能用1024以上的端口,1024以内的端口只能由root用户使用。

但是为了避免每次启动都通过root用户,可以通过set UID的方式来解决此问题。

一次性进行如下操作即可完成。
在root用户环境中做如下操作
cd ……/apache/bin
chown root httpd
chmod u+s httpd
再 su - USERNAME
到普通用户下,通过
……/apache/bin/apachectl start即可



为何不chmod u+s apachectl呢?
因为set UID这种方式只针对二进制文件有效,而tail一下apachectl发现:
apachectl是一个脚本文件,仔细查阅发现有如下一句

HTTPD=/home/……/apache/bin/httpd

得出结论:apachectl脚本是通过启动httpd文件来启动整个httpd服务。
再次cat httpd,出现各种不可读乱码,ctrl+c结束输出之后,断定httpd为二进制文件。
最后chmod u+s httpd即可,当然得保证httpd的所属者为root用户,如果不是,执行:
chown root httpd即可。



同样,nginx启动也如此,用root用户进入....nginx/sbin
然后chown root nginx
chmod u+s nginx
然后通过普通用户就可以启动了。

 再同样,tomcat也如此。


当然,修改默认端口到大于1024也是可以的。


---------------------------------------------------------------------------------------

来源于:http://blog.itpub.net/29773961/viewspace-1377290/

以上是关于Linux 普通用户启动nginx的主要内容,如果未能解决你的问题,请参考以下文章

普通用户启动nginx

Linux普通用户使用1024以下端口的问题

Linux普通用户使用1024以下端口的问题

普通用户下启动Nginx服务

如何在普通用户下,使用nginx启动80端口

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段