激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補償
        您的位置: 網站首頁 > 幫助中心>文章內容

        網站排障分析常用的命令

        發(fā)布時間:  2012/9/4 19:06:54
        系統連接狀態(tài)篇:
        1.查看TCP連接狀態(tài)
        netstat -nat |awk '{print $6}'|sort|uniq -c|sort -rn

        netstat -n | awk '/^tcp/ {++S[$NF]};END {for(a in S) print a, S[a]}' 或
        netstat -n | awk '/^tcp/ {++state[$NF]}; END {for(key in state) print key,"\t",state[key]}'
        netstat -n | awk '/^tcp/ {++arr[$NF]};END {for(k in arr) print k,"\t",arr[k]}'

        netstat -n |awk '/^tcp/ {print $NF}'|sort|uniq -c|sort -rn

        netstat -ant | awk '{print $NF}' | grep -v '[a-z]' | sort | uniq -c

        2.查找請求數請20個IP(常用于查找攻來源):
        netstat -anlp|grep 80|grep tcp|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -n20

        netstat -ant |awk '/:80/{split($5,ip,":");++A[ip[1]]}END{for(i in A) print A,i}' |sort -rn|head -n20

        3.用tcpdump嗅探80端口的訪問看看誰最高
        tcpdump -i eth0 -tnn dst port 80 -c 1000 | awk -F"." '{print $1"."$2"."$3"."$4}' | sort | uniq -c | sort -nr |head -20

        4.查找較多time_wait連接
        netstat -n|grep TIME_WAIT|awk '{print $5}'|sort|uniq -c|sort -rn|head -n20

        5.找查較多的SYN連接
        netstat -an | grep SYN | awk '{print $5}' | awk -F: '{print $1}' | sort | uniq -c | sort -nr | more

        6.根據端口列進程
        netstat -ntlp | grep 80 | awk '{print $7}' | cut -d/ -f1


        網站日志分析篇1(Apache):

        1.獲得訪問前10位的ip地址
        cat access.log|awk '{print $1}'|sort|uniq -c|sort -nr|head -10
        cat access.log|awk '{counts[$(11)]+=1}; END {for(url in counts) print counts, url}'

        2.訪問次數最多的文件或頁面,取前20
        cat access.log|awk '{print $11}'|sort|uniq -c|sort -nr|head -20

        3.列出傳輸最大的幾個exe文件(分析下載站的時候常用)
        cat access.log |awk '($7~/\.exe/){print $10 " " $1 " " $4 " " $7}'|sort -nr|head -20

        4.列出輸出大于200000byte(約200kb)的exe文件以及對應文件發(fā)生次數
        cat access.log |awk '($10 > 200000 && $7~/\.exe/){print $7}'|sort -n|uniq -c|sort -nr|head -100

        5.如果日志最后一列記錄的是頁面文件傳輸時間,則有列出到客戶端最耗時的頁面
        cat access.log |awk  '($7~/\.php/){print $NF " " $1 " " $4 " " $7}'|sort -nr|head -100

        6.列出最最耗時的頁面(超過60秒的)的以及對應頁面發(fā)生次數
        cat access.log |awk '($NF > 60 && $7~/\.php/){print $7}'|sort -n|uniq -c|sort -nr|head -100

        7.列出傳輸時間超過 30 秒的文件
        cat access.log |awk '($NF > 30){print $7}'|sort -n|uniq -c|sort -nr|head -20

        8.統計網站流量(G)
        cat access.log |awk '{sum+=$10} END {print sum/1024/1024/1024}'

        9.統計404的連接
        awk '($9 ~/404/)' access.log | awk '{print $9,$7}' | sort

        10. 統計http status.
        cat access.log |awk '{counts[$(9)]+=1}; END {for(code in counts) print code, counts[code]}'
        cat access.log |awk '{print $9}'|sort|uniq -c|sort -rn

        10.蜘蛛分析
        查看是哪些蜘蛛在抓取內容。
        /usr/sbin/tcpdump -i eth0 -l -s 0 -w - dst port 80 | strings | grep -i user-agent | grep -i -E 'bot|crawler|slurp|spider'


        網站日分析2(Squid篇)

        2.按域統計流量
        zcat squid_access.log.tar.gz| awk '{print $10,$7}' |awk 'BEGIN{FS="[ /]"}{trfc[$4]+=$1}END{for(domain in trfc){printf "%s\t%d\n",domain,trfc[domain]}}'

        效率更高的perl版本請到此下載:[url]http://docs.linuxtone.org/soft/tools/tr.pl


        數據庫篇
        1.查看數據庫執(zhí)行的sql
        /usr/sbin/tcpdump -i eth0 -s 0 -l -w - dst port 3306 | strings | egrep -i 'SELECT|UPDATE|DELETE|INSERT|SET|COMMIT|ROLLBACK|CREATE|DROP|ALTER|CALL'



        系統Debug分析篇

        1.調試命令
        strace -p pid

        2.跟蹤指定進程的PID
        gdb -p pid

        本文出自:億恩科技【mszdt.com】

        服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經營性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經營性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經營性ICP/ISP證:贛B2-20080012
      9. 服務器/云主機 24小時售后服務電話:0371-60135900
      10. 虛擬主機/智能建站 24小時售后服務電話:0371-60135900
      11. 專注服務器托管17年
        掃掃關注-微信公眾號
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權所有  地址:鄭州市高新區(qū)翠竹街1號總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務所郝建鋒、杜慧月律師   京公網安備41019702002023號
          0
         
         
         
         

        0371-60135900
        7*24小時客服服務熱線