apache 의 access. log 를 찾 습 니 다.

1411 단어
현재 어떤 친구 가 tcp 를 통 해 자신의 모든 IP 주 소 를 조회 하 는 방법 을 물 었 다.
먼저 netstat - an 으로 현재 모든 TCP 연결 을 보 았 습 니 다.서버 가 웹 서버 라 는 걸 알 게 됐어 요.
apache, nginx 등 이 있어 야 합 니 다.따라서 방문 로 그 를 조회 하면 원 하 는 결 과 를 얻 을 수 있어 야 합 니 다.
apache 서버 를 예 로 들 면:
[logmonitor@cnsz17vl2955:/etc/httpd/logs]#ls
access_log           dummy-host.example.com-access_log           error_log-20170702
access_log-20170702  dummy-host.example.com-access_log-20170101  error_log-20170709
access_log-20170709  dummy-host.example.com-error_log            error_log-20170716
access_log-20170716  dummy-host.example.com-error_log-20170101   error_log-20170723
access_log-20170723  error_log

접근 로그 보기
10.116.216.44 - - [28/Jul/2017:05:17:25 +0800] "GET /favicon.ico HTTP/1.1" 200 - "http://wiki-itsc.sf-express.com/knowledge-base/prd-asura-sms%e7%b3%bb%e7%bb%9f%e9%aa%8c%e8%af%81/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36"

통계 IP 수량 상위 10
[logmonitor@cnsz17vl2955:/etc/httpd/logs]#awk '{print $1}' access_log-20170723 | sort | uniq -c | sort -nr | head -10
   2980 10.118.48.30
   1400 10.118.48.55
    611 10.118.125.103
    435 10.118.4.72
    434 10.118.125.131
    414 10.118.48.9
    297 10.118.124.46
    295 10.118.4.82
    265 10.118.4.60
    259 10.118.104.185

좋은 웹페이지 즐겨찾기