当前位置:  开发笔记 > 后端 > 正文

即使我在重新加载时设置了nginx配置文件,Nginx仍会尝试打开默认错误日志文件

如何解决《即使我在重新加载时设置了nginx配置文件,Nginx仍会尝试打开默认错误日志文件》经验,为你挑选了1个好方法。

以下是我的nginx配置文件 /etc/nginx/nginx.conf

user Foo;
worker_processes 1;

error_log /home/Foo/log/nginx/error.log;
pid /home/Foo/run/nginx.pid;

events {
    worker_connections 1024;
    use epoll;
}

http {
    access_log /home/Foo/log/nginx/access.log;

    server {
        listen 80;

        location = / {
            proxy_pass http://192.168.0.16:9999;
        }
    }
}

如您所见,我将日志,pid文件位置更改为主目录.

当我重新启动Linux它似乎工作,Nginx记录我设置的文件和pid文件中的错误日志.

但是,当它尝试nginx -s reload或其他时,它会尝试打开其他错误日志文件.

nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2015/12/14 11:23:54 [warn] 3356#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:1
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
2015/12/14 11:23:54 [emerg] 3356#0: open() "/home/Foo/run/nginx.pid" failed (13: Permission denied)
nginx: configuration file /etc/nginx/nginx.conf test failed

我知道,我可以解决权限错误,sudo但这里的主要问题是错误日志文件(/var/log/nginx/error.log)Nginx试图打开.

为什么它尝试访问另一个错误日志文件?



1> RicLeal..:

这已经很老了...但我经历了同样的痛苦,这是我的解决方案.

如您所见,日志是警报,而不是阻止错误:

nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)

它不应该是一个问题:) Nginx只是喜欢在启动时检查该文件...

只需使用-p选项.这样在本地启动Nginx对我有用:

nginx -c /etc/nginx/nginx.conf -g 'daemon off;' -p /home/Foo/log/nginx

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有