« sohu 公司昨天想 DoS 攻击我网站? | Main | 写了一段 perl 处理 ip range 的代码 »
September 3, 2006
安装 MaxMind GeoIP、GeoIP City Lite 为 awstats 配置 IP 位置国家城市统计信息
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2006/09/03/001074.html 安装 MaxMind GeoIP、GeoIP City Lite 为 awstats 配置 IP 位置国家城市统计信息 http://www.maxmind.com/download/geoip/api/c/ http://www.maxmind.com/download/geoip/api/c/GeoIP-1.4.0.tar.gz http://www.maxmind.com/download/geoip/api/perl/ http://www.maxmind.com/download/geoip/api/perl/Geo-IP-1.27.tar.gz http://www.maxmind.com/app/geolitecity http://www.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz 安装配置全程脚本: # 下载 wget http://www.maxmind.com/download/geoip/api/c/GeoIP-1.4.0.tar.gz wget http://www.maxmind.com/download/geoip/api/perl/Geo-IP-1.27.tar.gz wget http://www.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz # 安装 tar zxf GeoIP-1.4.0.tar.gz cd GeoIP-1.4.0 ./configure make make install cd .. tar zxf Geo-IP-1.27.tar.gz cd Geo-IP-1.27 perl Makefile.PL make make install cd .. gunzip GeoLiteCity.dat.gz cp -a GeoLiteCity.dat /usr/local/share/GeoIP/ # 更新动态库路径 echo /usr/local/lib > /etc/ld.so.conf.d/geoip-i386.conf ldconfig -v # 修改 awstats 配置 LoadPlugin="geoip GEOIP_STANDARD /usr/local/share/GeoIP/GeoIP.dat" LoadPlugin="geoip_city_maxmind GEOIP_STANDARD /usr/local/share/GeoIP/GeoLiteCity.dat" 下次 update 数据和 build pages 就可以看到 国家或地区 (前 10) 和 主机 (前 10) 中的IP地理位置信息 awstats/tools/awstats_updateall.pl now awstats/tools/awstats_buildstaticpages.pl -config=configdomainname -month=$M -lang=cn GeoIP Country 链接到 #countries GeoIP City 链接到 awstats.$configdomainname.plugin_geoip_city_maxmind.html 相关文章: awstats 日志分析在跨月时的一个处理小技巧 http://windtear.net/archives/2006/08/31/001071.html 用 awstats 做网站访问日志分析 http://windtear.net/archives/2006/04/30/000972.html 研究解决awstats等日志分析软件对日志数据的时间顺序敏感性 http://windtear.net/archives/2006/05/08/000978.html awstats 的自定义 logformat 支持 http://windtear.net/archives/2006/05/22/000988.html |
Posted by windtear at September 3, 2006 12:42 PM