반응형
access 로그에서 IP별로 건수 현황 추출
<로그>
127.0.0.1 - - [19/Jun/2015:08:56:20 +0900] "GET /index.jsp HTTP/1.1" 200 428 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64;
<명령어 shell>
grep '접속페이지URL정보' access.log | awk '{print $1}' | sort | uniq –c
반응형