一、監測後台介面變化
welcome to alibaba cloud elastic compute service !
[root@izbp1h1b7ra872tc39i7k8z ~]#
cd/usr/local -- 切換目錄。
[root@izbp1h1b7ra872tc39i7k8z local]# ll
總用量 60
drwxr-xr-x 6 root root 4096 12月 26 00:18 aegis
drwxr-xr-x. 2 root root 4096 12月 5 14:04 bin
drwxr-xr-x. 2 root root 4096 11月 5 2016 etc
-rw-r--r-- 1 root root 2 12月 14 12:29 fonts.scale
drwxr-xr-x. 2 root root 4096 11月 5 2016 games
drwxr-xr-x. 2 root root 4096 12月 5 14:05 include
drwxr-xr-x. 3 root root 4096 12月 5 14:05 lib
drwxr-xr-x. 2 root root 4096 11月 5 2016 lib64
drwxr-xr-x. 2 root root 4096 11月 5 2016 libexec
drwxr-xr-x 12 root root 4096 12月 6 11:05 nginx
drwxr-xr-x. 2 root root 4096 11月 5 2016 sbin
drwxr-xr-x. 7 root root 4096 12月 5 14:04 share
drwxr-xr-x. 2 root root 4096 11月 5 2016 src
drwxr-xr-x 3 root root 4096 12月 5 13:33 ssl
drwxr-xr-x 11 root root 4096 12月 22 13:06 yizhihui
[root@izbp1h1b7ra872tc39i7k8z local]#
cd yizhihui/device.joinstar.cn -- 切換到工程中
[root@izbp1h1b7ra872tc39i7k8z device.joinstar.cn]#
cdlogs --- 切換到工程的日誌目錄中。
[root@izbp1h1b7ra872tc39i7k8z logs]# ll
總用量 1404
-rw-r--r-- 1 root root 322904 12月 22 21:17 api.2017-12-22.log
-rw-r--r-- 1 root root 75950 12月 23 11:02 api.2017-12-23.log
-rw-r--r-- 1 root root 191 12月 24 10:47 api.2017-12-24.log
-rw-r--r-- 1 root root 35973 12月 25 18:29 api.2017-12-25.log
-rw-r--r-- 1 root root 156088 12月 26 20:59 api.2017-12-26.log
-rw-r--r-- 1 root root 824980 12月 27 21:45
api.2017-12-27.log
[root@izbp1h1b7ra872tc39i7k8z logs]#
tail -f -n 50 api.2017-12-27.log ---檢視日誌,監測介面的變化。
[2017-12-27 21:44:03.854][info]com.yizhihui.common.restinterceptor:30 呼叫介面:method=yzh.upload.versionrelease,params=
也可以用:
grep 關鍵字 檔名 --過濾關鍵字查詢;若關鍵之中有空格,則要用單引號將整個關鍵字引起。
二、日誌查詢
1. 切換到工程的後台日誌目錄下: cd
2. 查詢所有檔案: ll
3. 查詢關鍵字,在某個日誌檔案下。如:grep 呼叫介面
查詢某時間段
使用情況:
grep
'2017-06-01 09:53'
三、跨域問題
解決方法: nginx伺服器上的配置檔案。
Linux伺服器nginx日誌切割
由於nginx的日誌本身只是支援按照server name或者大小進行劃分,對於習慣了apache的按照乙個 每天乙個日誌的我來說是不可以接受的,所以就實現了按天切割的功能,這篇文章主要介紹了關於nginx日誌按日期切割的相關資料,需要的朋友可以參考下。本文實現的功能是在嗎每天凌晨00 00把前一天...
nginx伺服器access log日誌詳解
前言 nginx的log日誌分為 access log 和 error log 其中access log 記錄了哪些使用者,哪些頁面以及使用者瀏覽器 ip和其他的訪問資訊 error log 則是記錄伺服器錯誤日誌 log format 日誌格式語法 log format name 格式名字 格式樣...
windows伺服器nginx日誌分割
編寫乙個bat檔案 echo off rem echo off rem 取1天之前的日期 echo wscript.echo dateadd d 1,date tmp tmp.vbs for f tokens 1,2,3 delims i in cscript nologo tmp tmp.vbs ...