编译安装Apache

一、准备工作

二、编译安装

三、相关文件路径配置

四、主配置文件常用配置信息详解

 

一、准备工作

 

安装编译环境

yum groupinstall "Development tools"

 

下载所需文件

[root@localhost ~]# mkdir downloads
[root@localhost ~]# cd downloads/
[root@localhost downloads]#wget http://mirror.bit.edu.cn/apache/httpd/httpd-2.4.12.tar.gz
[root@localhost downloads]#wget http://mirror.bit.edu.cn/apache/apr/apr-1.5.2.tar.gz
[root@localhost downloads]#wget http://mirror.bit.edu.cn/apache/apr/apr-util-1.5.4.tar.gz
[root@localhost downloads]# ls
apr-1.5.2.tar.gz  apr-util-1.5.4.tar.gz  httpd-2.4.12.tar.gz

 

解压文件

[root@localhost downloads]# tar -xf httpd-2.4.12.tar.gz 
[root@localhost downloads]# tar -xf apr-1.5.2.tar.gz 
[root@localhost downloads]# tar -xf apr-util-1.5.4.tar.gz

 

二、编译安装

cd到源码文件夹中,可以使用 # ./configure --help,获取编译帮助  

(1)、编译安装apr,apr-util,编译安装httpd2.4需要较新版本apr和apr-util

[root@localhost apr-1.5.2]# cd apr-1.5.2
[root@localhost apr-1.5.2]# ./configure --prefix=/usr/local/apr
[root@localhost apr-1.5.2]# make && make install
[root@localhost apr-1.5.2]# cd /root/downloads/apr-util-1.5.4
[root@localhost apr-util-1.5.4]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
[root@localhost apr-util-1.5.4]# make && make install


下列命令执行完成后

./configure --prefix=/usr/local/apr

结果中提示cannot remove `libtoolT‘: No such file or directory

解决编辑configure,注释掉 $RM "$cfgfile" 即可。


(2)、编译安装httpd

[root@localhost apr-util-1.5.4]# cd /root/downloads/httpd-2.4.12
[root@localhost httpd-2.4.12]# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-so --enable-ssl --enable-cgi --enable-cgid --enable-modules=most --enable-mods-shared=most --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-mpms-shared=all --with-mpm=worker
[root@localhost httpd-2.4.12]# make
提示
configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
解决,下次编译时提前安装
[root@localhost httpd-2.4.12]# yum install pcre-devel -y
再次make,提示
checking whether to enable mod_ssl... configure: error: mod_ssl has been requested but can not be built due to prerequisite failures
解决,需要mod_ssl模块支持,依赖其开发组件
[root@localhost httpd-2.4.12]# yum install -y openssl-devel
再次make,成功,然后安装
[root@localhost httpd-2.4.12]# make install

 

./configure相关选项,--enable-mpms-shared=all,这样event、worker、prefork就会以模块化的方式安装,这里的--with-mpm=worker设定启用worker模块,其他的根据需要在httpd.conf里配置。

--sysconfdir=/etc/httpd  :指定配置文件安装位置
--enable-so              :支持动态共享模块如果没有这个模块PHP将无法与apache结合工作
--enable-ssl             :启用支持ssl
--enable-cgi             :支持cgi
--enable-rewrite         :支持URL重写
 --with-zlib             :压缩库,在互联网上传播时可节约带宽
--with-apr=/usr/local/apr :指定apr路径
--with-apr-util=/usr/local/apr-util :指定apr-util路径
--enable-mpms-shared=all  :支持多道处理模块
--with-mpm=event         :设定默认的模块

 

 

三、相关文件路径配置

 

(1)、将服务程序路径添加到PATH环境变量中

新建/etc/profile.d/apache.sh,添加内容保存退出,source一下

export PATH=$PATH:/usr/local/apache/bin

(2)、添加库文件搜索路径

新建/etc/ld.so.conf.d/apache.conf,添加内容

/etc/ld.so.conf.d/apache.conf

(3)、添加头文件路径

[root@localhost profile.d]# ln -sv /usr/local/apache/include /usr/include/httpd

(4)、添加man手册路径

编辑/etc/man.config文件中的“MANPATH=”

MANPATH /usr/local/apache/share/man

(5)、将服务脚本复制到/etc/init.d目录下

[root@localhost apache]# cp /usr/local/apache/bin/apachectl /etc/init.d/httpd

(6)、有需要可以修改下/etc/init.d/httpd

apachectl=/usr/local/apache/bin/apachectl
httpd=${HTTPD-/usr/local/apache/bin/httpd}
pidfile=${PIDFILE-/usr/local/apache/logs/httpd.pid}

(7)、添加httpd到服务列表,设置开机启动,并启动服务

[root@localhost apache]# chkconfig --add httpd
[root@localhost apache]# chkconfig httpd on
[root@localhost apache]# service httpd start


如果有如下提示

AH00558: httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain. Set the ‘ServerName‘ directive globally to suppress this message

编辑/etc/httpd/httpd.conf,搜索/ServerName,定位到#ServerName www.example.com:80,修改并启用即可,如

ServerName localhost:80

 

完成以上配置,就可以用浏览器测试了,下图中“It works!”显示apache正常工作

技术分享

 

四、主配置文件常用配置信息详解

http://64314491.blog.51cto.com/2784219/1652056

本文出自 “Arvin Lau” 博客,请务必保留此出处http://64314491.blog.51cto.com/2784219/1652948

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。