热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

Linux系统如何编译安装Apache2.4.3服务器

Linux下解压缩tarzxvfhttpd-2.4.3.tar.gz编译安装cdhttpd-2.4.3./configure提示如下错误信息configure:error:APRnotfound.Pleasereadthedocumentation.解压缩,安装APR1.4.5tarzxvfapr-1.4.5.tar.
Linux下解压缩
tar zxvf httpd-2.4.3.tar.gz
编译安装
cd httpd-2.4.3
./configure
提示如下错误信息
configure: error: APR not found.  Please read the documentation.
解压缩,安装APR1.4.5
tar zxvf apr-1.4.5.tar.gz
cd apr-1.4.5
./configure
make
make install
再次编译
cd ..
cd httpd-2.4.3
./configure
提示如下错误信息
configure: error: APR-util not found.  Please read the documentation.
解压缩,安装APR-util
tar zxvf apr-util-1.4.1.tar.gz
cd apr-util-1.4.1
./configure
提示需要指定--with-apr参数
configure: error: APR could not be located. Please use the --with-apr option.
指定参数编译
./configure --with-apr=/usr/local/apr
make
make install
再次编译apache,成功
cd ..
cd httpd-2.4.3
./configure
make
make install
以下是配置虚拟主机部分的报错信息
错误信息:AH00548: NameVirtualHost has no effect and will be removed in the next release
意思很明显  NameVirtualHost 已经无效,所以配置虚拟主机时不需要设置NameVirtualHost
推荐阅读
author-avatar
湖南美景创意动画设计有限公司
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有