博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux下编译安装apache
阅读量:6833 次
发布时间:2019-06-26

本文共 1811 字,大约阅读时间需要 6 分钟。

在linux(CentOS6.5)上安装Apache,要首先确保以下程序事先安装

apr:The mission of the Apache Portable Runtime (APR) project is to create and maintain

        software libraries that provide a predictable and consistent interface to underlying

        platform-specific implementations.The primary goal is to provide an API to which

        software developers may code and be assured of predictable if not identical behaviour

        regardless of the platform on which their software is built, relieving them of the need

        to code special-case conditions to work around or take advantage of platform-specific

        deficiencies or features.

   参考:

apr-util

pcre:The Perl Compatible Regular Expressions (PCRE) library is a set of functions that implement

          regular expression pattern matching using the same syntax and semantics as Perl 5. PCRE

          has its own native API, in addition to a set of POSIX compatible wrapper functions.

    参考:

 

安装步骤如下:

1、安装apr

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

tar -zxvf apr-1.5.2.tar.gz

cd apr-1.5.2

./configure --prefix=/usr/local/apr/

make

make install

 

2、安装apr-util

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

tar -zxvf apr-util-1.5.4.tar.gz

cd apr-util-1.5.4

./configure --prefix=/usr/local/apr-util/ --with-apr=/usr/local/apr/

make

make install

 

3、安装pcre

:http://sourceforge.net/projects/pcre

unzip -o pcre-8.39.zip

cd pcre-8.39

./configure --prefix=/usr/local/pcre

make

make install

 

4、安装apache

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

tar -zxvf  httpd-2.4.20.tar.gz

cd httpd-2.4.20

./configure  --prefix=/usr/local/apache2.4.20/ --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre

make

make install

 

5、配置

vi /usr/local/apache2.4.20/conf/httpd.conf

 

6、启动、关闭

cd /usr/local/apache2.4.20/bin

./apachectl -k start

./apachectl -k stop

./apachectl -k restart

如果配置文件中Listen定义的是默认的80端口(或1024以下),那么启动Apache将需要root权限以将它绑定在特权端口上。

转载地址:http://qitkl.baihongyu.com/

你可能感兴趣的文章
salt stack 运维工具——自动化(二)
查看>>
Windows系统中的IE浏览器相关的组策略设置
查看>>
南大应届毕业生获得40万年薪的思考
查看>>
centos 6.7 安装kvm
查看>>
cocos2dx基础篇(16)——滚动视图CCScrollView
查看>>
HDU-1869 六度分离
查看>>
很滑稽,网络规划师过了!
查看>>
unix 时间戳转化为 日期格式
查看>>
转DES的dotNet到php实现
查看>>
Python的 if .else.elif语句详解
查看>>
SQL Server 日常维护经典应用
查看>>
rsync服务端和客户端配置自动化配置脚本
查看>>
iptables学习笔记之编译内核和iptables及安装l7proto
查看>>
Python实现IP地址归属地查询
查看>>
东北大学数学建模课程
查看>>
haproxy多进程下对后端服务器进行摘除
查看>>
性能之ab简单使用
查看>>
乐视2016年营收218.3亿元,净利润7.66亿元
查看>>
HAproxy
查看>>
nagios 服务端与客户端监控安装与详细配置,各配置文件详解
查看>>