标签:编译安装httpd2.4
新特性:
(1) MPM支持运行DSO机制;以模块形式按需加载;
(2) 支持eventMPM;
(3) 支持异步读写;
(4) 支持每模块及每个目录分别使用各自的日志级别;
(5) 每请求配置;<If>
(6) 增强版的表达式分析器;
(7) 支持毫秒级的keepalivetimeout;
(8) 基于FQDN的虚拟主机不再需要NameVirtualHost指令;
(9) 支持用户自定义变量;
新模块:
(1) mod_proxy_fcgi
(2) mod_ratelimit
(3) mod_remoteip
修改了一些配置机制:
不再支持使用Order,Deny, Allow来做基于IP的访问控制;
httpd-2.4.9需要较新版本的apr和apr-util,因此需要事先对其进行升级。升级方式有两种,一种是通过源代码编译安装,一种是直接升级rpm包。这里选择使用编译源代码的方式进行。
(1) 编译安装apr
wget http://apache.fayea.com//apr/apr-1.5.2.tar.gz [root@web tools]# tar apr-1.5.2.tar.gz [root@web tools]# cd apr-1.5.2 [root@web apr-1.5.2]# ./configure--prefix=/usr/local/apr [root@webapr-1.5.2]# make && make install
(2) 编译安装apr-util
wget http://apache.fayea.com//apr/apr-util-1.5.4.tar.gz [root@web tools]# tar xfapr-util-1.5.4.tar.gz [root@web tools]# cd apr-util-1.5.4 [root@web apr-util-1.5.4]#./configure--prefix=/usr/local/apr-util --with-apr=/usr/local/apr #make && make install
(3) 安装pcre-devel软件包。
[root@web ~]#yum install -y pcre-devel
首先下载httpd-2.4.9到本地,下载地址wget http://apache.fayea.com/httpd/httpd-2.4.18.tar.gz。而后执行如下命令进行编译安装过程:
[root@web tools]# wget http://apache.fayea.com/httpd/httpd-2.4.18.tar.gz [root@web tools]# tar xf httpd-2.4.18.tar.gz [root@web tools]# cd httpd-2.4.18 # ./configure --prefix=/usr/local/apache--sysconfdir=/etc/httpd24 --enable-so --enable-ssl --enable-cgi--enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr--with-apr-util=/usr/local/apr-util --enable-modules=most--enable-mpms-shared=all --with-mpm=event #make && make install
补充:
(1)构建MPM为静态模块
在全部平台中,MPM都可以构建为静态模块。在构建时选择一种MPM,链接到服务器中。如果要改变MPM,必须重新构建。为了使用指定的MPM,请在执行configure脚本 时,使用参数 --with-mpm=NAME。NAME是指定的MPM名称。编译完成后,可以使用 ./httpd -l 来确定选择的MPM。 此命令会列出编译到服务器程序中的所有模块,包括 MPM。
(2)构建 MPM 为动态模块
在Unix或类似平台中,MPM可以构建为动态模块,与其它动态模块一样在运行时加载。构建 MPM 为动态模块允许通过修改LoadModule指令内容来改变MPM,而不用重新构建服务器程序。在执行configure脚本时,使用--enable-mpms-shared选项即可启用此特性。当给出的参数为all时,所有此平台支持的MPM模块都会被安装。还可以在参数中给出模块列表。默认MPM,可以自动选择或者在执行configure脚本时通过--with-mpm选项来指定,然后出现在生成的服务器配置文件中。编辑LoadModule指令内容可以选择不同的MPM。
编辑/etc/httpd/httpd.conf,添加如下行即可:
PidFile "/var/run/httpd.pid"
[root@web ~]# vim /etc/httpd24/httpd.conf 31 ServerRoot "/usr/local/apache" 32 PidFile "/var/run/httpd.pid"
内容如下:
[root@web ~]# vim /etc/rc.d/init.d/httpd #!/bin/bash # #httpd Startup script for theApache HTTP Server # #chkconfig: - 85 15 #description: Apache is a World Wide Web server. It is used to serve # HTML files and CGI. #processname: httpd #config: /etc/httpd/conf/httpd.conf #config: /etc/sysconfig/httpd #pidfile: /var/run/httpd.pid # Sourcefunction library. . /etc/rc.d/init.d/functions if [ -f /etc/sysconfig/httpd]; then . /etc/sysconfig/httpd fi # Start httpd in the C localeby default. HTTPD_LANG=${HTTPD_LANG-"C"} # This will prevent initlogfrom swallowing up a pass-phrase prompt if # mod_ssl needs a pass-phrasefrom the user. INITLOG_ARGS="" # Set HTTPD=/usr/sbin/httpd.workerin /etc/sysconfig/httpd to use a server # with the thread-based"worker" MPM; BE WARNED that some modules may not # work correctly with athread-based MPM; notably PHP will refuse to start. # Path to the apachectlscript, server binary, and short-form for messages. apachectl=/usr/local/apache/bin/apachectl httpd=${HTTPD-/usr/local/apache/bin/httpd} prog=httpd pidfile=${PIDFILE-/var/run/httpd.pid} lockfile=${LOCKFILE-/var/lock/subsys/httpd} RETVAL=0 start() { echo -n $"Starting $prog: " LANG=$HTTPD_LANG daemon--pidfile=${pidfile} $httpd $OPTIONS RETVAL=$? echo [ $RETVAL = 0 ] && touch${lockfile} return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc -p ${pidfile} -d 10 $httpd RETVAL=$? echo [ $RETVAL = 0 ] && rm -f ${lockfile}${pidfile} } reload() { echo -n $"Reloading $prog: " if ! LANG=$HTTPD_LANG $httpd $OPTIONS -t>&/dev/null; then RETVAL=$? echo $"not reloading due toconfiguration syntax error" failure $"not reloading $httpd dueto configuration syntax error" else killproc -p ${pidfile} $httpd -HUP RETVAL=$? fi echo } # See how we were called. case "$1" in start) start ;; stop) stop ;; status) status -p ${pidfile} $httpd RETVAL=$? ;; restart) stop start ;; condrestart) if [ -f ${pidfile} ] ; then stop start fi ;; reload) reload ;; graceful|help|configtest|fullstatus) $apachectl $@ RETVAL=$? ;; *) echo $"Usage: $prog{start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}" exit 1 esac exit $RETVAL
5、为此脚本赋予执行权限:
[root@webhttpd24]#chmod +x /etc/rc.d/init.d/httpd [root@web httpd24]# ls -l/etc/rc.d/init.d/httpd -rwxr-xr-x1 root root 2348 Mar 18 11:03 /etc/rc.d/init.d/httpd
6、加入服务列表并设置开机启动:
[root@web ~]# chkconfig --add httpd [root@web ~]# chkconfig httpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off [root@web~]# chkconfig httpd on
7、启动httpd服务进行测试:
CentOS防火墙在装好APACHE不能用,解决方法如下:
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/rc.d/init.d/iptables save
/etc/init.d/iptables restart
启动Apache时,可能会提示错误:httpd:Syntax error on line 57 of /etc/httpd/httpd.conf: Cannot load/usr/local/apache2/modules/libphp5.so intoserver:/usr/local/apache2/modules/libphp5.so: cannot restore segment prot afterreloc: Permission denied
解决办法:
(1)关闭SELINUX(不推荐):
vi /etc/selinux/config 将SELINUX=enforcing改成SELINUX=disabled需要重启
这个方法可能会对服务器带来风险。
(2)不关闭SELINUX的方法:
# setenforce 0
# chcon -c -v -R -u system_u -r object_r -t textrel_shlib_t /usr/local/apache2/modules/libphp5.so
# service httpd restart
# setenforce 1
apache安装配置成功!
第二篇:二、 搭建Apache虚拟主机
标签:编译安装httpd2.4
原文地址:http://858004880.blog.51cto.com/7265424/1763163