httpd 无法与 mod_fcgid 配合使用

httpd 无法与 mod_fcgid 配合使用

根据此处的答案,centos 没有 mod_fastcgi rpm,但 mod_fcgid 可用于大多数类似目的。 https://stackoverflow.com/questions/12005137/centos-mod-fastcgi

因此,我在 centos7 上使用 yum 安装了 mod_fcgid,并添加

LoadModule fastcgi_module modules/mod_fcgid.so

代替

LoadModule fastcgi_module modules/mod_fastcgi.so

进入httpd.conf

并且 /usr/lib64/httpd/modules/mod_fcgid.so 确实存在。

然而,运行时service httpd start,它会显示:

Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.

journalctl -xe
Mar 17 17:19:15 open-kvm-app63 kill[31039]: kill: cannot find process ""
Mar 17 17:19:15 open-kvm-app63 systemd[1]: httpd.service: control process exited, code=exited status=1
Mar 17 17:19:15 open-kvm-app63 systemd[1]: Failed to start The Apache HTTP Server.

然后我删除了conf文件中的这一行,httpd就可以重新启动了。我想知道为什么httpd无法用该配置启动,谢谢。

相关内容