关于mod-perl的问题

发布于 2022-07-22 14:08:06 字数 390 浏览 5 评论 1

#cd /usr/local/mod_perl-1.29
#perl Makefile.PL APACHE_SRC=../apache_1.3.29/src DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 APACHE_PREFIX=/www APACI_ARGS=’--prefix=/www --with-layout=Apache’

#cd /usr/local/apache_1.3.29
#./configure ––prefix=/www––activate-module=src/modules/perl/libperl.a ––enable-module=so
哪位高手能告诉我这几句话是在做什么?
mod-perl是做什么用的?
谢谢了.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琴流音 2022-07-22 21:05:36

#perl Makefile.PL APACHE_SRC=../apache_1.3.29/src DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 APACHE_PREFIX=/www APACI_ARGS=’--prefix=/www --with-layout=Apache’

和configure相同,是初始配置参数
设置apache1329的src的路径

To avoid this prompt and default to the first apache source tree found
to configure and build against, use the following command:

  perl Makefile.PL DO_HTTPD=1

APACHE_PREFIX=/www  路径

apache的args所在路径的定位
======================================================
#./configure ––prefix=/www––activate-module=src/modules/perl/libperl.a ––enable-module=so

配置apache的"安装到"的路径,和openssl有区别 , --activate-module 设置添加的额外模块 --enable-module=so 如果没记错是开启所有模块,即所有模块省略#

=======================================================
mod-perl是做什么用的?
自己查google

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文