awstats 配置「建议收藏」

awstats 配置「建议收藏」awstats一、首先修改httpd.conf  httpd-vhost.conf把log模式由common改成combinedvi/usr/local/apache2/conf/httpd.confvi/usr/local/apache2/conf/extra/httpd-vhost.conf/usr/local/apache2/bin/apachectlrestart二、安装Geo-…

大家好,又见面了,我是你们的朋友全栈君。

awstats
一、首先修改httpd.conf   httpd-vhost.conf
把log模式由common改成combined
vi /usr/local/apache2/conf/httpd.conf
vi /usr/local/apache2/conf/extra/httpd-vhost.conf
/usr/local/apache2/bin/apachectl restart

二、安装Geo-IP
wget  
http://www.maxmind.com/download/geoip/api/c/GeoIP-1.4.3.tar.gz

wget
http://www.maxmind.com/download/geoip/api/perl/Geo-IP-1.30.tar.gz

wget  
http://search.cpan.org/CPAN/authors/id/G/GM/GMPASSOS/Geo-IPfree-0.2.tar.gz

cd /usr/local/src

tar zxvf GeoIP-1.4.3.tar.gzcdGeoIP-1.4.3./configuremakemake install tar zxvf Geo-IP-1.30.tar.gzcdGeo-IP-1.30perl Makefile.PLmakemake install
tar zxvf Geo-IPfree-0.2.tar.gzcd Geo-IPfree-0.2perlMakefile.PLmakemake install

三、安装awstats
1、下载并安装
wget  
http://downloads.sourceforge.net/awstats/awstats-6.7.tar.gz

tar zxvf awstats-6.7.tar.gz
mv awstats-6.7 /usr/local/awstats
cd /usr/local/awstats
cd /usr/local/awstats/tools
perl awstats_configure.pl

2、配置
vi /etc/awstats/awstats.www.web.cn.conf
DirData=”/usr/local/apache2/htdocs/awstats/data”
DirIcons=”/awstats/icon”
DirCgi=”/usr/local/apache2/cgi-bin/awstats”
LogFile=”/usr/local/apache2/logs/www.web.cn-access_log”

(1)多日志合并分析(例:新浪播客其中两台服务器2月6日的日志30.0206.vblog.log与31.0206.vblog.log)
LogFile=”/opt/awstats/tools/logresolvemerge.pl/var/apachelogs/30.0206.vblog.log /var/apachelogs/31.0206.vblog.log|”

LogFile=”/opt/awstats/tools/logresolvemerge.pl/var/apachelogs/*.0206.vblog.log|”
SiteDomain=
www.web.cn

HostAliases=
www.web.cn

AllowToUpdateStatsFromBrowser=1
Lang=”cn”
LoadPlugin=”decodutfkeys”
LoadPlugin=”geoip GEOIP_STANDARD/usr/local/share/GeoIP/GeoIP.dat”
#LoadPlugin=”geoipfree”
#LoadPlugin=”geoip_city_maxmind GEOIP_STANDARD/usr/local/share/GeoIP/GeoLiteCity.dat”

注释:GeoIP.dat 跟geoipfree2者只能选一个,不能同时使用的!我选的是GeoIP.dat
加了GeoLiteCity.dat 貌似有反向的解析,整体的awstats会变慢。所以实验了一下,实际的应用不建议使用!
同时经过实际的测试geoipfree2的准确性太差,把国内的地址认为是美国的,所以还是使用GeoIP吧。

3、拷贝cgi、data、icon
cp -r /usr/local/awstats/wwwroot/cgi-bin//usr/local/apache2/cgi-bin/awstats
mkdir -p /usr/local/apache2/htdocs/awstats/data
chmod 777 /usr/local/apache2/htdocs/awstats/data
cp -r /usr/local/awstats/wwwroot/icon//usr/local/apache2/htdocs/web/awstats/icon

/usr/local/apache2/bin/apachectl restart

/usr/local/apache2/cgi-bin/awstats/awstats.pl -update-config=www.web.cn
在浏览器中打开以下网站

http://www.web.cn/cgi-bin/awstats/awstats.pl?config=www.web.cn

注释:
LogFile (APCHE CustomLog日志的绝对路径)DirData  (指定AWSTATS生成数据的存放目录,可以任意指定,但注意目录要具有读写权限,可以设置为777或755)DirCgi  (cgi的路径,是相对于网站根目录的绝对路径,我这里没有指定网站根目录是因为apache的配置默认有cgi-bin的缺省目录,我是拷贝到这个缺省目录中的)DirIcons  (icon的路径,是相对于网站根目录的绝对路径,这个就没办法了,只能放到每个要设定的虚拟域名网站的目录中了)SiteDomain (输入你的域名)HostAliases (主机别名,如果还有其他的二级域名或三级域名,请在此添加。)AllowToUpdateStatsFromBrowser (是否允许用户从浏览器中实时更新统计,这个功能在测试的时候很有用!)Lang=”cn”(设置网页显示语言为简体中文。)

更新Geo-IP的2个免费数据库
mkdir -p /home/soft/awstats
cd /home/soft/awstats
wget
http://www.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz

wget
http://www.maxmind.com/download/geoip/database/GeoIP.dat.gz

gunzip GeoLiteCity.dat.gz
gunzip GeoIP.dat.gz
cp GeoLiteCity.dat /usr/local/share/GeoIP/
cp GeoIP.dat /usr/local/share/GeoIP/

cd /usr/local/share/GeoIP

测试AWSTATS
/usr/local/apache2/cgi-bin/awstats/awstats.pl -update-config=www.web.cn

如果不出现错误信息并且得到统计数据回显则成功!
访问地址:
http://www.web.cn/cgi-bin/awstats/awstats.pl?config=www.web.cn

设置crondcrontab -e增加:(可设置为每天零时进行更新)00 * * * /usr/local/apache2/cgi-bin/awstats/awstats.pl -update-config=www.web.cn

修改httpd.conf设置/usr/local/apache2/cgi-bin/awstats目录访问权限
这样就可以通过用户名和密码来限制可以访问的计算机了

vi /usr/local/apache2/conf/httpd.conf

/usr/local/apache2/cgi-bin/awstats“>
AllowOverride authconfig
Order allow,deny
Allow from all

vi /usr/local/apache2/htdocs/cgi-bin/awstats/.htaccess
AuthType Basic
AuthName “请输入用户名和密码”
AuthUserFile /usr/local/apache2/
cgi-bin/awstats/passwords
Require valid-user
htpasswd -c /usr/local/apache2/
cgi-bin/awstats/passwordsadminsarg
重复输入2次密码

/usr/local/apache2/bin/apachectl restart

完工!

注释:perl awstats_configure.pl的过程
—– AWStats awstats_configure 1.0 (build 1.7) (c) Laurent Destailleur—–
This tool will help you to configure AWStats to analyze statistics for
one web server. You cantry to use it to let it do all that is possible
in AWStats setup, however following the step by step manual setup
documentation (docs/index.html) is often a better idea. Above all if:
– You are not an administrator user,
– You want to analyze downloaded log files without web server,
– You want to analyze mail or ftp log files instead of web log files,
– You need to analyze load balanced servers log files,
– You want to ‘understand’ all possible ways to use AWStats…
Read the AWStats documentation (docs/index.html).

—–> Running OS detected: Linux, BSD or Unix

—–> Check for web server install
  Found Web server Apache config file’/usr/local/apache2/conf/httpd.conf’

—–> Check and complete web server config file’/usr/local/apache2/conf/httpd.conf’

—–> Update model config file ‘/usr/local/awstats/wwwroot/cgi-bin/awstats.model.conf’
  File awstats.model.conf updated.

—–> Need to create a new config file ?
Do you want me to build a new AWStats config/profile
file (required if first install) [y/N] ? y

—–> Define config file name to create
What is the name of your web site or profile analysis ?
Example: www.mysite.com
Example: demo
Your web site, virtual server or profile name:
>
www.web.cn

—–> Define config file path
In which directory do you plan to store your config file(s) ?
Default: /etc/awstats
Directory path to store config file(s) (Enter for default):
>

—–> Create config file ‘/etc/awstats/awstats.www.web.cn.conf’
Config file /etc/awstats/awstats.www.web.cn.conf created.

—–> Add update process inside a scheduler
Sorry, configure.pl does not support automatic add to cron yet.
You can do it manually by adding the following command to your cron:
/usr/local/awstats/wwwroot/cgi-bin/awstats.pl -update -config=www.web.cn
Or if you have several config files and prefer having only one command:
/usr/local/awstats/tools/awstats_updateall.pl now
Press ENTER to continue…

A SIMPLE config file has been created: /etc/awstats/awstats.www.web.cn.conf
You should have a look inside to check and change manually main parameters.
You can then manually update your statistics for ‘www.web.cn’ with command:
> perl awstats.pl -update -config=www.web.cn
You can also read your statistics for ‘www.web.cn’ with URL:
>
http://localhost/awstats/awstats.pl?config=www.web.cn

Press ENTER to finish…

注释:
www.web.cn
是借用的,不是真的,是举个例子的!

 

注释:  当AllowToUpdateStatsFromBrowser (是否允许用户从浏览器中实时更新统计,这个功能在测试的时候很有用!)=1时 When this parameter is set to 1, AWStatsadds a button on report page toallow to “update” statistics from aweb browser. Warning, when “update” ismade from a browser, AWStats isrun as a CGI by the web server user definedin your web server (user”nobody” by default with Apache, “IUSR_XXX” withIIS), sothe “DirData” directory and all already existing historyfilesawstatsMMYYYY[.xxx].txt must be writable by this user. Change permissionsifnecessary to “Read/Write” (and “Modify” for Windows NTFSfile systems).

当这个参数设置为1,AWStats添加一个按钮toallow报告页更新统计一个浏览器。警告,更新”ismade从一个浏览器,AWStats运行CGI的作为一个网络服务器的用户definedin你的网络服务器(默认用户没有人“IUSR_XXX”withIIS鞍鞯,制作出),因此这种“DirData”目录和所有已存在的历史filesawstatsMMYYYY[xxx]txt必须可写的这个用户。改变权限ifnecessary“/”(“修改对于Windows NTFS文件系统)。修改DirData权限777

安装qq纯真库。

3个文件复制到cgi-bin/awstats/plugins/

修改qqhostinfo文件

require”/usr/local/apache2/cgi-bin/awstats/plugins/qqwry.pl”;

修改qqwry.pl

my$ipfile=”/usr/local/apache2/cgi-bin/awstats/plugins/QQWry.Dat”;(注意dat是大写还是小写)

修改/etc/awstats/awstats.xkyx.com

加上LoadPlugin=”qqhostinfo”

修改LoadPlugin=”decodeutfkeys”

LoadPlugin=”tooltips”

LoadPlugin=”hashfiles”

LoadPlugin=”geoipGEOIP_STANDARD /usr/local/share/GeoIP/GeoIP.dat”(可选是否删除在国际栏显示区别)

 

Update就行了显示在国家Location

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/160170.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • springboot事务的传播机制[通俗易懂]

    springboot事务的传播机制[通俗易懂]事务的传播机制所谓事务的传播行为是指,如果在开始当前事务之前,一个事务上下文已经存在,此时有若干选项可以指定一个事务性方法的执行行为。(,默认)REQUIRED :如果当前存在事务,则加入该事务;如果当前没有事务,则创建一个新的事务。SUPPORTS :如果当前存在事务,则加入该事务;如果当前没有事务,则以非事务的方式继续运行。MANDATORY :如果当前存在事务,则加入该事务;如果当前没有事务,则抛出异常。REQUIRES_NEW :创建一个新的事务,如果当前存在事务,则把当前事务挂起。

  • @PostConstruct注解是Spring提供的?今天讲点不一样的「建议收藏」

    @PostConstruct注解是Spring提供的?今天讲点不一样的「建议收藏」前言我们在讲《Spring的Lifecycle》时提到,在Spring的使用中可以通过Lifecycle接口实现一些基于Spring容器生命周期逻辑。与此对照的就是通过@PostConstruct和@PreDestroy在Bean初始化或销毁时执行一些操作。很明显Spring的Lifecycle是基于容器的生命周期来处理逻辑,而@PostConstruct和@PreDestroy是基于Bean的生命周期来处理业务逻辑。这里很多朋友就产生了一个误解,以为@PostConstruct注解也是Spring提

    2022年10月21日
  • C语言和JAVA的区别[通俗易懂]

    C语言和JAVA的区别[通俗易懂]java语言和c语言的区别:un公司推出的Java是面向对象程序设计语言,其适用于Internet应用的开发,称为网络时代重要的语言之一。Java可以用认为是C的衍生语言,与C在大量元以内成分保持相同,例如此法结构、表达式语句、运算符等与C基本一致:但Java更简洁,没有C中冗余以及容易引起异常的功能成分,并且增加了多线程、异常处理、网络编程等方面的支持功能。本文从多角度对Java与C进行对比分析,为C与Java语言的学习提高一些借鉴。1、调法结构C与Java的词法结构很相似,针对程

  • 安装Mendeley后Word中没有出现对应的Mendeley插件

    安装Mendeley后Word中没有出现对应的Mendeley插件Mendeley在Word工具栏中的位置新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML图表…

  • goland 2021.4 激活码_通用破解码

    goland 2021.4 激活码_通用破解码,https://javaforall.cn/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

  • 文本分类——常用经典技术解析(jieba,word2vec,样本不平衡问题)「建议收藏」

    文本分类——常用经典技术解析(jieba,word2vec,样本不平衡问题)「建议收藏」一个文本分类任务的典型操作流程如下:即拿到数据后先分词,然后转化为词向量(数值化过程),最后对数值化后的数据进行分类。一、jieba分词原理jieba自带了一个叫做dict.txt的词典,里面有2万多条词,包含了词条出现的次数(这个次数是于作者自己基于人民日报语料等资源训练得出来的)和词性.这个第一条的trie树结构的词图扫描,说的就是把这2万多条词语,放到一个trie树(词典树…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号