RHEL6-http源码包编译

简介:安装http源码包出现有各种问题,以及各种依赖包,和安装包

  1. 准备

RHEL6-http源码包编译_第1张图片

RHEL6-http源码包编译_第2张图片

  1. Apr安装

RHEL6-http源码包编译_第3张图片

RHEL6-http源码包编译_第4张图片

3.安装apr-util

#./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config

#make

这里会报错

原因是没有安装expat-devel

#yum -y install expat-devel

#make

#make install

RHEL6-http源码包编译_第5张图片

RHEL6-http源码包编译_第6张图片

4.安装pcre

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

这时候会报错,提示没有c++环境

#yum -y install gcc-c++

RHEL6-http源码包编译_第7张图片

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

#make

#make install

RHEL6-http源码包编译_第8张图片

5.安装http

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

RHEL6-http源码包编译_第9张图片

#make

RHEL6-http源码包编译_第10张图片

#make install

RHEL6-http源码包编译_第11张图片

你可能感兴趣的:(RedHat)