在 perl 中使用非 perl 守护进程作为 HTTP::Daemon 对象
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实并非如此,尽管您可以在另一个端口上运行它,然后配置 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.
绑定到端口是独占的。当 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.