Shell+Linux命令實現日誌分析_linux shell

來源:互聯網
上載者:User

一、列出當天訪問次數最多的IP
命令:

複製代碼 代碼如下:
cut -d- -f 1 /usr/local/apache2/logs/access_log |uniq -c | sort -rn | head -20

原理:
複製代碼 代碼如下:

       cut
       -d, --delimiter=DELIM
              use DELIM instead of TAB for field delimiter
              表示用-分割,然後-f 1
       -f, --fields=LIST
              select only these fields;  also print any line that contains  no
              delimiter character, unless the -s option is specified
           表示列印第一部分,就是ip
 uniq 是將重複行去掉, -c表示前面前面加上數目,
       sort -rn 就是按照數字從大到小排序,
       head -20取前面20行
      
最後列印的結果大概是這樣:
複製代碼 代碼如下:
   217 192.114.71.13
   116 124.90.132.65
   108 192.114.71.13
   102 194.19.140.96
   101 217.70.34.173
   100 219.235.240.36

以下是其他一些分析日誌的shell用法:

1、查看當天有多少個IP訪問:

複製代碼 代碼如下:
awk '{print $1}' log_file|sort|uniq|wc -l

2、查看某一個頁面被訪問的次數;

複製代碼 代碼如下:
grep "/index.php" log_file | wc -l

3、查看每一個IP訪問了多少個頁面:

複製代碼 代碼如下:
awk '{++S[$1]} END {for (a in S) print a,S[a]}' log_file

4、將每個IP訪問的頁面數進行從小到大排序:

複製代碼 代碼如下:
awk '{++S[$1]} END {for (a in S) print S[a],a}' log_file | sort -n

5、查看某一個IP訪問了哪些頁面:

複製代碼 代碼如下:
grep ^111.111.111.111 log_file| awk '{print $1,$7}'

6、去掉搜尋引擎統計當天的頁面:

複製代碼 代碼如下:
awk '{print $12,$1}' log_file | grep ^\"Mozilla | awk '{print $2}' |sort | uniq | wc -l

7、查看2009年6月21日14時這一個小時內有多少IP訪問:

複製代碼 代碼如下:
awk '{print $4,$1}' log_file | grep 21/Jun/2009:14 | awk '{print $2}'| sort | uniq | wc -l

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.