shell分析nginx access log日志
Posted xiaojinniu425
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell分析nginx access log日志相关的知识,希望对你有一定的参考价值。
统计访问最多的ip
1. tail -n 10000 xxaccess_log | cut -d " " -f 1 |sort|uniq -c|sort -rn|head -10 |more
2.tail -n 10000 xx-access_log | awk ‘{print $1}‘|sort|uniq -c|sort -rn|head -10 | more
统计访问最多的url
tail -n 10000 xx-access_log |awk ‘{print $7}‘| sort|uniq -c| sort -rn| head -10 | more
指定ip统计访问最多的url
tail -n 1000 xx-access_log | grep ‘00.00.00.00’|awk ‘{print $7}‘| sort|uniq -c| sort -rn| head -10 | more
通过日志查看当天访问次数最多的时间段
tail -n 1000 xx-access_log | awk ‘{print $4}‘|cut -c 14-21 |sort|uniq -c|sort -rn|head -10|more
以上是关于shell分析nginx access log日志的主要内容,如果未能解决你的问题,请参考以下文章