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. 我在導入模板資源時遇到無法顯示的問題,請老師解答下2. macos - 無法source activate python273. 運行python程序時出現“應用程序發生異常”的內存錯誤?4. thinkphp6使用驗證器 信息如何輸出到前端頁面5. PHPExcel表格導入數據庫怎么導入6. css - 移動端 盒子內加overflow-y:scroll后 字體會變大7. javascript - h5微信中怎么禁止橫屏8. python - sqlalchemy更新數據報錯9. html - 網頁的a標簽到底要不要寫上域名?10. html5 - 前端面試碰到了一個緩存數據的問題,來論壇上請教一下

網公網安備