linux 檢視Tomcat日誌

2021-08-21 06:51:20 字數 4179 閱讀 8437

1、先切換到:cd usr/local/tomcat5/logs

2、tail -f catalina.out

3、這樣執行時就可以實時檢視執行日誌了

ctrl+c 是退出tail命令。

順便講一下linux中tail命令

tail 命令從指定點開始將檔案寫到標準輸出.使用tail命令的-f選項可以方便的查閱正在改變的日誌檔案,tail -f filename會把filename裡最尾部的內容顯示在螢幕上,並且不但重新整理,使你看到最新的檔案內容.

1.命令格式;

tail[必要引數][選擇引數][檔案]  

2.命令功能:

用於顯示指定檔案末尾內容,不指定檔案時,作為輸入資訊進行處理。常用檢視日誌檔案。

3.命令引數:

-f 迴圈讀取

-q 不顯示處理資訊

-v 顯示詳細的處理資訊

-c《數目》 顯示的位元組數

-n《行數》 顯示行數

--pid=pid 與-f合用,表示在程序id,pid死掉之後結束. 

-q, --quiet, --silent 從不輸出給出檔名的首部 

-s, --sleep-interval=s 與-f合用,表示在每次反覆的間隔休眠s秒

4.使用例項:

例項1:顯示檔案末尾內容

命令:tail -n 5 log2014.log

輸出:?

12

3

4

5

6

[root@localhost test]# tail -n 5 log2014.log

2014-09

2014-10

2014-11

2014-12

******************************[root@localhost test]#

說明:

顯示檔案最後5行內容

例項2:迴圈檢視檔案內容

命令:

tail -f test.log

輸出:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

[root@localhost ~]# ping 192.168.120.204 > test.log &

[1] 11891[root@localhost ~]# tail -f test.log

ping 192.168.120.204 (192.168.120.204) 56(84) bytes of data.

64 bytes from 192.168.120.204: icmp_seq=1 ttl=64 time=0.038 ms

64 bytes from 192.168.120.204: icmp_seq=2 ttl=64 time=0.036 ms

64 bytes from 192.168.120.204: icmp_seq=3 ttl=64 time=0.033 ms

64 bytes from 192.168.120.204: icmp_seq=4 ttl=64 time=0.027 ms

64 bytes from 192.168.120.204: icmp_seq=5 ttl=64 time=0.032 ms

64 bytes from 192.168.120.204: icmp_seq=6 ttl=64 time=0.026 ms

64 bytes from 192.168.120.204: icmp_seq=7 ttl=64 time=0.030 ms

64 bytes from 192.168.120.204: icmp_seq=8 ttl=64 time=0.029 ms

64 bytes from 192.168.120.204: icmp_seq=9 ttl=64 time=0.044 ms

64 bytes from 192.168.120.204: icmp_seq=10 ttl=64 time=0.033 ms

64 bytes from 192.168.120.204: icmp_seq=11 ttl=64 time=0.027 ms

[root@localhost ~]#

說明:

ping 192.168.120.204 > test.log & //在後台ping遠端主機。並輸出檔案到test.log;這種做法也使用於乙個以上的檔案監視。用ctrl+c來終止。

例項3:從第5行開始顯示檔案

命令:

tail -n +5 log2014.log

輸出:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

[root@localhost test]# cat log2014.log

2014-01

2014-02

2014-03

2014-04

2014-05

2014-06

2014-07

2014-08

2014-09

2014-10

2014-11

2014-12

******************************

[root@localhost test]# tail -n +5 log2014.log

2014-05

2014-06

2014-07

2014-08

2014-09

2014-10

2014-11

2014-12

******************************

檢視tomcat日誌

需求 寫乙個擷取tomcat catalina.out日誌的指令碼 tomcat例項t1 t4 find opt tom name catalina.out opt tom t1 logs catalina.out opt tom t3 logs catalina.out opt tom t4 lo...

linux上 檢視tomcat日誌檔案

1 2 1 先切換到logs目錄比如 cd opt apache tomcat 7.0.65 logs 2 tail f catalina.out 3 這樣執行時就可以實時檢視執行日誌了 ctrl c 是退出tail命令。我用的putty是ctrl z 順便講一下linux中tail命令 tail ...

linux 檢視tomcat狀態和日誌

一般伺服器部署在linux系統中,那麼在linux 系統中如何檢視tomcat日誌呢?場景1 瀏覽器報錯了,如何定位錯誤 檢視tomcat 日誌的尾部 shell tail n 50 logs catalina.out tail表示只顯示catalina.out 最後n 行 場景2 如何實時檢視to...