1

我安装了新版本的 Apache 服务器,我使用了诸如--with-PACKAGE配置 Apache 以使用包的自定义路径之类的选项,但 Apache 已经安装。如何更改包的路径?

4

1 回答 1

0

这样做的标准方法./configure是这样的:

./configure ... --with-PACKAGE=<folder>

例如:

./configure --with-ssl=/usr/local

如果您的包刚刚移动到另一个位置(即它不再位于旧位置),只需重新启动 Apache 即可。如果没有,请检查以下输出ldd

ldd /path/to/httpd

有时/usr/local/lib默认情况下不为链接器启用;您可以将其添加到/etc/ld.so.conf/etc/ld.so.conf.d/- 取决于您的偏好。之后,您必须运行lconfig以提交更改。

于 2012-06-11T02:48:45.703 回答