码迷,mamicode.com
首页 > Web开发 > 详细

CentOS 7上编译安装 apache 2.4.25

时间:2019-04-08 10:41:20      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:选择   evel   file   关闭selinux   archive   openssl   ORC   关闭   环境变量   

在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

标签:选择   evel   file   关闭selinux   archive   openssl   ORC   关闭   环境变量   

原文地址:https://blog.51cto.com/13586612/2375088

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!