我想将nginx访问日志重定向到stdout
,以便能够通过journalctl
(systemd)对其进行分析。
批准的答案也有同样的问题。
Have nginx access_log and error_log log to STDOUT and STDERR of master process
但它对我不起作用。使用/dev/stderr
,我得到open() "/dev/stderr" failed (6: No such device or address)
。使用/dev/stdout
我在journalctl -u nginx
中没有访问日志。
nginx.conf
daemon off;
http {
access_log /dev/stdout;
error_log /dev/stdout;
...
}
...
sitename.conf
server {
server_name sitename.com;
root /home/username/sitename.com;
location / {
proxy_pass http://localhost:3000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log on;
}
}
nginx.service
[Service]
Type=forking
PIDFile=/run/nginx.pid
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=nginx
ExecStartPre=/usr/sbin/nginx -t -q -g 'master_process on;'
ExecStart=/usr/sbin/nginx -g 'master_process on;'
ExecReload=/usr/sbin/nginx -g 'master_process on;' -s reload
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid
TimeoutStopSec=5
我已经尽力通过改变上面代码中的每个可能参数以及不同的nginx版本(1.2,1.6)来解决这个问题,但没有任何成功。
我真的非常感兴趣如何使这项工作成功,所以我在另一个线程上再次提出这个问题,因为我认为以前的答案是错误的,推测性的或环境特定的。
$ journalctl -u nginx
仅包含
之类的行 Feb 08 13:05:23 Username systemd[1]: Started A high performance web server and a reverse proxy server.
并且没有访问日志的迹象:(
答案 0 :(得分:14)
server {
error_log syslog:server=unix:/dev/log;
access_log syslog:server=unix:/dev/log;
...
}
默认日记配置(我正在运行Ubuntu 15.04)从syslog读取,因此只需使用journalctl -u nginx
答案 1 :(得分:7)
根据nginx documentation,error_log
指令支持stderr
作为参数。因此,以下配置应将错误消息记录到stderr:
http {
error_log stderr;
...
}
不幸的是,access_log
不支持stdout
作为其参数。但是,应该可以将其设置为syslog
(documentation)并让systemd将syslog调用包含在其日志中。