1.查看日志常用命令
tail:
-n 是顯示行號(hào);相當(dāng)于nl命令;例子如下:
tail -100f test.log 實(shí)時(shí)監(jiān)控100行日志
tail -n 10 test.log 查詢?nèi)罩疚膊孔詈?0行的日志;
tail -n +10 test.log 查詢10行之后的所有日志;
head:
跟tail是相反的,tail是看后多少行日志;例子如下:
head -n 10 test.log 查詢?nèi)罩疚募械念^10行日志;
head -n -10 test.log 查詢?nèi)罩疚募俗詈?0行的其他所有日志;
cat:
tac是倒序查看linux常用命令,是cat單詞反寫;例子如下:
cat -n test.log |grep "debug" 查詢關(guān)鍵字的日志
2. 應(yīng)用場景一:按行號(hào)查看---過濾出關(guān)鍵字附近的日志
1)cat -n test.log |grep "debug" 得到關(guān)鍵日志的行號(hào)
2)cat -n test.log |tail -n +92|head -n 20 選擇關(guān)鍵字所在的中間一行. 然后查看這個(gè)關(guān)鍵字前10行和后10行的日志:
tail -n +92表示查詢92行之后的日志
head -n 20 則表示在前面的查詢結(jié)果里再查前20條記錄
3. 應(yīng)用場景二:根據(jù)日期查詢?nèi)罩?/p>
sed -n '/2014-12-17 16:17:20/,/2014-12-17 16:17:36/p' test.log
特別說明:上面的兩個(gè)日期必須是日志中打印出來的日志,否則無效;
先 grep '2014-12-17 16:17:20' test.log 來確定日志中是否有該 時(shí)間點(diǎn)
4.應(yīng)用場景三:日志內(nèi)容特別多l(xiāng)inux常用命令,打印在屏幕上不方便查看
(1)使用more和less命令,
如: cat -n test.log |grep "debug" |more 這樣就分頁打印了,通過點(diǎn)擊空格鍵翻頁
(2)使用 >xxx.txt 將其保存到文件中,到時(shí)可以拉下這個(gè)文件分析
如:cat -n test.log |grep "debug" >debug.txt
開發(fā)、測試、線上環(huán)境,查找日志內(nèi)容