统计Apache或nginx日志里访问次数最多的前十个IP

nginx

awk '{print $1}' urlogfile | sort | uniq -c | sort -nr -k1 | head -n 10
awk '{print $1}' /usr/local/nginx/logs/localhost.access.log | sort | uniq -c | sort -nr -k1 | head -n 10

Apache

cd /var/log/httpd/&&\
cat access_log | awk '{print $1}' | uniq -c | sort -rn -k1 | head -n 10

说明:

awk '{ print $1}':取数据的低1域(第1列)

sort:对IP部分进行排序。

uniq -c:打印每一重复行出现的次数。(并去掉重复行)

sort -nr -k1:按照重复行出现的次序倒序排列,-k1以第一列为标准排序。

head -n 10:取排在前5位的IP 。



你可能感兴趣的:(apache,nginx)