推广 热搜:   中国  公司  企业  服务  未来  设备  政策  行业  基金 

linux网站ip访问量查询,linux下统计appche站点IP访问量的shell脚本

   日期:2024-11-11     作者:shyqysj    caijiyuan   评论:0    移动:http://lanlanwork.gawce.com/mobile/news/9524.html
核心提示:经常需要根据ip地址统计apache站点访问量,最基本的脚本.根据ip访问量降序排列:#!/bin/bash#script_name: access_countacc

经常需要根据ip地址统计apache站点访问量,最基本的脚本.

linux网站ip访问量查询,linux下统计appche站点IP访问量的shell脚本

根据ip访问量降序排列:

#!/bin/bash

#script_name: access_count

acc_log=/usr/local/apache2/logs/access_log

/bin/awk '{print $1}' $acc_log  | sort | uniq -c | sort -nr

执行效果:

[root@zabbix ~]# sh access_count

94989 192.168.100.34

38863 192.168.200.92

23658 192.168.1.71

16720 192.168.100.80

13688 192.168.200.34

1618 192.168.100.104

1251 192.168.1.202

1195 192.168.100.30

1058 192.168.1.203

934 192.168.1.208

792 127.0.0.1

773 192.168.5.126

189 192.168.1.68

打印访问量前三的ip地址:

#!/bin/bash

#script_name:access_count

acc_log=/usr/local/apache2/logs/access_log

/bin/awk '{print $1}' $acc_log  | sort | uniq -c | sort -nr | head -n 3

执行效果:

[root@zabbix ~]# sh access_count

94989 192.168.100.34

38863 192.168.200.92

23658 192.168.1.71

apache站点访问错误统计:

#!/bin/bash

#script_name:error_count

err_log=/usr/local/apache2/logs/error_log

cat  $err_log | grep -e "^[" |  awk '{print $6}' | sort | uniq -c |sort -nr

执行效果:

[root@zabbix ~]# sh error_count

701 [core:notice]

30 [mpm_event:notice]

12 [core:warn]

本文地址:http://lanlanwork.gawce.com/news/9524.html    阁恬下 http://lanlanwork.gawce.com/ , 查看更多
 
 
更多>同类行业资讯
0相关评论

新闻列表
企业新闻
推荐企业新闻
推荐图文
推荐行业资讯
点击排行
网站首页  |  关于我们  |  联系方式  |  使用协议  |  版权隐私  |  网站地图  |  排名推广  |  广告服务  |  积分换礼  |  网站留言  |  RSS订阅  |  违规举报  |  鄂ICP备2023001713号