Nginx + FastCGI + C抛出502 Bad Gateway

时间:2013-08-19 02:02:36

标签: c nginx fastcgi

我正在尝试使用FASTCgi运行Nginx来通过C app后端处理请求。

我正在使用本教程:http://www.kutukupret.com/2010/08/20/nginx-fastcgi-hello-world-in-c/

我的nginx配置文件:

server
  {
    listen 80;
    listen [::]:80 default ipv6only=on;

    server_name localhost;

    location /
    {
      fastcgi_pass   127.0.0.1:8000;

      fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
      fastcgi_param  SERVER_SOFTWARE    nginx;
      fastcgi_param  QUERY_STRING       $query_string;
      fastcgi_param  REQUEST_METHOD     $request_method;
      fastcgi_param  CONTENT_TYPE       $content_type;
      fastcgi_param  CONTENT_LENGTH     $content_length;
      fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
      fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
      fastcgi_param  REQUEST_URI        $request_uri;
      fastcgi_param  DOCUMENT_URI       $document_uri;
      fastcgi_param  DOCUMENT_ROOT      $document_root;
      fastcgi_param  SERVER_PROTOCOL    $server_protocol;
      fastcgi_param  REMOTE_ADDR        $remote_addr;
      fastcgi_param  REMOTE_PORT        $remote_port;
      fastcgi_param  SERVER_ADDR        $server_addr;
      fastcgi_param  SERVER_PORT        $server_port;
      fastcgi_param  SERVER_NAME        $server_name;
    }
  }

我的C档案“hello.c”:

#include <fcgi_stdio.h>
int main( int argc, char *argv[] )
{
   while( FCGI_Accept() >= 0 ) {
      printf( "Content-Type: text/plainnn" );
      printf( "Hello world in Cn" );
   }
   return 0;
}

我使用FastCGI开发工具包编译C文件,它会生成一个hello二进制文件。

最后我运行这一行:spawn-fcgi -a 127.0.0.1 -p 8000 -n /var/www/example.com/bin/hello

但是当我放入浏览器http://localhost时,它会抛出“502 Bad Gateway”。

有人能给我带来一些启示吗?

4 个答案:

答案 0 :(得分:4)

您的printf行有错误 -

printf( "Content-Type: text/plainnn" );

应该是 -

printf( "Content-Type: text/plain\r\n\r\n" );

注意\r\n\r\n这是HTTP标头和HTTP主体之间的必需分隔符。

答案 1 :(得分:4)

我建议看一下nginx错误日志:

sudo tail -f /var/log/nginx/error.log

我得到了同样的错误,但是使用CppCMS库的C ++服务器和与nginx通信的unix套接字。从错误日志中我可以看到套接字文件的文件权限存在问题:

2014/05/28 14:52:01 [crit] 1818#0: *172 connect() to unix:/tmp/fcgi-socket failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: localhost, request: "GET /server HTTP/1.1", upstream: "fastcgi://unix:/tmp/fcgi-socket:", host: "localhost:8080"

将它们设置为777解决了我的问题。

答案 2 :(得分:0)

看起来你的php5-fpm没有运行你在nginx conf中包含的om 8000端口

fastcgi_pass   127.0.0.1:8000;

您可以使用以下命令验证您的php5-fpm是否在该端口上运行

grep -Hr "8000" /etc/php5/fpm/pool.d

设置php5-fpm on 8000打开以下文件并更改收听8000端口

vim etc/php5/fpm/pool.d/www.conf

现在搜索听取并用以下行替换

listen = 127.0.0.1:8000

保存文件并重启php5-fpm

答案 3 :(得分:0)

我过去遇到过同样的错误。以下配置对我有用。

location / {
    include fastcgi_params;
    fastcgi_pass  localhost:8000;
}