CentOS 7 apache2 httpd + mod_fastcgi 安装无法

CentOS 7 apache2 httpd + mod_fastcgi 安装无法

有人尝试过在 CentOS7/httpd 上安装 mod_fastcgi 吗?

由于它不在 epel 或 fusion repos 中,我尝试了 el6 rpm,但没有工作(httpd 说:无法将 modules/mod_fastcgi.so 加载到服务器:/etc/httpd/modules/mod_fastcgi.so:未定义符号:unixd_config)。

从源代码编译 mod_fastcgi (# make top_dir=/usr/lib64/httpd) 也失败了,出现了数千个如下错误:

/usr/include/httpd/http_config.h:574:32: error: request for member 'connection' in something not a structure or union

mod_fastcgi.c:2881:5: warning: passing argument 6 of 'ap_log_rerror_' from incompatible pointer type [enabled by default]
     ap_log_rerror(FCGI_LOG_ERR_NOERRNO, r, "FastCGI: access denied: %s", r->uri);

SELINUX 已被禁用(以排除“拒绝访问”的原因)

我还安装了编译 fastcgi 的要求:httpd-devel libtool make gcc apr apr-devel。

由于我认为 mod_fastcgi 是连接 PHP-FPM 的常用方式,我真的无法想象 fastcgi 不适用于 CentOS 7,所以我认为我做错了什么。

不幸的是,mod_proxy 对套接字连接的支持从 httpd 2.4.10 开始,而 CentOS 7 repos 只有 2.4.6,而且我想避免编译 apache2(并且真的想使用 fastcgi 并继续使用 fpm-sockets)

我是否错过了任何淘汰 fastcgi 的东西?如果没有,我希望 mod-fastcgi 能够成功编译。有谁更擅长编译,可以在默认的 centos7 vm 上测试一下吗?

答案1

对于 Apache 2.4,要使用的官方模块是修改代理服务器教程) 而不是古老的 mod_fastcgi。该模块以及 mod_fcgid 都是第三方模块。

当然还有 nginx。

相关内容