系统相关
首页 > 系统相关> > Nginx 日志 failed (13: Permission denied) 错误(13:权限被拒绝)

Nginx 日志 failed (13: Permission denied) 错误(13:权限被拒绝)

作者:互联网

错误分析:

  权限拒绝

 

主要原因:

  Nginx用户和应用用户不一致造成的

 

解决办法:

  修改nginx.conf 文件,将其用户改为一致(一般在第1行)

user        root

查看如下:

[root@centos conf]# ps -ef | grep nginx
root        2576       1  0 00:35 ?        00:00:00 nginx: master process ./sbin/nginx
root       10934    2576  0 01:26 ?        00:00:00 nginx: worker process
root       10935    2576  0 01:26 ?        00:00:01 nginx: worker process

 

标签:13,01,2576,nginx,process,Permission,00,failed,root
来源: https://www.cnblogs.com/hunttown/p/16691668.html