在 perl 中使用非 perl 守护进程作为 HTTP::Daemon 对象

发布于 2024-10-12 03:56:36 字数 136 浏览 4 评论 0原文

我有一个 apache Web 服务器,在端口 80 上运行 HTTP 守护进程。该 Web 服务器不允许我启动任何其他 http 守护进程。有没有办法可以将已经运行的 apache http 守护进程链接为 perl 中的 HTTP::Daemon 对象?

I have an apache web server running an HTTP daemon on port 80. This web server won't let me start any other http daemons. Is there a way I can link the already-running apache http daemon as an HTTP::Daemon object in perl?

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

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

发布评论

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

评论(2

请叫√我孤独 2024-10-19 03:56:36

事实并非如此,尽管您可以在另一个端口上运行它,然后配置 Apache 将请求代理到其他服务器。

我会编写一个 PSGI 或(如果你想做 voodoo)mod_perl 应用程序。

Not really, although you could run it on another port and then configure Apache to proxy the request to the other server.

I'd write a PSGI or (if you want to do voodoo) mod_perl application instead.

那小子欠揍 2024-10-19 03:56:36

绑定到端口是独占的。当 Apache httpd 已经占用端口 80 时,只需在构造函数中使用参数 LocalPort 告诉 HTTP::Daemon 绑定到不同的端口即可。

如果没有 root 权限,您可以使用 1024 以上的数字,最好49152 到 65535 之间

Binding to a port is exclusive. When the Apache httpd already occupies port 80, simply tell HTTP::Daemon to bind to a different port with the argument LocalPort in the constructor.

Without root privileges, you may use numbers above 1024, preferably between 49152 and 65535.

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