如何更改 Apache2/mod_perl2 的工作目录

发布于 2024-12-08 12:25:14 字数 176 浏览 1 评论 0原文

我有一个 mod_perl2 模块,它将一些文件写入工作目录。 mod_perl2或Apache2的标准工作目录似乎是“/”。当然,Apache是​​不允许在该目录下写入文件的。

谁能告诉我如何更改工作目录或 mod_perl2 写入的目录?

我在 SLES 10 上使用 Apache2 Prefork。

I have a mod_perl2 module that writes some files to the working directory. The standard working directory of mod_perl2 or Apache2 seems to be "/". Of course, Apache is not allowed to write files in this directory.

Can anyone tell me how I can change the working directory or the directory mod_perl2 writes to?

I use Apache2 Prefork on SLES 10.

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

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

发布评论

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

评论(1

调妓 2024-12-15 12:25:14

您可以在脚本的开头执行 perl chdir(script-dir) 吗?

再一想,当您尝试在更改工作目录可能会破坏线程的线程场景中使用时,这将达不到目的。

您可以尝试RegistryPrefork模块吗?

# httpd.conf
PerlModule ModPerl::RegistryPrefork
Alias /perl-run/ /home/httpd/perl/
<Location /perl-run>
  SetHandler perl-script
  PerlResponseHandler ModPerl::RegistryPrefork
  PerlOptions +ParseHeaders
  Options +ExecCGI
</Location>

Can you do a perl chdir(script-dir) at the beginning of the script ?

On a second thought that would defeat the purpose when you try to use in threaded scenario where changing the working directory might break the threads.

You could try RegistryPrefork module ?

# httpd.conf
PerlModule ModPerl::RegistryPrefork
Alias /perl-run/ /home/httpd/perl/
<Location /perl-run>
  SetHandler perl-script
  PerlResponseHandler ModPerl::RegistryPrefork
  PerlOptions +ParseHeaders
  Options +ExecCGI
</Location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文