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

apache源码安装

时间:2018-01-15 13:31:33      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:gpo   directory   load   art   下载安装   color   tool   apach   文件   

1.apr和apr-util,下载地址: http://apr.apache.org/download.cgi

yum install gcc
yum install libtool
yum install expat-devel
yum install pcre-devel

cd apr-1.6.3/
./configure --prefix=/opt/apr

出现以下错误

rm: cannot remove libtoolT: No such file or directory

include/arch/unix/apr_private.h is unchange
cp configure ./configure.bak
vi configure
#$RM “$cfgfile”   #注释掉这行
:wq

!./configure --prefix #重新执行上一次相同的命令
make -j 4 #四核运行
make install

tar -zxvf apr-util-1.6.1.tar.bz2 #注意不要下载apr-util-1.6.1.tar.gz这个gz文件会出现安装错误
cd apr-util-1.6.1
./configure --prefix=/opt/apr-util --with-apr=/opt/apr
make && make instal

2. 下载安装pcre【如果以及yum安装则跳过此步】

wget https://ftp.pcre.org/pub/pcre/pcre2-10.30.tar.gz
tar -zxvf pcre2-10.30.tar.gz
cd pcre2-10.30
./configure --prefix=/opt/pcre
make && make installyum -y install pcre-devel

 3.安装apache

./configure --prefix=/opt/apache --with-apr=/opt/apr --with-apr-util=/opt/apr-util --with-include-apr --enable-so
make && make install

4.你会发现apache stop|restart|start都不成功

Could not reliably determine the servers fully qualified domain name

解决办法

vi httpd.conf
#ServerName www.example.com:80 
#修改为
ServerName localhost:80

 

apache源码安装

标签:gpo   directory   load   art   下载安装   color   tool   apach   文件   

原文地址:https://www.cnblogs.com/adtuu/p/8284408.html

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