linux源码编译安装apache,linux源码安装Apache

本文详细介绍了在Linux环境下编译安装Apache HTTP Server的步骤,包括yum安装依赖,下载并解压源码,配置选项,以及解决编译过程中遇到的库文件找不到、文件格式错误和安装目录问题。此外,还提供了修复这些问题的具体方法,如手动拷贝库文件,修改配置参数以及源码安装依赖库apr和apr-util。
摘要由CSDN通过智能技术生成

1、yum -y install *gcc* make patch perl-DBD* perl-DBl*

libtermcap-devel

2、tar zxvf httpd-2.2.22.tar.gz

3、cd zxvf httpd-2.2.22

4、./configure --prefix=/usr/local/apache2 --enable-rewrite

--enable-so --enable-cgi --enable-auth-digest

5、make

6、make install

make时报错解决方法

1、libtool: link: cannot find the library

`/usr/lib/libexpat.la' or unhandled argument

`/usr/lib/libexpat.la'

解决方法:文件没有被考到指定位置,可以自己拷贝过去。

cp

*/httpd-2.2.22/srclib/apr-util/xml/expat/libexpat.la

/usr/lib64/libexpat.la

2、server/.libs/libmain.a:

could not read symbols: File in wrong format

解决方法:由于系统是64位./confugre需要增加--with-expat=builtin--libdir=/usr/lib64/,然后make clean后再make

3、libtool: install: error:

cannot install `libaprutil-1.la' to a directory not

解决方法:安装arp和arp-util,不要使用yum安装,用源码安装

>wget http://mirror.bjtu.edu.cn/apache//apr/apr-1.4.5.tar.gz

>tar zxvf apr-1.4.5-tar.gz

>cd apr-1.4.5

>./configure --prefix=/usr/local/apr-httpd/

>make

>make

install

>wget

http://mirror.bjtu.edu.cn/apache//apr/apr-util-1.4.1.tar.gz

>tar zxvf apr-util-1.4.1-tar.gz

>cd apr-util-1.4.1

>./configure --prefix=/usr/local/apr-util-httpd/

--with-apr=/usr/local/apr-httpd/

>make

>make

install

然后./configure时增加--with-apr=/usr/local/apr-httpd

--with-apr-util=/usr/local/apr-util-httpd

4、启动Apache提示如下httpd: Could not reliably determine the server's fully

qualified domain name, using localhost.localdomain for

ServerName

解决方法:编辑Apache配置文件httpd.conf文件

将文件中的ServerName设置为localhost

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值