Skip to content

xhttp+nginx正常工作一段时间后断联,手动重启xray或nginx其中一方即恢复正常,回退2024.12.31版本一切正常 #4373

Description

@emiyalee1005

完整性要求

  • 我保证阅读了文档,了解所有我编写的配置文件项的含义,而不是大量堆砌看似有用的选项或默认值。
  • 我提供了完整的配置文件和日志,而不是出于自己的判断只给出截取的部分。
  • 我搜索了 issues, 没有发现已提出的类似问题。
  • 问题在 Release 最新的版本上可以成功复现

描述

如题,实验了有半个月,配置是基于https://github.com/XTLS/Xray-examples/tree/main/VLESS-XHTTP3-Nginx
100%排除客户端到服务端的网络问题,切回2024.12.31版本可以一直正常使用,2025.01.30和2025.1.1版本在断联时在服务端日志会看到大量version invalid之类的信息,但是只要重启xray或nginx任意一方立刻恢复正常。
个人推测是新版本某个改动导致nginx和xray之间的socket通信出了问题?

服务器:oracle arm64
系统:ubuntu 24
nginx:1.26.3

重现方式

2025.1.1及以后的版本,使用一段时间后,最短的十几分钟后就出现断联,随后只要重启xray亦或nginx立刻恢复正常

客户端配置

Details

{
  "log": {
    "loglevel": "debug"
  },
  "inbounds": [
    {
      "listen": "127.0.0.1",
      "port": 10814,
      "protocol": "socks",
      "settings": {
        "udp": true
      },
      "sniffing": {
        "enabled": true,
        "destOverride": [
          "fakedns+others"
        ],
        "routeOnly": true
      }
    }
  ],
  "outbounds": [
    {
      "protocol": "vless",
      "settings": {
        "vnext": [
          {
            "address": "**********",
            "port": 443,
            "users": [
              {
                "encryption": "none",
                "id": "********************"
              }
            ]
          }
        ]
      },
      "streamSettings": {
        "network": "xhttp",
        "xhttpSettings": {
          "path": "/abc",
          "mode": "stream-one"
        },
        "security": "tls",
        "tlsSettings": {
          "serverName": "***************",
          "alpn": [
            "h3",
            "h2",
            "h1"
          ]
        }
      }
    },
    {
      "protocol": "socks",
      "settings": {
        "servers": [
          {
            "address": "********************",
            "port": 34218,
            "users": [
              {
                "user": "**************",
                "pass": "********************"
              }
            ]
          }
        ]
      },
      "streamSettings": {
        "network": "tcp",
        "security": "none"
      },
      "tag": "gn"
    },
    {
      "protocol": "freedom",
      "tag": "Direct",
      "settings": {
        "domainStrategy": "UseIP"
      }
    },
    {
      "protocol": "dns",
      "tag": "Dns-Out",
      "settings": {
        "nonIPQuery": "skip"
      }
    }
  ],
  "dns": {
    "servers": [
      "https://8.8.8.8/dns-query",
      "https://1.1.1.1/dns-query",
      {
        "address": "https+local://223.6.6.6/dns-query",
        "domains": [
          "geosite:cn"
        ]
      },
      {
        "address": "https+local://120.53.53.53/dns-query",
        "domains": [
          "geosite:cn"
        ]
      },
      "localhost"
    ]
  },
  "routing": {
    "domainStrategy": "IPIfNonMatch",
    "rules": [
      {
        "ip": [
          "***************"
        ],
        "outboundTag": "gn"
      },
      {
        "domain": [
          "***************"
        ],
        "outboundTag": "gn"
      },
      {
        "domain": [
          "geosite:cn"
        ],
        "outboundTag": "Direct"
      },
      {
        "ip": [
          "geoip:cn",
          "geoip:private"
        ],
        "outboundTag": "Direct"
      },
      {
        "outboundTag": "Dns-Out",
        "network": "tcp,udp",
        "port": "53"
      }
    ]
  }
}

服务端配置

Details

//nginx
server {
  listen [::]:443 ssl ipv6only=off reuseport;
  listen [::]:443 quic reuseport ipv6only=off;
  server_name *************;

location / {
proxy_pass http://localhost:8002/;
}

http2 on;
ssl_certificate /home/ssl/fullchain.cer;
ssl_certificate_key /home/ssl/private.key;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;

client_header_timeout 5m;
keepalive_timeout 5m;
# 在 location 后填写 /你的 path/
location /abc/ {
client_max_body_size 0;
grpc_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_body_timeout 5m;
grpc_read_timeout 315;
grpc_send_timeout 5m;
grpc_pass unix:/dev/shm/xrxh.socket;
}
}

//xray
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "/dev/shm/xrxh.socket,0666",
"protocol": "vless",
"settings": {
"clients": [
{
"id": "" //我是以这个帐户连入
},
{
"id": "
", //未使用
"email": "abc@aaa.com"
}
],
"decryption": "none"
},
"streamSettings": {
"network": "xhttp",
"xhttpSettings": {
"mode": "auto",
"path": "/abc"
}
},
"sniffing": {
"enabled": true,
"destOverride": [
"fakedns+others"
],
"routeOnly": true
}
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
},
{
"protocol": "blackhole",
"tag": "block"
},
{
"protocol": "wireguard",
"settings": {
"secretKey": "
",
"address": [
"
",
"********"
],
"peers": [
{
"publicKey": "
",
"endpoint": "
***"
}
]
},
"tag": "wireguard-1"
}
],
"routing": {
"rules": [
{
"type": "field",
"user": [
"abc@aaa.com"
],
"ip": [
"geoip:private"
],
"outboundTag": "block"
},
{
"type": "field",
"user": [
"abc@aaa.com"
],
"outboundTag": "wireguard-1"
}
]
}
}

客户端日志

Details

2025/02/09 05:26:01.250493 [Info] [2271167988] transport/internet/splithttp: XHTTP is dialing to tcp:*.*.*.*:443, mode stream-one, HTTP version 2, host abc.com
2025/02/09 05:26:01.250604 [Info] [2271167988] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via *.*.*.*:443
2025/02/09 05:26:01.832433 [Info] [2219275785] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2025/02/09 05:26:01.838597 [Info] [2485557641] proxy/socks: TCP Connect request to tcp:www.google.com:443
2025/02/09 05:26:01.839443 [Debug] app/dns: domain www.google.com will use DNS in order: [DOH//8.8.8.8 DOH//1.1.1.1 DOHL//223.6.6.6 DOHL//120.53.53.53 localhost]
  2025/02/09 05:26:01.839504 [Debug] app/dns: DOH//8.8.8.8 cache HIT www.google.com -> [142.250.197.164 2404:6800:4005:823::2004]
2025/02/09 05:26:01.839515 [Info] [2485557641] app/dispatcher: default route for tcp:www.google.com:443
2025/02/09 05:26:01.839520 [Info] [2485557641] transport/internet/splithttp: XHTTP is dialing to tcp:*.*.*.*:443, mode stream-one, HTTP version 2, host abc.com
2025/02/09 05:26:01.839562 from tcp:127.0.0.1:64882 accepted tcp:www.google.com:443
2025/02/09 05:26:01.839670 [Info] [2485557641] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via *.*.*.*:443
2025/02/09 05:26:02.157268 [Info] [1080914123] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2025/02/09 05:26:02.165125 [Info] [2731262781] proxy/socks: TCP Connect request to tcp:www.google.com:443
2025/02/09 05:26:02.166138 [Debug] app/dns: domain www.google.com will use DNS in order: [DOH//8.8.8.8 DOH//1.1.1.1 DOHL//223.6.6.6 DOHL//120.53.53.53 localhost]
  2025/02/09 05:26:02.166177 [Debug] app/dns: DOH//8.8.8.8 cache HIT www.google.com -> [142.250.197.164 2404:6800:4005:823::2004]
2025/02/09 05:26:02.166190 [Info] [2731262781] app/dispatcher: default route for tcp:www.google.com:443
2025/02/09 05:26:02.166224 from tcp:127.0.0.1:64883 accepted tcp:www.google.com:443
2025/02/09 05:26:02.166320 [Info] [2731262781] transport/internet/splithttp: XHTTP is dialing to tcp:*.*.*.*:443, mode stream-one, HTTP version 2, host abc.com
2025/02/09 05:26:02.166447 [Info] [2731262781] proxy/vless/outbound: tunneling request to tcp:www.google.com:443 via *.*.*.*:443
2025/02/09 05:26:02.430282 [Info] [3350235458] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2025/02/09 05:26:02.470432 [Info] [2271167988] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2025/02/09 05:26:03.060507 [Info] [2485557641] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled
2025/02/09 05:26:03.386826 [Info] [2731262781] app/proxyman/inbound: connection ends > proxy/socks: connection ends > context canceled

服务端日志

Details

//xray
Feb 08 21:19:08 instance-20250106-0509 xray[931]: 2025/02/08 21:19:08.199679 [Info] [4115563481] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > body>
Feb 08 21:19:11 instance-20250106-0509 xray[931]: 2025/02/08 21:19:11.981683 [Info] [1288055270] app/proxyman/inbound: connection ends > proxy/vless/inbound: connection ends > proxy/vless/inbound: failed to transfer request payload > body>
Feb 08 21:19:14 instance-20250106-0509 xray[931]: 2025/02/08 21:19:14.150042 [Info] [868563740] proxy/vless/inbound: firstLen = 0
Feb 08 21:19:14 instance-20250106-0509 xray[931]: 2025/02/08 21:19:14.150523 [Info] [868563740] app/proxyman/inbound: connection ends > proxy/vless/encoding: failed to read request version > EOF
Feb 08 21:19:19 instance-20250106-0509 xray[931]: 2025/02/08 21:19:19.033295 [Info] [1637337060] proxy/vless/inbound: firstLen = 0
Feb 08 21:19:19 instance-20250106-0509 xray[931]: 2025/02/08 21:19:19.033651 [Info] [1637337060] app/proxyman/inbound: connection ends > proxy/vless/encoding: failed to read request version > EOF
Feb 08 21:19:41 instance-20250106-0509 xray[931]: 2025/02/08 21:19:41.991675 [Info] [3950893679] proxy/vless/inbound: firstLen = 0
Feb 08 21:19:41 instance-20250106-0509 xray[931]: 2025/02/08 21:19:41.992538 [Info] [3950893679] app/proxyman/inbound: connection ends > proxy/vless/encoding: failed to read request version > EOF
Feb 08 21:19:50 instance-20250106-0509 xray[931]: 2025/02/08 21:19:50.826198 [Info] [959533932] proxy/vless/inbound: firstLen = 0
Feb 08 21:19:50 instance-20250106-0509 xray[931]: 2025/02/08 21:19:50.826604 [Info] [959533932] app/proxyman/inbound: connection ends > proxy/vless/encoding: failed to read request version > EOF

//nginx
2025/02/08 21:31:35 [crit] 994#994: accept4() failed (24: Too many open files)
2025/02/08 21:31:35 [alert] 994#994: 2866 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "GET /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:35 [alert] 994#994: 2867 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "POST /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:36 [crit] 994#994: accept4() failed (24: Too many open files)
2025/02/08 21:31:36 [alert] 994#994: 2866 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "GET /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:36 [alert] 994#994: 2867 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "POST /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:36 [crit] 994#994: accept4() failed (24: Too many open files)
2025/02/08 21:31:36 [alert] 994#994: 1714 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "GET /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:36 [alert] 994#994: 1717 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "POST /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:36 [alert] 994#994: 2444 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "GET /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:36 [alert] 994#994: 2445 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "POST /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:37 [crit] 994#994: accept4() failed (24: Too many open files)
2025/02/08 21:31:37 [alert] 994#994: 2446 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "GET /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
2025/02/08 21:31:37 [alert] 994#994: 2447 socket() failed (24: Too many open files) while connecting to upstream, client: ::ffff:..., server: abc.com, request: "POST /abc/************************ HTTP/2.0", upstream: "grpc://unix:/dev/shm/xrxh.socket:", host: "abc.com", referrer: "https://abc.com/abc/*************************?x_padding=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions