网上很多人都写过类似的文章,之前安装过一次,这次第二次安装还是总结一下
依赖1:apr
下载地址:http://apr.apache.org/download.cgi
解压缩:tar -jxvf apr-1.5.2.tar.bz2
./configure --prefix=/usr/share/apr
make
make install
安装完成以后就可以在/usr/share目录下找到对应的apr目录
依赖2:apr-util
下载地址:http://apr.apache.org/download.cgi
解压缩:tar -jxvf apr-util-1.5.4.tar.bz2
./configure --prefix=/usr/share/apr-util --with-apr=/usr/share/apr
make
make install
安装完成以后就可以在/usr/share目录下找到对应的apr-util目录
依赖3:pcre
下载地址:http://pcre.org/(http://sourceforge.net/projects/pcre/files/)
解压缩:tar -jxvf pcre-8.37.tar.bz2
./configure --prefix=/usr/share/pcre
由于我装的时候都是同一个版本的,所以都会遇到相同的问题:You need a C++ compiler for C++ support
在网上通过这句话可以找到了好几个解决方案,我这里用的成功的方法是yum install -y gcc gcc-c++
make
make install
安装:
下载地址:http://httpd.apache.org/
解压缩:tar -jxvf httpd-2.4.12.tar.bz2
./configure --prefix=/usr/share/apache --with-apr=/usr/share/apr --with-apr-util=/usr/share/apr-util/ --with-pcre=/usr/share/pcre/
make
make install
配置:
直接启动是会出现问题的,需要修改配置文件
cd cd /usr/share/apache/
看你安装时候的用户权限了,我用的root,所以直接编辑
vim conf/httpd.conf
/ServerName可以直接找到
#ServerName www.example.com:80改为ServerName localhost:80
启动:
./bin/apachectl start
打开网页输入对应ip或者localhost,如果跳出It works!说明安装已经成功了
备注:
/usr/share/这个目录可以自己指定,方便自己查找就可以了