连接到上游时 connect() 失败(111:连接被拒绝)

连接到上游时 connect() 失败(111:连接被拒绝)

502 Gateway我在访问目录 ( ) 中的 PHP 文件时遇到错误http://example.com/dev/index.php。日志仅显示以下内容:

2011/09/30 23:47:54 [error] 31160#0: *35 connect() failed (111: Connection refused) while connecting to upstream, client: xx.xx.xx.xx, server: domain.com, request: "GET /dev/ HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "domain.com"

我以前从未遇到过这种情况。这种502 Gateway错误该如何解决?

这是nginx.conf

user www-data;
worker_processes 4;
pid /var/run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

答案1

听起来你还没有启动和配置 Nginx 的后端。启动并在上下文中php-fpm添加以下内容:nginx.confhttp

server {
    listen 127.0.0.1;
    server_name localhost;

    error_log /var/log/nginx/localhost.error_log info;

    root /var/www/localhost/htdocs;

    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;

        fastcgi_intercept_errors        on;
        error_page 404 /error/404.php;
    }
}

答案2

此答案仅针对那些遇到以下错误的人:

连接到上游时 connect() 失败(111:连接被拒绝),客户端...fastcgi://[::1]:9000

重写 nginx 配置以使用 ip,而不是 dns。例如,127.0.0.1而不是localhost,或者从 /etc/hosts 中删除 ipv6 别名。

答案3

对监听端口 5000 的 Node 服务器的代理请求也遇到了同样的问题。请求200 OK有时会502 Bad Gateway随机产生。NGINX 显示错误:

connect() failed (111: Connection refused) while connecting to upstream, client: ..., server: ...

我的解决方案:

  1. 将节点 HTTP 服务器设置为严格针对 ipv4,包括 localhost 作为主机:server.listen(5000, 'localhost');
  2. 删除了所有 ipv6 listen 指令(listen [::]:80;listen [::]:443 ssl default_server;)。
  3. 已将位置块 proxy_pass 更改为使用 IP:(proxy_pass http://127.0.0.1:5000不是proxy_pass http://localhost:5000)。

希望这对某人有帮助。

答案4

在我的例子中,错误是 php5.6-fpm 服务的 error_log 文件位置不正确,因此php-fpm 服务无法启动nginx 无法连接。您可以在中找到它/etc/php/5.6/fpm/php.ini(您可以将 5.6 替换为您正在运行的版本)。

相关内容