web-dev-qa-db-ja.com

再読み込み中にnginx設定ファイルを設定しても、nginxはデフォルトのエラーログファイルを開こうとします

以下は、/etc/nginx/nginx.confにあるnginx設定ファイルです

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で許可エラーを解決できますが、ここでの主な問題はNginxが開こうとするエラーログファイル(/var/log/nginx/error.log)です。

別のエラーログファイルにアクセスしようとするのはなぜですか?

20
SangminKim

ディレクトリ/ home/Foo/log/nginx /の権限を確認します。 nginxが書き込み可能でなければなりません。次のようにアクセス許可を設定します。

Sudo chmod 766 /home/Foo/log/nginx
4
cantelope

これは古い...しかし、私は同じ痛みを経験し、ここに私の解決策があります。

ご覧のとおり、ログはブロッキングエラーではなくアラートです。

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
5
RicLeal

Sudoで起動する必要があるかもしれません

Sudo nginx -t
1
T.Todua

はい、Nginxは起動時にそのファイルをチェックするだけです。 nginxがインストールされたディレクトリを別の場所にコピーして起動し、新しいNginxのpidは古い場所に残っています。したがって、古いディレクトリを削除することをお勧めします。

0
maxiaotiao