centos7 - nginx配置access_log问题
问题描述
我想给nginx开启访问日志。百度了一下,主要是在nginx.conf中配置
这一段
# log_format main ’$remote_addr - $remote_user [$time_local] '$request' ’# ’$status $body_bytes_sent '$http_referer' ’# ’'$http_user_agent' '$http_x_forwarded_for'’;## access_log logs/access.log main;
默认都是加#注释掉的,我想开启,也就是这段都取消#注释了。然后重启nginx却重启不了,提示Job for nginx.service failed because the control process exited with error code. See 'systemctl status nginx.service' and 'journalctl -xe' for details.
把#加回去又没事了,什么原因啊,包括开头的错误日志
#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;
也是把#去掉想生效,结果nginx就启动不了。`
问题解答
回答1:1.请使用 nginx -t 检查配置文件获取 查看具体得错误信息
日志这样处理
log_format main ’$remote_addr - $remote_user [$time_local] '$request' ’ ’$status $body_bytes_sent '$http_referer' ’ ’'$http_user_agent' '$http_x_forwarded_for'’; access_log logs/access.log main;
相关文章:
1. javascript - 父级设置了相对定位。子元素设置了绝对定位。子元素中包含了浮动的table,这个时候高度不能自适应。2. docker容器呢SSH为什么连不通呢?3. docker images显示的镜像过多,狗眼被亮瞎了,怎么办?4. node.js - npm init无法一直回车。到version就卡主不动了5. docker api 开发的端口怎么获取?6. docker网络端口映射,没有方便点的操作方法么?7. golang - 用IDE看docker源码时的小问题8. dockerfile - 为什么docker容器启动不了?9. debian - docker依赖的aufs-tools源码哪里可以找到啊?10. docker start -a dockername 老是卡住,什么情况?
