创建虚拟主机centos,内存2G,处理器1,磁盘80G,网络适配器:仅主机模式centos光盘切换Linux光盘
1、过滤和httpd有关的程序包
[root@centos01 ~]#rpm -qa | grep httpd
2、挂载
[root@centos01 ~]#mount /dev/cdrom /mnt/
[root@centos01 ~]#cd /mnt/
[root@centos01 mnt~]#ls
1、安装Apache
1)解压缩文件
[root@centos01 ~]# tar zxvf /mnt/httpd-2.2.17.tar.gz -C /usr/src/
2)配置Apache
[root@centos01 httpd-2.2.17]# ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi
3)编译Apache
[root@centos01 httpd-2.2.17]# make
4)安装Apache
[root@centos01 httpd-2.2.17]# make install
5)检查是否安装完成
[root@centos01 httpd-2.2.17]# ls -ld /usr/local/httpd/
2、优化程序和配置服务
1)优化程序执行目录
[root@centos01 ~]# ln -s /usr/local/httpd/bin/* /usr/local/bin/
2)生成Apache服务,服务名是httpd
[root@centos01 ~]# cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd
3)添加执行权限
[root@centos01 ~]# chmod +x /etc/init.d/httpd
4)修改apache服务的控制文件
[root@centos01 ~]# vim /etc/init.d/httpd
5)添加为系统服务
[root@centos01 ~]# chkconfig --add httpd
6)设置服务开机自动启动
[root@centos01 ~]# chkconfig --level 35 httpd on
7)系统启动服务
3、apache服务的安装目录
1)程序安装目录
[root@centos01 ~]# cd /usr/local/httpd/
2)服务可执行程序位置
/usr/local/httpd/bin
3)网页根目录
/usr/local/httpd/htdocs
4)日志位置保存成功或失败的日志
/usr/local/httpd/logs
5)管理服务脚本
[root@centos01 ~]# ls -ld /usr/local/httpd/bin/apachectl
6)apache主服务配置文件并启动
/usr/local/httpd/conf/httpd.conf
7)部署网页文档
[root@centos01 ~]# cd /usr/local/httpd/htdocs/
8)在客户机中访问web站点
9)查看web站点的访问情况。access_log/erroe_log
[root@centos01 htdocs]# tail -F /usr/local/httpd/logs/access_log