CentOS 7上编译安装 apache 2.4.25
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7上编译安装 apache 2.4.25相关的知识,希望对你有一定的参考价值。
在CentOS 7上编译安装 apache 2.4.25 源码包,并启动此服务.
配置环境
- Systemctl disable firewalld
- Systemctl stop firewalld
- /etc/selinux/config 关闭selinux
- Sed –i ‘s/SELINUX=enforcing/SELINUX=disable/’ /etc/selinux/config 重启生效(getenforce查看是否生效)
- yum install gcc apr-devel apr-util-devel pcre-devel openssl-devel
- wget http://archive.apache.org/dist/httpd/httpd-2.4.25.tar.bz2 下载apache源码包
- tar –xvf httpd-2.4.25.tar.bz2
- cd httpd-2.4.25.tar.bz2
- ./configure –prefix=/app/httpd --sysconfdir=/etc/httpd –enable-ssl 预编译config配置选择安装路径 配置文件路径
- make && make install 编译安装
- echo ‘PATH=/app/httpd/bin:$PATH‘ > /etc/profile.d/httpd.cdsh 添加全局环境变量执?命令写?PATH
- . /etc/profile.d/httpd.sh 生效新加路径的环境变量
- apachectl start启动apachectl服务
以上是关于CentOS 7上编译安装 apache 2.4.25的主要内容,如果未能解决你的问题,请参考以下文章