CentOS 7.4下源码安装 Apache HTTP Server(httpd-2.4.35)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7.4下源码安装 Apache HTTP Server(httpd-2.4.35)相关的知识,希望对你有一定的参考价值。
CentOS 7.4下源码安装 Apache HTTP Server(httpd-2.4.35)
- 前提:确保安装了expat-devel, APR包 (apr-1.6.3.tar.gz 和 apr-util-1.6.1.tar.gz);
-
用YUM方式安装expat-devel 和 apr-util-devel
yum -y install expat-devel
yum -y install apr-util-devel -
解压apr-1.6.3.tar.gz后进入该目录下,执行:
./configure --prefix=/usr/local/apr
make
make install - 解压apr-util-1.6.1.tar.gz后进入该目录下,执行:
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make
make install
-
上述必要的组件和包安装完成后,开始进行apache http server 的安装
- 获取Apache源码包 httpd-2.4.35.tar.bz2
wget http://mirrors.shu.edu.cn/apache/httpd/httpd-2.4.35.tar.bz2
- 解压源码包
tar -jxvf httpd-2.4.35.tar.bz2
- 进入解压好的目录执行 configure, 完成configure后,执行make和make install
[[email protected] httpd-2.4.35]# ./configure
--prefix=/opt/httpd-2.4.35
--enable-so
--enable-mods-shared=most
--enable-proxy-http=shared
--enable-rewrite
- 注意:
- 一般在遇到源码方法安装的时候,如果 ./configure 或者 make 不成功,依据error的信息来安装相应的包,如果相应的包也安装了,还是报错的话,确保其该包的devel包也需要安装。
- 在安装好的目录下,进入bin目录,执行 ./httpd -V 查询其安装的具体细节。
./httpd -V
以上是关于CentOS 7.4下源码安装 Apache HTTP Server(httpd-2.4.35)的主要内容,如果未能解决你的问题,请参考以下文章
centos 7.4 源码安装最新版本的lamp架构及搭建phpMyadmin
Linux精华篇—CentOS 7.4下源码编译构建LNMP架构