• CENTOS 6.5 平台离线安装 Apache2.4


    一、下载Apache 2.4

      http://httpd.apache.org/download.cgi

      http://mirrors.cnnic.cn/apache//httpd/httpd-2.4.10.tar.gz

      解决依赖关系的包

      http://www.eu.apache.org/dist/apr/apr-1.5.1.tar.gz

      http://www.eu.apache.org/dist/apr/apr-util-1.5.4.tar.gz

      http://softlayer-sng.dl.sourceforge.net/project/pcre/pcre/8.36/pcre-8.36.tar.gz

    二、解压

      tar -zxf httpd-2.4.10.tar.gz

      mv httpd-2.4.10.tar.gz Apache

    三、处理依赖关系

      解决apr not found问题  

    1 tar -zxf apr-1.5.1.tar.gz
    2 cd  apr-1.5.1  
    3 ./configure --prefix=/usr/local/apr  
    4 make && make install  

      解决APR-util not found问题

    1 tar -zxf apr-util-1.3.12.tar.gz  
    2 cd apr-util-1.3.12
    3 ./configure --prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config  
    4 make && make install 

      解决pcre问题

    1 tar -zxf pcre-8.36.tar.gz
    2 cd  pcre-8.36
    3 ./configure --prefix=/usr/local/pcre  
    4 make && make install

    四、卸载自带的apache

    停止HTTPD服务,找到安装目了删除安装文件夹,再删除配置文件

    五、编译安装

    ./configure --prefix=/usr/local/apache2 --enable-deflate --enable-expires --enable-headers --enable-modules=most --enable-so --with-mpm=worker --enable-rewrite --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre
    1 make
    2 make install

    五、卸载apache

    源码编译安装时通过--prefix 参数指定了安装目录,先停止所有服务,把安装目录文件夹删除,然后再到/etc配置文件下删除配置文件。

    然后再通过 find 命令确定一下就可以了

    六、添加为服务

    cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd
    vi /etc/rc.d/init.d/httpd
    
    添加(#!/bin/sh下面)
    # chkconfig: 2345 50 90
    # description: Activates/Deactivates Apache Web Server
    
    运行chkconfig把Apache添加到系统的启动服务组里面:
    # chkconfig --add httpd
    # chkconfig httpd on
    
    启动服务
    service httpd start
  • 相关阅读:
    详解package-lock.json的作用
    Cisco计网实验配置总结
    使用Vue制作了一个计算机网络中子网划分部分的简陋计算工具
    Prettier-Code Formater代码格式化插件使用教程
    Node.js中npx命令的使用方法、场景
    从几道题目带你深入理解Event Loop_宏队列_微队列
    简单模拟实现javascript中的call、apply、bind方法
    git使用说明书
    使用闭包模拟实现AMD模块化规范
    if执行后else if即使满足条件也不再执行
  • 原文地址:https://www.cnblogs.com/kelsen/p/4368572.html
Copyright © 2020-2023  润新知