CentOS 源码安装Apache最新版

Posted sforiz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 源码安装Apache最新版相关的知识,希望对你有一定的参考价值。

       源码安装的优点是可以按需配置库,并可将所有文件放置到同一个目录中,方便管理和查阅;缺点是安装稍麻烦,需要手动生成服务配置文件。

       通过包管理器rpm(rpm -i httpd)安装优点简单,服务直接可用;缺点是版本不是最新的,安装生成的文件分布在不同的目录。

整体流程为下载最新版的Apache及依赖库,先安装依赖库,再安装httpd,最后配置成服务。

1、依赖库的下载及安装apr、apr-util、zlib、openssl。

apr、apr-util下载地址:https://apr.apache.org/download.cgi

zlib下载地址:http://www.zlib.net/

openssl下载地址:https://www.openssl.org/

下载完相关库后,解压并进入库的目录

以当前下载的apr最新版本apr-1.6.3.tar.gz为例:

tar -xzvf apr-1.6.3.tar.gz 
cd apr-1.6.3

依赖库的编译安装方法:

#分别安装apr、apr-util、zlib:
./configure --prefix=/usr/local/apr
make
make install

./configure --prefix=/usr/local/apr-util
make
make install

./configure --prefix=/usr/local/zlib
make
make install

#安装openssl:
./config --prefix=/usr/local/openssl
make
make install

2、Apache的下载及安装

httpd下载地址:https://httpd.apache.org/download.cgi#apache24

httpd编译安装方法,以httpd-2.4.34.tar.gz为例:

tar -xzvf httpd-2.4.34.tar.gz
cd httpd-2.4.34
./configure --prefix=/usr/local/httpd --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib=/usr/local/zlib --with-pcre=/usr/local/pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-ssl=/usr/local/openssl --enable-modules=most --enable-mpms-shared=all 
make
make install

3、生成systemctl服务管理文件,通过sytemctl管理服务

#创建systemctl的服务配置文件
touch /etc/systemd/system/httpd.service

#httpd.service文件内容
[Unit]
Description=Apache HTTP Server

[Service]
Type=forking
ExecStart=/usr/local/httpd/bin/httpd -k start
ExecStop=/usr/local/httpd/bin/httpd -k graceful-stop

[Install]
WantedBy=multi-user.target

 

以上是关于CentOS 源码安装Apache最新版的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7源码安装Apache

centos 7.4 源码安装最新版本的lamp架构及搭建phpMyadmin

CentOS 6.5下源码安装LAMP(Linux+Apache+Mysql+Php)环境

CentOS 6.3 源码编译安装Apache

Linux centos 下apache(httpd)编译安装

centos下apache源码编译安装