欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux安装Apache常见报错(二)

程序员文章站 2022-09-11 12:39:22
配置Apache提示报错configure error: APR could not be located. Please use the --with-apr option. 解决办法: ./configure --prefix=usr/local/apache/ --with-apr=/usr/ ......

配置Apache提示报错configure error: APR could not be located. Please use the --with-apr option.

Linux安装Apache常见报错(二)

解决办法:

./configure --prefix=usr/local/apache/ --with-apr=/usr/local/apr-httpd/ --with-apr-util=/usr/local/apr-util-httpd/

加上apr的安装路径即可。