实验环境
在虚拟机Linux 6.5系统下需要2台Linux系统一台A作为服务端一条B作为测试客户端win7真实主机开启2台Linux系统。
实验目标
A作为服务端配置VSFTPD服务器实现FTP服务。
B作为测试客户端验证服务器A的共享是否有效。
配置真实主机确保真实主机能ping通2台虚拟机。
实验步骤
1.首先将A,B真实主机放到同一网段中为了以后实验方便配置永久起效的静态IP地址验证AB真实主机能否通信安装Awstats并为要统计的站点建立配置文件。
[root@s5 桌面]#tar -zxfawstats-7.1.tar.gz //解包
[root@s5 桌面]#mv awstats-7.1/usr/local/awstats //移动
[root@svr5 pub]# cd /usr/local/awstats/tools/
[root@svr5tools]# ./awstats_configure.pl
>/etc/httpd/conf/httpd.conf //指定Web配置路径
? y //同意
创建新的站点配置
>svr5.tarena.com //指定网站名称配置文件标识
> //回车接受配置路径 /etc/awstats
…… 自动重启httpd服务
> //回车继续
> //回车完成配置
2.修改站点统计配置文件并设置计划任务执行日志分析。
[root@s5tools]#vim /etc/awstats/awstats.s5.tarena.com.conf
LogFile="/var/log/httpd/access_log" //要分析的日志文件
[root@s5tools]#mkdir /var/lib/awstats
[root@s5tools]#./awstats_updateall.pl now //执行日志分析
[root@s5 tools]#crontab–e
*/5 * * * * /usr/local/awstats/tools/awstats_updateall.p l now
3.查看分析结果配置简易的访问地址。
http://192.168.1.1/awstats/awstats.pl?config=s5.tarena.com
[root@s5 www]#vim/var/www/html/aw-s5.html //配置文件
1 <html>
2 <head>
3 <meta http-equiv=refresh content="0;
4 url=http://192.168.1.1/awstats/awstats.pl?config=s5.tarena.com">
5 </head>
6 <body>
7 </body>
8 <html>
http://192.168.1.1/aw-s5.html
原文地址:http://suixinerwei.blog.51cto.com/9108332/1543907