php5-fpm python 监控,使用fcgiwrap的nginx上的Python – 上游从上游读取响应头时过早关闭FastCGI stdout...

我试图在我的nginx Web服务器上运行一个hello world

python脚本.当我尝试加载URI时,我收到“502 Bad Gateway”错误:

http://sub.dom.com/py-bin/hello.py

这是我的nginx错误日志中的错误.

2013/04/27 13:54:14 [error] 14158#0: *1 upstream closed prematurely FastCGI stdout while reading response header from upstream,

client: w.x.y.z, server: sub.dom.com, request: "GET /py-bin/hello.py HTTP/1.1", upstream: "fastcgi://unix:/var/run/fcgiwrap.socket:", host: "sub.dom.com"

py-bin的位置:/home/cluber/www/sub.dom.com/py-bin

public_html的位置:/home/cluber/www/sub.dom.com/public_html

hello.py的位置:/home/cluber/www/sub.dom.com/py-bin/hello.py(chmod 777)

fastcgi_params的位置:/ etc / nginx / fastcgi_params

nginx配置的内容

server {

server_name sub.dom.com;

access_log /home/cluber/www/sub.dom.com/logs/access.log;

error_log /home/cluber/www/sub.dom.com/logs/error.log;

root /home/cluber/www/sub.dom.com/public_html;

index index.html index.html index.php /index.php;

location ~ \.php${

fastcgi_split_path_info ^(.+\.php)(/.+)$;

fastcgi_pass unix:/var/run/php5-fpm.sock;

fastcgi_index index.php;

include fastcgi_params;

}

location ~ ^/py-bin/.*\.py${

gzip off;

root /home/cluber/www/sub.dom.com;

fastcgi_pass unix:/var/run/fcgiwrap.socket;

fastcgi_index index.py;

include fastcgi_params;

}

}

fastcgi_params的内容

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 $request_filename;

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 GATEWAY_INTERFACE CGI/1.1;

fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;

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;

fastcgi_param HTTPS $https;

# PHP only, required if PHP was built with --enable-force-cgi-redirect

fastcgi_param REDIRECT_STATUS 200;

袜子的位置:

ls /var/run | grep sock

fcgiwrap.socket

php5-fpm.sock

hello.py的内容

#!/usr/bin/python

print "Content-type: text/html\n\n"

print "Hello world"

请注意PHP工作正常.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值