OneLinersCommand workbench
Verified diagnostic signature

The HTTP server or its upstream failed to complete the request.

Match output from http, understand the likely cause, then continue with sourced, read-only checks.

Confidence
high
Platforms
linux · macos · windows
Verified
2026-07-24
Recognized output

Signature matched locally

HTTP/[12](?:\.\d)? 500

OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.

Likely causes

What usually produces this signal

  1. Application error
  2. Unavailable upstream
  3. Proxy timeout
  4. Capacity or dependency failure
Safe next checks

Collect evidence before changing the system

01

Fetch only the HTTP response headers

curl -I <url>

The output matches the expected target and exits without an error.

02

Break an HTTP request into DNS, TCP, TLS, TTFB, and total time

curl -sS -o /dev/null -w 'status=%{http_code} dns=%{time_namelookup}s tcp=%{time_connect}s tls=%{time_appconnect}s ttfb=%{time_starttransfer}s total=%{time_total}s remote=%{remote_ip}\n' <url>

The output matches the expected target and exits without an error.

03

List listening TCP ports and their processes

lsof -iTCP -sTCP:LISTEN -n -P

The output matches the expected target and exits without an error.