【只需3步】源码手动安装Apache以及配置(亲测可行)
来源:Linux社区 作者:xiaobo-Linux
RedHat Linux 6采用CentOS yum源。
CentOS yum源配置 见 http://www.linuxidc.com/Linux/2015-07/119782.htm
第一步下载Apache依赖的软件包并安装
安装 apr
下载地址:http://apr.apache.org/download.cgi
解压包:tar -jxvf apr-1.5.0.tar.bz2 注意:这里的包的格式是tar.bz2格式,如果是.tar格式的用 tar -zxvf +包的名字 命令解压。
进入该包的文件夹内,依次执行以下命令:
./configure --prefix=/work/installed/apr (注意:configure安装的文件夹目录可以自己定义)
make
make install
安装 apr-util
下载地址:http://apr.apache.org/download.cgi
解压包: tar -jxvf apr-util-1.5.3.tar.bz2
进入该文件夹并依次执行:
./configure --prefix=/work/installed/apr-util --with-apr=/work/installed/apr
make
make install
安装 pcre
下载地址:http://pcre.org/
解压包:tar -jxvf pcre-8.35.tar.bz2
./configure --prefix=/work/installed/pcre
make
make install
注意:如果在安装 pcre 时,遇到问题:configure: error: You need a C++ compiler for C++ support.
Ubuntu的解决方法:sudo apt-get install build-essential
redhat6/centos6 解决方法 :yum安装包即可:yum install gcc gcc-c++ kernel-devel
第二步安装Apache并配置:
安装:
下载地址:http://httpd.apache.org/
解压:tar -jxvf httpd-2.4.9.tar.bz2
进入解压后的文件内并执行:
./configure --prefix=/work/installed/apache --with-apr=/work/installed/apr --with-apr-util=/work/installed/apr-util --with- pcre=/work/installed/pcre --enable-module=shared
其中--enable-module=shared表示Apache可以动态的加载模块,为以后安装php铺垫。
make
make install
注意:如果安装错误,想重新装的话,先删除安装的文件夹,然后在解压后的文件夹内执行清除编译:make clean all
第三步配置Apache:
修改配置文件,如果不修改的话就启动了apache服务的话就会出现问题:
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
解决方法:
在安装的目录下修改文件:
命令:vim /work/installed/apache/conf/httpd.conf
把:
# ServerName www.example.com:80
改为:
ServerName localhost:80
然后也可以配置自己的发布主页目录:

同时也可以添加php的主页:

如果 /etc/下有hosts文件的话修改:
修改文件: vi /etc/hosts

在后面输入:192.168.8.119 server.example.com
IP地址改成自己的ip就行了。
启动apache服务:
输入命令:/work/installed/apache/bin/apachectl start
开机自动启动:vim etc/rc.local
添加:/work/installed/apache/bin/apachectl start 这里是apache的安装目录里面的配置文件,让它开机自动启动就行啦!
如果不行的话关闭防火墙:iptables -F
输入IP地址可以看到:it works!

但是这种情况必须关闭防火墙,所以需要配置防火墙:
打开iptables的配置文件:vi /etc/sysconfig/iptables
添加一条80端口:(如果自己自定义端口的话,填写自己的端口)
-A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT

另外一篇yum安装Apache以及Apache的配置,仅仅提供参考:http://www.linuxidc.com/Linux/2015-07/119781.htm
让外网访问内网的端口转发 http://www.linuxidc.com/Linux/2015-07/119778.htm
Ubuntu Server 14.04 安装Web服务器(Linux+Apache+MySQL+PHP) http://www.linuxidc.com/Linux/2015-06/119061.htm
Linux下安装配置PHP环境(Apache2) http://www.linuxidc.com/Linux/2015-05/118062.htm
Ubuntu下Apache的Rewrite如何启用 http://www.linuxidc.com/Linux/2010-10/29027.htm
Ubuntu 14.04中Apache 2.2升级到2.4后的几个要点 http://www.linuxidc.com/Linux/2015-01/111914.htm
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置 http://www.linuxidc.com/Linux/2013-06/86250.htm
CentOS 5.9下编译安装LAMP(Apache 2.2.44+MySQL 5.6.10+PHP 5.4.12) http://www.linuxidc.com/Linux/2013-03/80333p3.htm
RedHat 5.4下Web服务器架构之源码构建LAMP环境及应用PHPWind http://www.linuxidc.com/Linux/2012-10/72484p2.htm
LAMP源码环境搭建WEB服务器Linux+Apache+MySQL+PHP http://www.linuxidc.com/Linux/2013-05/84882.htm
Apache 的详细介绍:请点这里
Apache 的下载地址:请点这里
更多RedHat相关信息见RedHat 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=10
本文永久更新链接地址:http://www.linuxidc.com/Linux/2015-07/119783.htm
本文转自 wdy198622 51CTO博客,原文链接:http://blog.51cto.com/weimouren/1727108