簡體   English   中英

看不到nginx日志

[英]unable to see nginx logs

我試圖確認我的日志為json格式,但我什至看不到一個日志。 我正在使用docker-compose

version: '3'
services:
  nginx:
    image: test_site
    volumes:
      - /Users/mikeJ/Desktop/test-logs/access:/tmp/logs/access
      - /Users/mikeJ/Desktop/test-logs/error:/tmp/logs/error
    build:
      context: .
    restart: unless-stopped      
    ports:
      - "8040:8040"

ngnix.conf

worker_processes 1;

events { worker_connections 1024; }

http {
  include    mime.types;
  sendfile on;
  access_log on;

 log_format json_combined escape=json
   '{'
     '"time_local":"$time_local",'
     '"remote_addr":"$remote_addr",'
     '"remote_user":"$remote_user",'
     '"request":"$request",'
     '"status": "$status",'
     '"body_bytes_sent":"$body_bytes_sent",'
     '"request_time":"$request_time",'
     '"http_referrer":"$http_referer",'
     '"http_user_agent":"$http_user_agent"'
   '}';

  server {
    listen 8040;

    error_log /tmp/logs/error/error.log warn;
    access_log /tmp/logs/access/access.log;

    server_name localhost;
    location /{
      root /usr/share/nginx/html/;
      index index.html;
    }

  location ~ ^/test/footer {
    root /usr/share/nginx/html/;
    expires 5m;
    access_log on;
}

}

docker文件

FROM nginx:1.15.0-alpine

RUN rm -v /etc/nginx/nginx.conf

# Copying nginx configuration file
ADD nginx.conf /etc/nginx/

# setup nginx caching
RUN mkdir -p /tmp/nginx/cache

#create directory for logs
RUN mkdir -p /tmp/logs/error
RUN mkdir -p /tmp/logs/access

#adding footer file
ADD footer /usr/share/nginx/html/footer

# Expose ports
EXPOSE 8040

我什至把ssh放進了容器,什么也沒有。

從容器內部

 # ps aux | grep nginx
    1 root       0:00 nginx: master process nginx -g daemon off;
    7 nginx      0:00 nginx: worker process

您能否確認nginx.conf是否正確? 似乎nginx進程沒有權限寫入創建的目錄。

ps -eo "%U %G %a" | grep nginx 

運行上面的命令以了解用戶。 在您的情況下是nginx 更改日志目錄的所有者和組,然后重新加載nginx服務。

#create directory for logs
RUN mkdir -p /tmp/logs/error
RUN mkdir -p /tmp/logs/access && \
    chown -R nginx:nginx /tmp/logs/

#adding footer file
ADD footer /usr/share/nginx/html/footer

檢查日志文件夾發布后訪問您的URL之一。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM