Nginx訪問日誌Nginx日誌切割 靜態文件不記錄日誌和過時時間

6月8日任務

12.10 Nginx訪問日誌
12.11 Nginx日誌切割
12.12 靜態文件不記錄日誌和過時時間javascript

Nginx訪問日誌目錄概要

  • 日誌格式
  • vim /usr/local/nginx/conf/nginx.conf //搜索log_format
$remote_addr 客戶端IP(公網IP)
$http_x_forwarded_for 代理服務器的IP
$time_local 服務器本地時間
$host 訪問主機名(域名)
$request_uri 訪問的url地址
$status 狀態碼
$http_referer referer
$http_user_agent user_agent
  • 除了在主配置文件nginx.conf裏定義日誌格式外,還須要在虛擬主機配置文件中增長
  • access_log /tmp/1.log combined_realip;
  • 這裏的combined_realip就是在nginx.conf中定義的日誌格式名字 -t && -s reload
  • curl -x127.0.0.1:80 test.com -I
  • cat /tmp/1.log

Nginx訪問日誌

  • 日誌的文件也是在主配置文件中
  • 打開主配置文件vim /usr/local/nginx/conf/nginx.conf
[root@yong-01 vhost]# vim /usr/local/nginx/conf/nginx.conf

搜索/log_format 找到如下內容,就是來定義日誌格式的
 log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'
    ' $host "$request_uri" $status'
    ' "$http_referer" "$http_user_agent"';
  • combined_realip 日誌格式的名字,能夠隨便定義,這裏定義成什麼名字,後面就引用成什麼名字,決定了虛擬主機引用日誌的類型
  • nginx配置文件,有一個特色,以 「 ; 」 分號結尾,配置文件一段若是沒有 分號結尾,表示這一段尚未結束,就算中間執行了換行。
$remote_addr 客戶端IP(公網IP)
$http_x_forwarded_for 代理服務器的IP
$time_local 服務器本地時間
$host 訪問主機名(域名)
$request_uri 訪問的url地址
$status 狀態碼
$http_referer referer(跳轉頁)
$http_user_agent user_agent(標識)
  • 若想本身的公網IP,能夠直接百度IP,就會出來本身上網的IP地址
  • 除了在主配置文件nginx.conf裏定義日誌格式外,還須要在虛擬主機配置文件去定義access_log /tmp/test.com.log combined_realip; 來定義訪問日誌路徑
[root@yong-01 vhost]# vim test.com.conf 

在第一個括號中添加access_log /tmp/test.com.log combined_realip;便可

server
{
    listen 80;
    server_name test.com test1.com test2.com;
    index index.html index.htm index.php;
    root /data/wwwroot/test.com;
     if ($host != 'test.com' ) {
        rewrite  ^/(.*)$  http://test.com/$1  permanent;
    }
    access_log /tmp/test.com.log combined_realip;
}
  • 若是不寫日誌格式,那就會走默認的日誌格式
  • 而後檢查配置文件是否存在語法錯誤,並從新加載配置文件
[root@yong-01 vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@yong-01 vhost]# /usr/local/nginx/sbin/nginx -s reload
  • 測試
[root@yong-01 vhost]# curl -x127.0.0.1:80 test1.com -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.4.7
Date: Sat, 09 Jun 2018 01:03:43 GMT
Content-Type: text/html
Content-Length: 184
Connection: keep-alive
Location: http://test.com/

[root@yong-01 vhost]# curl -x127.0.0.1:80 test2.com -I
HTTP/1.1 301 Moved Permanently
Server: nginx/1.4.7
Date: Sat, 09 Jun 2018 01:03:58 GMT
Content-Type: text/html
Content-Length: 184
Connection: keep-alive
Location: http://test.com/
  • 查看日誌cat /tmp/test.com.log
[root@yong-01 vhost]# cat /tmp/test.com.log 
127.0.0.1 - [09/Jun/2018:09:03:43 +0800] test1.com "/" 301 "-" "curl/7.29.0"
127.0.0.1 - [09/Jun/2018:09:03:58 +0800] test2.com "/" 301 "-" "curl/7.29.0"

 

Nginx日誌切割目錄概要

  • 自定義shell 腳本
  • vim /usr/local/sbin/nginx_log_rotate.sh//寫入以下內容
#! /bin/bash
## 假設nginx的日誌存放路徑爲/data/logs/
d=`date -d "-1 day" +%Y%m%d` 
logdir="/data/logs"
nginx_pid="/usr/local/nginx/logs/nginx.pid"
cd $logdir
for log in `ls *.log`
do
    mv $log $log-$d
done
/bin/kill -HUP `cat $nginx_pid`
  • 任務計劃
  • 0 0 * * * /bin/bash /usr/local/sbin/nginx_log_rotate.sh

Nginx日誌切割

  • Nginx沒有自帶日誌切割工具,只能藉助系統的日誌切割的工具或者本身寫切割的腳本實現
  • 這裏寫一個日誌切割腳本
  • 首先建立一個shell腳本vim /usr/local/sbin/nginx_log_rotate.sh
  • 全部的shell腳本放入到/usr/local/sbin/目錄下
[root@yong-01 vhost]# vim /usr/local/sbin/nginx_log_rotate.sh

#! /bin/bash
d=`date -d "-1 day" +%Y%m%d` 
logdir="/tmp/"
nginx_pid="/usr/local/nginx/logs/nginx.pid"
cd $logdir
for log in `ls *.log`
do
    mv $log $log-$d
done
/bin/kill -HUP `cat $nginx_pid`
  • d=date -d 「-1 day」 +%Y%m%d // 生成昨天的日期,格式爲年月日
  • logdir=」/tmp/」 // 上一節的時候,定義了日誌存放在/tmp/目錄下
  • nginx_pid=」/usr/local/nginx/logs/nginx.pid」 //查找nginx的PID,目的是爲了執行/bin/kill -HUP cat $nginx_pid ,而這個命令目的和nginx -s reload 是同樣的
  • cd $logdir //進入「logdir」日誌目錄下
  • for log in ls *.log //開始語句循環,看錯有哪些 log後綴的文件
  • do //執行  mv $log $log-$d 更名
  • done //結束
  • /bin/kill -HUP cat $nginx_pid // 從新加載,生成一個新的「nginx_pid=」/usr/local/nginx/logs/nginx.pid」
[root@yong-01 vhost]# ls 
aaa.com.conf  test.com.conf
[root@yong-01 vhost]# for f in `ls` ; do ls -l $f ;done
-rw-r--r-- 1 root root 142 6月   7 21:47 aaa.com.conf
-rw-r--r-- 1 root root 293 6月   9 09:01 test.com.conf
  • 執行shell腳本,並加-x選項,是爲了查看腳本執行的過程
[root@yong-01 vhost]# sh -x /usr/local/sbin/nginx_log_rotate.sh 
++ date -d '-1 day' +%Y%m%d
+ d=20180608
+ logdir=/tmp/
+ nginx_pid=/usr/local/nginx/logs/nginx.pid
+ cd /tmp/
++ ls test.com.log
+ for log in '`ls *.log`'
+ mv test.com.log test.com.log-20180608
++ cat /usr/local/nginx/logs/nginx.pid
+ /bin/kill -HUP 1226
  • 查看日誌切割文件,天天都生成一個日誌,在天天切割後,過段時間還要按期清理
[root@yong-01 vhost]# ls /tmp/
mysql.sock
pear
php-fcgi.sock
systemd-private-4f8e9ff25515441f842387e8592cb371-chronyd.service-rUvlFo
systemd-private-4f8e9ff25515441f842387e8592cb371-vgauthd.service-Pjk7Gv
systemd-private-4f8e9ff25515441f842387e8592cb371-vmtoolsd.service-Fbw1Ir
systemd-private-fb16b9da48d04706bda2fb1e850ee20d-chronyd.service-PfzjDV
systemd-private-fb16b9da48d04706bda2fb1e850ee20d-vgauthd.service-7voK16
systemd-private-fb16b9da48d04706bda2fb1e850ee20d-vmtoolsd.service-TQ5rlv
test.com.log
test.com.log-20180608
  • 刪除30天之前的日誌文件
[root@yong-01 vhost]# find /tmp/ -name *.log-* -type f -mtime +30 |xargs rm
  • 寫完腳本後,還要加一個任務計劃crontab -e
[root@yong-01 vhost]# crontab -e

0 0 * * * /bin/bash /usr/local/sbin/nginx_log_rotate.sh

靜態文件不記錄日誌和過時時間目錄概要

  • 配置以下
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
          expires      7d;
          access_log off;
    }
location ~ .*\.(js|css)$
    {
          expires      12h;
          access_log off;
    }

靜態文件不記錄日誌和過時時間

  • 打開虛擬主機配置文件vim /usr/local/nginx/conf/vhost/test.com.conf
  • 在配置文件中添加
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$    //匹配gif|jpg|jpeg|png|bmp|swf 後綴的文件
    {
          expires      7d;        //7天后過時
          access_log off;        //匹配「.*.(gif|jpg|jpeg|png|bmp|swf) 」關閉記錄日誌
    }
location ~ .*\.(js|css)$
    {
          expires      12h;        //12個小時後過時
          access_log off;        //匹配「.*.(js|css) 」關閉記錄日誌
    }
  • 檢查配置文件語法錯誤,並從新加載配置文件
[root@yong-01 vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@yong-01 vhost]# /usr/local/nginx/sbin/nginx -s reload
  • 測試,先來模擬一個圖片
[root@yong-01 vhost]# cd /data/wwwroot/test.com/
[root@yong-01 test.com]# ls
admin  admin.php  index.html
[root@yong-01 test.com]# vim 1.gif
[root@yong-01 test.com]# vim 3.js
  • 接下來作一個訪問測試
[root@yong-01 test.com]# curl -x127.0.0.1:80 test.com/1.gif
fasdfasf
[root@yong-01 test.com]# curl -x127.0.0.1:80 test.com/3.js
fadsfasgjsd
[root@yong-01 test.com]# curl -x127.0.0.1:80 test.com/index.html
test.com
  • 查看日誌,會看到只有一條日誌
[root@yong-01 test.com]# cat /tmp/test.com.log
127.0.0.1 - [09/Jun/2018:09:45:28 +0800] test.com "/index.html" 200 "-" "curl/7.29.0"
  • 測試過時時間,加上-I參數
[root@yong-01 test.com]# curl -x127.0.0.1:80 test.com/3.js -I
HTTP/1.1 200 OK
Server: nginx/1.4.7
Date: Sat, 09 Jun 2018 01:46:33 GMT
Content-Type: application/x-javascript
Content-Length: 12
Last-Modified: Sat, 09 Jun 2018 01:44:11 GMT
Connection: keep-alive
ETag: "5b1b30eb-c"
Expires: Sat, 09 Jun 2018 13:46:33 GMT
Cache-Control: max-age=43200
Accept-Ranges: bytes
  • max-age=43200 過時時間
  • 若是去掉配置文件中的expires,則不會顯示max-age過時時間
相關文章
相關標籤/搜索