博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS6.5下源码编译安装httpd2.4.23
阅读量:6334 次
发布时间:2019-06-22

本文共 2454 字,大约阅读时间需要 8 分钟。

    1、安装环境为CentOS6.5,64位

[root@mylinux app]# uname -r2.6.32-504.30.3.el6.x86_64[root@mylinux app]# cat /etc/redhat-release CentOS release 6.5 (Final)[root@mylinux app]#

    2、官网上下载源码包

wget http://mirrors.tuna.tsinghua.edu.cn/apache//httpd/httpd-2.4.23.tar.gz

    3、解压目录,进入进行configure配置操作,指定安装路径

./configure --prefix=/application/httpdchecking for chosen layout... Apachechecking for working mkdir -p... yeschecking for grep that handles long lines and -e... /bin/grepchecking for egrep... /bin/grep -Echecking build system type... x86_64-unknown-linux-gnuchecking host system type... x86_64-unknown-linux-gnuchecking target system type... x86_64-unknown-linux-gnuconfigure: configure: Configuring Apache Portable Runtime library...configure: checking for APR... noconfigure: error: APR not found.  Please read the documentation.

4、当提示没有检测到APR时,我们需要到官网下载最新版apr包,解压安装。

wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gzwget http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gztar -xf apr-1.4.5.tar.gz  cd  apr-1.4.5  ./configure  --prefix=/usr/local/apr  make && make install  tar -xf apr-util-1.5.4.tar.gz  cd apr-util-1.5.4  ./configure --prefix=/usr/local/apr-util  -with-apr=/usr/local/apr/bin/apr-1-config   make && make install

5、再次来安装httpd,此时指定apr

[root@mylinux httpd]# ./configure --prefix=/application/httpd --with-apr=/usr/local/apr/bin/apr-1-config ............Installing header filesmkdir /application/httpd/includeInstalling build system filesmkdir /application/httpd/buildInstalling man pages and online manualmkdir /application/httpd/manmkdir /application/httpd/man/man1mkdir /application/httpd/man/man8mkdir /application/httpd/manualmake[1]: Leaving directory `/application/app/httpd-2.4.23'[root@mylinux httpd]# make && make install

6、启动httpd,测试服务是否启动

[root@mylinux httpd]# /application/httpd/bin/httpd [root@mylinux httpd]# lsof -i:80                   COMMAND  PID   USER   FD   TYPE   DEVICE SIZE/OFF NODE NAMEhttpd   5440   root    3u  IPv4 46088616      0t0  TCP *:http (LISTEN)httpd   5441   daemon    3u  IPv4 46088616      0t0  TCP *:http (LISTEN)httpd   5442   daemon    3u  IPv4 46088616      0t0  TCP *:http (LISTEN)httpd   5443   daemon    3u  IPv4 46088616      0t0  TCP *:http (LISTEN)httpd   5573   daemon    3u  IPv4 46088616      0t0  TCP *:http (LISTEN)

7、添加man帮助文件

vim /etc/man.config 

添加MANPATH /application/httpd/man

此时就可以使用man命令查看httpd的帮助文档了。

本文转自 梦想成大牛 51CTO博客,原文链接:http://blog.51cto.com/yinsuifeng/1844051,如需转载请自行联系原作者
你可能感兴趣的文章
利用Shell开发跳板机功能脚本案例
查看>>
51CTO的技术门诊谈OSSIM
查看>>
六年心路成长 —— 做自己
查看>>
ios电话拨打进行监听电话状态
查看>>
京东基于Spark的风控系统架构实践和技术细节
查看>>
什么时候使用CountDownLatch
查看>>
C#之MemberwiseClone与Clone
查看>>
Android性能优化之利用Rxlifecycle解决RxJava内存泄漏
查看>>
转: 如何为你的开源项目选择一个合适的开源协议?
查看>>
关系型数据库和NOSQL数据库对比
查看>>
Atitit 记录方法调用参数上下文arguments
查看>>
webstorm常用功能FTP,及常用快捷键
查看>>
eclipse html 打开方式
查看>>
[求助] win7 x64 封装 出现 Administrator.xxxxx 的问题
查看>>
人类投资经理再也无法击败电脑的时代终将到来了...
查看>>
一个最小手势库的实现
查看>>
HoloLens开发手记 - Vuforia开发概述 Vuforia development overview
查看>>
Android支付之支付宝封装类
查看>>
<亲测>CentOS中yum安装ffmpeg
查看>>
【分享】马化腾:产品设计与用户体验
查看>>