首先将apache压缩文件httdp-2.4.7上传到/usr/local/src中,并解压,这里上传工具可用xftp。再检查apr和apr-util是否安装,如果安装了请卸载重新安装

1、卸载apr和apr-util
[root@centos6 LAMP]# yum remove apr apr-util

yum安装openssl
[root@centos6 LAMP]#yum install openssl-devel

解压缩apr和apr-util和httpd-2.4.7.tar.gz
[root@centos6 LAMP]#tar -zxvf apr-1.4.6.tar.gz
[root@centos6 LAMP]#tar -zxvf apr-util-1.4.1.tar.gz
[root@centos6 LAMP]#tar -zxvf httpd-2.4.7.tar.gz

[root@centos6 LAMP]#cp -r apr-1.4.6 httpd-2.4.7/srclib/apr
[root@centos6 LAMP]#cp -r apr-util-1.4.1 httpd-2.4.7/srclib/apr-util

2、解压 apr 和 apr-util ,复制并取消版本号

安装pcre-8.34
[root@centos6 LAMP]# tar zxvf pcre-8.34.tar.gz
[root@centos6 LAMP]# cd pcre-8.34
[root@centos6 pcre-8.34]# ./configure --prefix=/usr/local/pcre
[root@centos6 pcre-8.34]# make
[root@centos6 pcre-8.34]# make install
cd /usr/local/LAMP/httpd-2.4.7
[root@centos6 httpd-2.4.7]#./configure --prefix=/usr/local/apache2 --sysconfdir=/usr/local/apache2/etc/ --enable-mods-shared=all --enable-deflate --enable-speling--enable-cache --enable-file-cache --enable-disk-cache --enable-mem-cache --enable-so --enable-expires=shared --enable-rewrite=shared --enable-static-support --with-z=/usr/local/zlib/ --with-included-apr --with-pcre=/usr/local/pcre/ --disable-userdir

[root@centos6 httpd-2.4.7]# make && make install

3、启动Apache服务器,并查端口是否开启,启动Apache服务器的命令行如下:

[root@centos6 httpd-2.4.7]# /usr/local/apache2/bin/apachectl start

如果不能启动,提示信息:

AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using ::1. Set the 'ServerName' directive globally to suppress this message
解决方案:

[root@centos6 httpd-2.4.7]# vim /etc/apache2/httpd.conf   //如果没有这个文件,vi /usr/local/apache2/etc/httpd.conf

写入:

ServerName localhost:80

重启apache
/usr/local/apache2/bin/apachectl stop
/usr/local/apache2/bin/apachectl start

查看端口号,应该是这样的:

[root@centos6 httpd-2.4.7]#netstat -tulnp | grep 80

tcp 0 0 0.0.0.0:80 0.0.0.0:* LIST

4、测试:浏览器输入你的IP地址,出现 It works! 安装成功

写入/etc/rc.local配置文件中 使得Apache每次开机自启动:

vim /etc/rc.local

添加:

/usr/local/apache2/bin/apachectl start

:wq保存退出
*若启动时提示 /usr/local/apache2/modules/mod_deflate.so 无权限,可关闭 SELinux
或者执行命令 chcon-ttexrel_shlib_t/usr/local/apache2/modules/mod_deflate.so ,
类似此类 .so 文件不能载入或没有权限的问题,都是 SELinux 问题,

使用命令:“ chcon-ttexrel_shlib_t 文件名”即可解决,

 MySQL 和 Apache 也可能有类似问题。

最后只有你通过浏览器
输入地址访问: http://Apache 服务器地址,若显示“ Itworks ”即表明 Apache 正常工作!!!