zoukankan      html  css  js  c++  java
  • ④nginx日志管理

    nginx程序日志配置说明

    1.log_format定义日志格式语法

     Syntax:      log_format name [escape=default|json|none] string ...;   #name是变量名
    Default:      log_format combined "...";
    Context:      http                                                     #只能配置http区域 
    

    2.默认Nginx定义语法格式如下

        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  /var/log/nginx/access_oldboy.log  main;
    	   nginx默认变量:
    	   $remote_addr:    --- 访问网站客户端源IP地址
    	   $remote_user      --- 表示认证用户名称信息
    	   [$time_local]     --- 显示响应时间信息
    	   $request          --- 显示请求行信息
    	   $status           --- 显示状态码
    	   $body_bytes_sent  --- 回复数据大小(流量)信息 字节
    	   $http_referer     --- 盗链人地址信息/用于推广
    	   $http_user_agent  --- 显示用户访问网站客户端程序 (电脑 手机)
               $request_time     --- 请求花费的时间  单位为妙  精度毫秒
               $http_x_forwarded_for  ---http请求携带的http信息
    
    

    访问日志说明

    access_log参数

    Syntax: 	access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]];
                access_log off;
    Default: 	access_log logs/access.log combined;
    Context: 	http, server, location, if in location, limit_except
    

    使用

    server {
            listen       80;
            server_name  software.yangyijing.cn;
            access_log   /var/log/nginx/software_access.log software ; 
            error_log /var/log/nginx/software_error.log warn;
            autoindex_exact_size off;
            autoindex_localtime on;
            autoindex on;
            charset    UTF-8;
            root   /data/software;
            location /code {   #访问uri是code的不记录到访问日志
             root /data/software;
             access_log off;
      }
    }
    

    我自己的网站使用示例

        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                          '$status $body_bytes_sent "$http_referer" '
                          '"$http_user_agent" "$http_x_forwarded_for"';
    
        log_format  software  '$remote_addr - $remote_user [$time_local] "$request" '
                              '$status $body_bytes_sent "$http_user_agent"';
    
        access_log  /var/log/nginx/access.log  main;
        server {
            listen       80;
            server_name  software.yangyijing.cn;
            access_log   /var/log/nginx/software_access.log software ; 
    
       错误日志:记录服务常见错误
       01. 服务运行错误信息
       02. 用户访问页面的错误
       如何配置:
       error_log  /var/log/nginx/error.log warn(记录错误级别);
       debug    --- 调试级别    产生的日志信息最多
       info     --- 信息级别
       notice   --- 通知级别 
       warn     --- 警告级别
       error    --- 错误级别  
       crit     --- 严重级别
       alert    --- 非常严重级别
       emerg    --- 灾难级别    产生的日志信息最少
    

    nginx日志切割

    cat /etc/logrotate.d/nginx 
    /var/log/nginx/*log {    #/var/log/nginx/下的log文件都做日志切割
        create 0664 nginx root #切割后日志权限
        daily            #每天切割日志
        rotate 10        #日志保留10天
        missingok        #日志丢失忽略
        notifempty       #不切割空日志
        compress         #日志文件压缩
        sharedscripts    #
        postrotate       #切割日志执行的命令
            /bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
        endscript
    }
    

    文件查看

    zcat /var/log/nginx/blog_access.log-20210407.gz
    
  • 相关阅读:
    句法分析
    自然语言处理--语素语素是最小的语法单位,也就是最小的语音、语义结合体。
    自然语言处理--语料
    apt-get安装软件或者更新时遇到的dpkg错误
    如你这般温馨的日子
    Photivo软件使用
    Axure 6.5 --图片不能轮播的问题
    Drupal网站搭建过程记录
    在ubuntu安装Photivo软件
    北京大学Charls项目访员招募
  • 原文地址:https://www.cnblogs.com/yangtao416/p/14631874.html
Copyright © 2011-2022 走看看