Centos6.6编译安装apache2.4.9

本系列教程感谢linux大神马哥提供指导:

Centos6.7编译安装httpd 2.4.9 + mysql-5.5.33 + php-5.4.26 (LAMP)

一、编译安装apache2.4.9

httpd-2.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的访问控制;

1、解决依赖关系

httpd-2.4.9需要较新版本的apr和apr-util,因此需要事先对其进行升级。升级方式有两种,一种是通过源代码编译安装,一种是直接升级rpm包。这里选择使用编译源代码的方式进行。

(1) 编译安装apr

wget http://apache.fayea.com//apr/apr-1.5.2.tar.gz
[[email protected] tools]# tar apr-1.5.2.tar.gz
[[email protected] tools]# cd apr-1.5.2
[[email protected] apr-1.5.2]# ./configure--prefix=/usr/local/apr
[[email protected]]# make && make install

(2) 编译安装apr-util

wget http://apache.fayea.com//apr/apr-util-1.5.4.tar.gz
[[email protected] tools]# tar xfapr-util-1.5.4.tar.gz
[[email protected] tools]# cd apr-util-1.5.4
[[email protected] apr-util-1.5.4]#./configure--prefix=/usr/local/apr-util --with-apr=/usr/local/apr
#make && make install

(3) 安装pcre-devel软件包。

[[email protected] ~]#yum install -y pcre-devel

2、编译安装httpd-2.4.9

首先下载httpd-2.4.9到本地,下载地址wget http://apache.fayea.com/httpd/httpd-2.4.18.tar.gz。而后执行如下命令进行编译安装过程:

[[email protected] tools]# wget http://apache.fayea.com/httpd/httpd-2.4.18.tar.gz
[[email protected] tools]# tar xf httpd-2.4.18.tar.gz
[[email protected] 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。

3、修改httpd的主配置文件,设置其Pid文件的路径

编辑/etc/httpd/httpd.conf,添加如下行即可:

PidFile  "/var/run/httpd.pid"

[[email protected] ~]# vim /etc/httpd24/httpd.conf
 31 ServerRoot "/usr/local/apache"
 32 PidFile  "/var/run/httpd.pid"

4、提供SysV服务脚本/etc/rc.d/init.d/httpd

内容如下:

[[email protected] ~]# 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 [email protected]
  RETVAL=$?
  ;;
  *)
  echo $"Usage: $prog{start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"
  exit 1
esac
 
exit $RETVAL

5、为此脚本赋予执行权限:

[[email protected]]#chmod +x /etc/rc.d/init.d/httpd
[[email protected] 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、加入服务列表并设置开机启动:

[[email protected] ~]# chkconfig --add httpd
[[email protected] ~]# chkconfig
httpd            0:off 1:off 2:off 3:off 4:off 5:off 6:off
[[email protected]~]# chkconfig httpd on

7、启动httpd服务进行测试:

8、防火墙设置:

CentOS防火墙在装好APACHE不能用,解决方法如下:

(1) 插入新的防火墙规则,开通80端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

(2) 保存规则:

/etc/rc.d/init.d/iptables save

(3) 重启防火墙服务

/etc/init.d/iptables restart

9、Selinux的设置:

启动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

10、浏览器访问服务器地址:

apache安装配置成功!

第二篇:二、 搭建Apache虚拟主机

时间: 2024-11-20 09:56:23

Centos6.6编译安装apache2.4.9的相关文章

CentOS6.7上编译安装Apache2.2和Apache2.4

目录 一.Apache的工作模式 1.简介 2.比较 二.CentOS6.x上安装Apache2.2 (一)rpm安装apache (二)编译安装apache 1.安装编译环境 2.下载解压依赖包 3.安装apache 4.测试apache 5.查看apache相关信息 6.配置程序运行环境 7.导出库文件 8.导出头文件 9.导出手册 10.将Apache添加到启动服务 (三) 编译安装Apache2.4 1.编译安装apr 2.编译安装apr-util 3.安装需要的依赖包 4.编译安装Ap

CentOS6.3 编译安装LAMP(2):编译安装 Apache2.2.25

所需源码包: /usr/local/src/Apache-2.2.25/httpd-2.2.25.tar.gz 编译安装 Apache2.2.25 #切换到源码目录 cd /usr/local/src/Apache-2.2.25 tar -xzvf ./httpd-2.2.25.tar.gz cd ./httpd-2.2.25 #生成configure ./configure --prefix=/usr/local/apache --with-included-apr --enable-so -

CentOS6.3 编译安装LAMP(3):编译安装 MySQL5.5.25

所需源码包: /usr/local/src/MySQL-5.5.25/cmake-2.8.8.tar.gz /usr/local/src/MySQL-5.5.25/mysql-5.5.25.tar.gz 1.安装cmake  MySQL从5.5版本开始,通过./configure进行编译配置方式已经被取消,取而代之的是cmake工具. 因此,我们首先要在系统中源码编译安装cmake工具. #编译安装 cd /usr/local/src/MySQL-5.5.25/cmake-2.8.8 ./con

CentOS6.3 编译安装LAMP(1):准备工作

卸载yum或rpm安装的amp软件 #在编译安装lamp之前,首先先卸载已存在的rpm包. rpm -e httpd rpm -e mysql rpm -e php yum -y remove httpd yum -y remove mysql-server mysql yum -y remove php yum -y remove php-mysql yum -y install yum-fastestmirror 禁用SeLinux #selinux可能会致使编译安装失败,我们先禁用它. s

CentOS6.3 编译安装LAMP(4):编译安装 PHP5.2.17

所需源码包: /usr/local/src/PHP-5.2.17/libmcrypt-2.5.8.tar.gz /usr/local/src/PHP-5.2.17/mhash-0.9.9.9.tar.gz /usr/local/src/PHP-5.2.17/mcrypt-2.6.8.tar.gz /usr/local/src/PHP-5.2.17/libiconv-1.14.tar.gz /usr/local/src/PHP-5.2.17/php-5.2.17.tar.gz 在编译PHP之前,先

CentOS6.5下安装apache2.2和PHP 5.5.28

CentOS6.5下安装apache2.2 1. 准备程序 :httpd-2.2.27.tar.gz 下载地址:http://httpd.apache.org/download.cgi#apache22apr-1.5.1.tar.gz 下载地址:http://apache.spd.co.il/apr/apr-util-1.5.3.tar.gz下载地址:http://apache.spd.co.il/apr/ 安装apr-1.5.1.tar.gz 1.Copy root文件夹2. Cd /root

CentOS6下编译安装Python2.7.6方法

关于在CentOS6下编译安装Python2.7.6的方法非常的多了,小编以前也介绍过相关的文章了,下面一聚教程小编再来为各位介绍一下吧,希望文章能帮助到各位. CentOS下面Python在升级到2.7.6的时候,没有找到安装包直接安装,只能通过源代码编译的方式来安装Python 2.7.6版本.这篇是编译和安装Python2.7.6的过程记录. CentOS系统中安装了development tools.要编译安装Python,执行下面代码:  代码如下 复制代码 $ pushd /usr/

centos6.7编译安装mysql5.7.17

centos6.7编译安装mysql5.7.17 2017-03-24 09:57:15 提示:mysql5.7.17和之前5.56以前的版本安装不一样,需要用cmake 另外,看本文档的mysql编译前我说一点,第一次一定要大概的看完整个过程,不能一直跟着文档做,否则后面容易遇到问题.比如编译完会特别占用磁盘空间,万一之前分配的空间不够,那样就会丢失很多重要文件导致失败. 安装前工作: 1,从官方网址下载MySQL5.7.17源码包 http://dev.MySQL.com/downloads

Centos6.7 编译安装 Apache PHP

Centos6.7 编译安装 Apache PHP ##### Apache 编译安装 #### [[email protected] ~]# yum install gcc gcc-c++ make wget [[email protected] ~]# yum install zlib-devel openssl-devel [[email protected] ~]# yum install -y perl perl-devel 1) apr [[email protected] src]