将 Apache 2.2 作为单个 httpd.exe 运行以进行调试
我在 Windows 上以控制台模式运行 Apache 2.2 来测试我正在编写的 apache 模块。 默认情况下,父 httpd.exe 启动(使用一个线程),它启动具有多个工作线程的子 httpd.exe。
现在我每次都必须将调试器附加到子进程才能调试我的模块。
有没有办法将 Apache 配置为从单个 httpd.exe 运行? (如果我没记错的话,就像过去的美好时光一样)我一直在搜索文档,但除了每个线程或进程的请求句柄数量的限制之外没有找到任何其他内容......
I'm running Apache 2.2 in console mode on Windows to test an apache module I'm writing.
By default, a parent httpd.exe is started (with one thread), which starts a child httpd.exe with a number of worker threads.
Now I have to attach the debugger to the child process each time to be able to debug my module.
Is there a way to configure Apache to run from a single httpd.exe? (Like good old days if I remember correctly) I've been searching the docs, but don't find anything else than limitations of the number of requests handles per thread or process...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要使用 httpd.exe -X 它将 apache 作为单个进程运行,而不返回终端/cmd 提示控制。
You might want to use
httpd.exe -X
which will run apache as a single process without giving back terminal/cmd prompt control.