zoukankan      html  css  js  c++  java
  • ubuntu 手动apache记录

    1.下载apache

    tar -xvzf  httpd.xx 解压

    2.下载安装pcre

    Download PCRE from PCRE.org

    解压,进入文件夹中

    ./configure --prefix=/usr/local/pcre
    
    有可能会提示configure: error: You need a C++ compiler for C++ support.
    那么就安装c++组件
    age-get install g++
    make
    make install

    3.下载apr, apr-util

      进入apache文件夹中的srclib中

    wget http://mirrors.axint.net/apache/apr/apr-1.4.6.tar.gz
    
    tar -xvzf apr-1.4.6.tar.gz
    
    cd apr-1.4.6/
    
    ./configure  --prefix=/usr/local/pcre

    make

    make install

    # APR Utils
    wget http://mirrors.axint.net/apache//apr/apr-util-1.4.1.tar.gz
    tar -xvzf apr-util-1.4.1.tar.gz
    cd apr-util-1.4.1
    ./configure --with-apr=/usr/local/apr
    make
    make install

    4.进入apache文件夹中
    ./configure --prefix=/usr/local/apache2  --with-apr=/usr/local/apr  --with-apr-util=/usr/local/apr-util/   --with-pcre=/usr/local/pcre

    make
    make install

    5.进入/usr/local/apache2/conf/httpd.conf
    搜索ServerName
    添加 ServerName localhost:80

    完成
  • 相关阅读:
    C#操作json
    sql server 2008 身份验证失败 18456
    MD5密码加密
    oracle dg 报错提示 涉及硬盘错误
    Rhel6.5 相关操作
    Centos6.9部署vnc
    Sqluldr2 libclntsh.so报错处理
    时钟服务器同步方法
    windows copy 和xcopy
    Linux 本地repo配置
  • 原文地址:https://www.cnblogs.com/hanyouchun/p/4172877.html
Copyright © 2011-2022 走看看