• CentOS下编译安装Apache


    与Apache 2.2.x相比,Apache 2.4.x提供了很多性能方面的提升,包括支持更大流量、更好地支持云计算、利用更少的内存处理更多的并发等。除此之外,还包括性能提升、内存利用、异步 I/O的支持、动态反向代理设置、与时间驱动的Web服务器相当或更好的性能、更强大的处理资源分配能力,更便捷的缓存支持以及可定制的高速服务器和代理 等。其它的功能还包括更简单的错误分析、更灵活的设置项、更强大的验证机制和更完整的文档。

    Apache服务器项目管理委员会和Apache基金会主席Jim Jagielski表示,他们希望终端用户能真正地看到性能进步,Apache 2.4.x比许多以速度见长的Web服务器更快,例如 Nginx。

    apache-2.2与新出的apache-2.4安装不同的地方在于,2.4版的已经不自带apr库,所以在安装apache-2.4之前,需要下载apr。

    所需源码包

    apr-1.4.6.tar.gz(可从http://apr.apache.org/download.cgi下载到最新版本)
    apr-util-1.4.1.tar.gz(可从http://apr.apache.org/download.cgi下载到最新版本)
    httpd-2.4.6.tar.gz(可从http://www.apache.org/dist/httpd/下载到最新版本)
    pcre-8.33.tar.gz(可从ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/下载到最新版本)

     #安装 apr

    1 cd /usr/local/src/Apache-2.4.6
    2 tar -xzvf ./apr-1.4.6.tar.gz
    3 cd ./apr-1.4.6
    4 mkdir /usr/local/apr
    5 ./configure --prefix=/usr/local/apr
    6 make && make install

    #安装 apr-util

    1 cd /usr/local/src/Apache-2.4.6
    2 tar -xzvf ./apr-util-1.4.1.tar.gz
    3 cd ./apr-util-1.4.1
    4 mkdir /usr/local/apr-util
    5 ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
    6 make && make install

    #安装 pcre

    1 cd /usr/local/src/Apache-2.4.6
    2 tar -xzvf ./pcre-8.33.tar.gz
    3 cd ./pcre-8.33
    4 mkdir /usr/local/pcre
    5 ./configure --prefix=/usr/local/pcre --with-apr=/usr/local/apr/bin/apr-1-config
    6 make && make install

    注意:可能会出现"configure: error: You need a C++ compiler for C++ support.",运行以下命令安装c++编译器,再重新执行configure即可。

    yum install -y gcc gcc-c++

    安装 Apache2.4.6

    1 cd /usr/local/src/Apache-2.4.6
    2 tar -xzvf ./httpd-2.4.6.tar.gz
    3 cd ./httpd-2.4.6
    4 ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre --enable-so --enable-deflate=shared --enable-expires=shared --enable-ssl=shared --enable-headers=shared --enable-rewrite=shared --enable-static-support --with-mpm=prefork
    5 make && make install

    编译参数解释:

    --prefix=/usr/local/apache :指定安装目录
    --with-apr=/usr/local/apr : apr库
    --with-apr-util=/usr/local/apr-util :apr-util库
    --with-pcre=/usr/local/pcre : pcre库
    --enable-so : 允许运行时加载DSO模块(注意:so模块需静态编译)
    --enable-deflate=shared : 将deflate模块编译为DSO
    --enable-expires=shared : 将expires模块编译为DSO
    --enable-ssl=shared : 将ssl模块编译为DSO
    --enable-headers=shared : 将headers模块编译为DSO
    --enable-rewrite=shared : 将rewrite模块编译为DSO
    --enable-static-support : 使用静态连接(默认为动态连接)编译所有二进制支持程序
    --with-mpm=prefork : 使用prefork形式的mpm

    更详细的编译参数解释:http://lamp.linux.gov.cn/Apache/ApacheMenu/programs/configure.html

    安装尚未成功,还需进行以下的操作:

     1 cp ./build/rpm/httpd.init  /etc/init.d/httpd  #使用init脚本管理httpd
     2 chmod 755 /etc/init.d/httpd  #增加执行权限
     3 chkconfig --add httpd  #添加httpd到服务项
     4 chkconfig --level 2345 httpd on  #设置开机启动
     5 chkconfig --list httpd  #查看是否设置成功
     6 
     7 mv /etc/httpd  /etc/httpd_old  #移走旧的httpd文件夹
     8 ln -s /usr/local/apache  /etc/httpd  #建立httpd的软链接,
     9 #到时候,Apache的配置文件路径为 /etc/httpd/conf/httpd.conf,其实真实路径为 /usr/local/apache/conf/httpd.conf
    10 
    11 ln -sf /usr/local/apache/bin/httpd  /usr/sbin/httpd  #设置软链接以适应init脚本
    12 ln -sf /usr/local/apache/bin/apachectl  /usr/sbin/apachectl
    13 
    14 rm -rf /var/log/httpd/
    15 ln -s /usr/local/apache/logs  /var/log/httpd
    16 
    17 groupadd apache #添加apache用户组及用户
    18 useradd -g apache -s /usr/sbin/nologin apache
    19 chown -R apache:apache /usr/local/apache

    修改init命令文件

    主要是修改文件中pidfile参数的值(进程文件指向)

    1 vim /etc/init.d/httpd

    把其中的

    1 pidfile=${PIDFILE-/var/run/${prog}.pid}

    修改为

    1 pidfile=${PIDFILE-/usr/local/apache/logs/${prog}.pid}

    配置防火墙,开启80端口

    1 vim /etc/sysconfig/iptables

    #添加如下规则到22端口这条规则的下面即可

    1 -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

    #重启防火墙

    1 service iptables restart # 或 /etc/init.d/iptables restart

    启动Apache

    1 service httpd start # 或 /etc/init.d/httpd start

    安装过程中可能会出现以下问题:

    编译Apache时出现:

    1 checking whether to enable mod_ssl... configure: error: mod_ssl has been requested but can not be built due to prerequisite failures

    解决办法:

    1 yum install openssl-devel

    启动Apache时出现:

    1 httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

    解决办法:

    #vi /etc/httpd/conf/httpd.conf (在这里/etc/httpd是我安装apache的目录)

    找到#ServerName www.example.com:80   把#去掉,再重启apache即可没事了。

  • 相关阅读:
    C# 读写ini文件
    How to Create DLL(Dynamic link library)
    运算符优先级
    汇编指令:lea
    AT&T汇编语法与x86语法基本区别
    栈的生长方向理解
    Mac Mojave 10.14.5安装python tesserocr
    一台电脑发布多个网站
    局域网内电脑之间互相访问网站
    判断两个对象是否相等——javascript实现
  • 原文地址:https://www.cnblogs.com/mityaya/p/4435501.html
Copyright © 2020-2023  润新知