您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何使用Awstats日志分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
PerI語言開發的一款開源日志分析系統
可用來分析Apache、Samba、 Vsftpd、 IIS等 服務器的訪問日志
信息結合crond等計劃任務服務,可對日志內容定期進行分析
[root@localhost ~]# yum install bind httpd -y
修改DNS主配置文件
[root@localhost ~]# vim /etc/named.conf //進入DNS主配置文件
options {
listen-on port 53 { any; }; //將本機監聽為所有
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-query { any; }; //允許所有
修改區域配置文件
[root@localhost ~]# vim /etc/named.rfc1912.zones 修改區域配置文件
zone "localhost" IN { //復制一份模板
type master;
file "named.localhost";
allow-update { none; };
};zone "kgc.com" IN { //修改localhost為kgc.com
type master;
file "kgc.com.zone"; //寫入區域數據配置文件名稱
allow-update { none; };
};
修改區域數據配置文件
[root@localhost ~]# cd /var/named/
[root@localhost named]# cp -p named.localhost kgc.com.zone
//復制一份模板作為區域數據配置文件
[root@localhost named]# vim kgc.com.zone$TTL 1D
@ IN SOA @ rname.invalid. (
0 ; serial
1D ; refresh
1H ; retry
1W ; expire
3H ) ; minimum
NS @
A 127.0.0.1
www IN A 192.168.131.129 //添加域名解析地址為本機地址[root@localhost named]# systemctl start named
修改http主配置文件
[root@localhost html]# vim /etc/httpd/conf/httpd.conf //進入httpd配置文件
Listen 192.168.131.129:80 //修改ipv4監聽地址為本機IP
#Listen 80 //將ipv6端口注釋
ServerName www.kgc.com:80 //修改域名
[root@localhost named]# systemctl stop firewalld.service //關閉防火墻
[root@localhost named]# setenforce 0 //關閉增強型安全功能
[root@localhost html]# systemctl start httpd.service //啟動httpd服務
用測試機(dns服務地址192.168.131.129)訪問測試網站
此時再進入服務器查看日志文件,即可查看到有哪些主機訪問了我們的網站
[root@localhost aaa]# mkdir /aaa //創建本地掛載目錄
[root@localhost ~]# mount.cifs //192.168.100.3/LAMP /aaa //遠程掛載文件到本地
Password for root@//192.168.10.37/LAMP:
[root@localhost aaa]# cd /aaa //進入掛載點/aaa
[root@localhost aaa]# tar zxvf awstats-7.6.tar.gz -C /opt/ //將awstats工具包解壓到本地/opt目錄
[root@localhost aaa]# ls /opt
awstats-7.6 rh
[root@localhost aaa]# cd /opt
[root@localhost opt]# mv awstats-7.6/ /usr/local/awstat
//移動awstats工具包到/usr/local/awsta
[root@localhost opt]# ls /usr/local/ //查看目錄中是否有awstat文件awstat etc include lib64 sbin src
bin games lib libexec share[root@localhost opt]# ls /usr/local/awstat/tools/ //查看此目錄下中是否有awstats_configure.pl 文件
awstats_buildstaticpages.pl logresolvemerge.pl
awstats_configure.pl maillogconvert.pl
awstats_exportlib.pl nginx
awstats_updateall.pl urlaliasbuilder.pl
dolibarr webmin
geoip_generator.pl xslt
httpd_conf
[root@localhost opt]# cd /usr/local/awstat/tools/ //進入目錄
[root@localhost tools]# ./awstats_configure.pl //開始配置文件
Enter full config file path of your Web server.
Example: /etc/httpd/httpd.conf
Example: /usr/local/apache2/conf/httpd.conf
Example: c:\Program files\apache group\apache\conf\httpd.conf
Config file path ('none' to skip web server setup):/etc/httpd/conf/httpd.conf
//填寫配置文件路徑
Do you want me to build a new AWStats config/profile
file (required if first install) [y/N] ? y //確定創建新的配置文件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.kgc.com // 輸入網站域名
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)://回車默認域名對應的配置文件目錄http://localhost/awstats/awstats.pl?config=www.kgc.com
//此網頁即為我們的要訪問的網址
Press ENTER to finish..
[root@localhost tools]# vim /etc/httpd/conf/httpd.conf
...
366 <Directory "/usr/local/awstat/wwwroot">
367 Options None
368 AllowOverride None
369 Order allow,deny
370 Allow from all
371 Require all granted //在此行插入此行條目用以允許所有訪問
372 </Directory>
[root@localhost tools]# ls /etc/awstats/
awstats.www.kgc.com.conf
[root@localhost tools]# vim /etc/awstats/awstats.www.kgc.com.conf
LogFile="/var/log/httpd/access_log"
使用/LogFile查找到關鍵詞所在行,將末尾改為access_log
[root@localhost tools]# cd /var/lib/
[root@localhost lib]# mkdir awstats
[root@localhost lib]# systemctl stop httpd
[root@localhost lib]# systemctl start httpd
[root@localhost tools]# cd /var/www/html/ //進入站點目錄
[root@localhost html]# vim aws.html //創建aws.html網頁,并將原本服戰的網頁鏈接放入即可<html>
<head> <meta http-equiv=refresh content="0;url=http://www.kgc.com/awstats/awstats.pl?config=www.kgc.com">
</head>
<body></body>
</html>[root@localhost html]# ls
aws.html
此時我們只需要在測試機訪問www.kgc.com/AWS.html 即可訪問到統計頁面了
關于“如何使用Awstats日志分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。