http://rocksea.tistory.com/184
access log 접속아이피 분석 shellscript
nginx에 접속한 IP 및 횟수를 알고싶을때 사용하면 된다.
$ tail -n 500000 access.log | awk '{print $1" "$4}' | uniq -c | sed -e 's/^\s*//g' | sort -n > total.log
uniq -c 라는 명령어 참 유용한것 같다.
'UNIX > Redhat' 카테고리의 다른 글
dd 명령어 (0) | 2013.09.27 |
---|---|
vsftpd 에서 익명 ftp 경로 바꾸기 (0) | 2013.07.31 |
리눅스 로그 파일 설명, syslog.conf (0) | 2013.07.29 |
grep --color 옵션을 줘서 글자 색 출력 (0) | 2013.07.29 |
리눅스 NIC 드라이버 및 모델명 확인 (0) | 2013.07.26 |