Fedora Linux下解决apache配置出错问题
2008-05-30 12:08:41 来源:WEB开发网在fedora8上安装apache
>tar -zxvf httpd-2.2.8.tar.gz
>cd httpd-2.2.8
>./configure --PRefix=/usr/local/httpd
>make
make的时候出现下面错误,以前配没遇到过这问题
libtool: link: `passwd/apr_getpass.lo' is not a valid libtool object
make[3]: *** [libapr-1.la] 错误 1
make[3]: Leaving directory `/root/httpd-2.2.8/srclib/apr'
make[2]: *** [all-recursive] 错误 1
make[2]: Leaving directory `/root/httpd-2.2.8/srclib/apr'
make[1]: *** [all-recursive] 错误 1
make[1]: Leaving directory `/root/httpd-2.2.8/srclib'
make: *** [all-recursive] 错误 1
后来发现原来是缺少 apr & apr-util.
去http://apr.apache.org/ 下来最新的apr-1.2.12-tar.gz和apr-util-1.2.12.tar.gz
>tar -zxvf apr-1.2.12-tar.gz
>cd apr-1.2.12
>./configure --prefix=/usr/local/apr-httpd/
>make & make install
>tar -zxvf apr-util-1.2.12-tar.gz
>cd apr-util-1.2.12
>./configure --prefix=/usr/local/apr-util-httpd/ --with-apr=/usr/local/apr-httpd/
>make & make install
回到apache编译目录
>./configure --prefix=/usr/local/httpd/ --with-apr=/usr/local/apr-httpd/ --with-apr-util=/usr/local/apr-util-httpd/
>make
>make install
问题解决。
- ››linux下两台服务器文件实时同步方案设计和实现
- ››Linux文件描述符中的close on exec标志位
- ››Linux下管道使用的一些限制
- ››Linux 误删/usr/bin 解决方法
- ››linux 添加新用户并赋予sudo执行权限
- ››linux常用软件安装方法
- ››Linux的分区已经被你从Windows中删除,系统启动后...
- ››解决flash 中无法导出swf文件的方法
- ››linux enable命令大全
- ››Linux实现基于Loopback的NVI(NAT Virtual Interfa...
- ››Linux远程访问windows时,出现"连接被对端重...
- ››linux中使用head命令和tail命令查看文件中的指定行...
更多精彩
赞助商链接