1.根据访问IP统计UV awk ‘{print $1}‘ access.log|sort | uniq -c |wc -l 2.统计访问URL统计PV awk ‘{print $7}‘ access.log|wc -l 3.查询访问最频繁的URL awk ‘{print $7}‘ access.log|sort | uniq -c |sort -n -k 1 -r|more 4.查询访问最频繁的IP awk ‘{print $1}‘ access.log|sort | uniq -c |sort -n -k 1 -r|more 统计nginx日志中访问最多的100个ip及访问次数 awk ‘{print $1}’ access.log|sort | uniq -c |sort -n -k 1 -r| head -n 100 --------------------- 作者:YiFeng_888 来源:CSDN 原文:https://blog.csdn.net/weixin_42980713/article/details/86559017 版权声明:本文为博主原创文章,转载请附上博文链接!
参考:https://blog.csdn.net/weixin_42980713/article/details/86559017
原文地址:https://www.cnblogs.com/icemonkey/p/10447820.html
时间: 2024-10-09 05:25:18