标签:http awstats
编译安装 http 及安装 awstats首先配置 IP进入/etc/sysconfig/network-scripts/ifcfg-eth*写下面两行:
IPADDR=IP 地址 如 192.168.1.1
NETMASK=以自己配置的 IP 为准 255.255.255.0关闭 selinux
getenforce
vim /etc/sysconfig/selinux将 enforceing 改为 disabled 即可在安装之前还需看一下以前是否安装过使用 rpm -qa | grep httpd 查看若是已安装,使用 rpm -e httpd --nodeps 删除以上无问题后开始下面的步骤然后将所需的 apachey 包放到/root/下使用 下面命令
tar xf httpd-TAB 键 -C 指定目录开始配置
./configure --prefix=/usr/local/httpd --enable-so
--enable-rewrite --enable-charset-lite --enable-cgi若无问题之后开始安装
make 无问题再 make install完成之后就可以启动服务了例: /usr/local/httpd/bin/apachectl start启动之后使用: firefox http://IP 来访问以下,将 http 的启动脚本放置/etc/init.d 中
cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd注意此时启动会报错,需将此脚本改成 sysV 风格加入下面两行 #chkconfig 2345 10 10
#description:可以任意写之后将此服务加入
chkconfig --add httpd
chkconfig --level 2345 httpd on完成之后开始安装 awstats
tar xf awstats-TAB -C /usr/local
cd /usr/local
mv awstats-7.3 awstats
cd /usr/local /awstats/tools/
chmod +x awstats_configure.pl awstats_updateall.pl
./ awstats_configure.pl
firefox http://www.liukang.com/awstats/awstats.pl &
crontab -e
*/5 * * * * /usr/src/awstats/tools/ awstats_updateall.pl
now
service crond restart
本文出自 “10706057” 博客,请务必保留此出处http://10716057.blog.51cto.com/10706057/1772835
标签:http awstats
原文地址:http://10716057.blog.51cto.com/10706057/1772835