"Server error (5xx)" in Search Console
Google asked for the page and your server failed to produce it. Often intermittent, often only under crawl load, and the most urgent of the indexing errors.
This URL is not indexed and it should be. Something is in the way.
Is it still happening?
Paste the URL. We request it as Googlebot and as a browser and show both status codes, so you can see whether the error is still live and whether it is specific to crawler traffic.
Whether this URL is returning a server error right now, and whether the failure depends on who is asking.
A single check cannot rule out an intermittent failure. If the error was caused by load, a deploy, or a flaky dependency, a clean result here is a snapshot rather than an all-clear. Compare it against the Crawl stats report over time.
What this error actually means.
Google requested the URL and the server returned a 500-range status: the request was valid and the server failed to fulfil it. An application exception, a timeout, an exhausted connection pool, a bad gateway between a CDN and an origin.
This is the most time-sensitive error in the Page indexing report. Google reduces its crawl rate for a site returning server errors, which slows the discovery of everything else you publish, not just the failing URL.
It is also the error most likely to have resolved by the time you look. A 5xx recorded during a deploy, a database failover, or a traffic spike is real but no longer reproducible. What matters is whether it is still happening and whether it happens under crawl conditions rather than in your browser.
5 things that produce this error.
Ordered by how often they turn out to be the cause, not by how obvious they look.
An unhandled exception on specific inputs
The page works for the routes you tested and throws on a parameter combination you did not. Crawlers are thorough in a way manual testing is not: they find the archive page on the last page of pagination, the category with zero products, and the profile of the user who deleted their avatar.
Timeouts under crawl load
A page that takes several seconds to build is fine for one visitor and fatal when a crawler requests many of them in sequence. Serverless platforms return 504 at a hard limit, and an origin behind a CDN returns 502 when the connection pool is exhausted. The pattern to look for is errors clustered in time rather than by URL.
A deploy window
Requests landing mid-deploy, during a migration, or against a cold instance. Usually brief and self-correcting, and worth confirming as such rather than assuming: check whether the timestamps in the Crawl stats report line up with your deployment history.
A dependency that fails only sometimes
A database connection limit, a rate-limited third-party API called during render, an expired credential, a cache that returns an error on a miss. Intermittent by nature, which is why it survives a quick manual check.
A CDN that cannot reach the origin
A 502 or 522 from the edge, not from your application. Your application logs are clean because the request never arrived. Check the CDN status and the origin health check rather than the framework logs.
How to clear it.
Check whether it is still happening
Request the URL several times in a row before you start debugging. An error that no longer reproduces is a historical record, and the fix is to validate it in Search Console rather than to change code.
for i in 1 2 3 4 5; do
curl -sI https://example.com/page -o /dev/null -w "%{http_code} %{time_total}s\n"
doneRead the Crawl stats report for the shape of the failure
Settings > Crawl stats > By response. Errors clustered on one day point at a deploy or an incident. Errors spread evenly across many URLs point at capacity. Errors on one URL pattern point at a code path. The shape tells you where to look before you read a single line of a stack trace.
Never return a 5xx for a page that is simply gone
A removed page should return 404 or 410. A 5xx tells Google the failure is temporary and to keep trying, which wastes crawl budget on a URL that will never work and suppresses the crawl rate for the rest of the site.
Fix capacity before you fix symptoms
If the errors are timeouts, raising a timeout limit moves the failure rather than removing it. Cache the expensive render, move the slow dependency out of the request path, or serve statically. If crawl volume genuinely exceeds what the origin can serve, adjust the crawl rate in Search Console as a temporary measure while you address the capacity.
Next to check.
LintPage rules covering this: ttfb-pro, performance
Questions, answered.
Does a 5xx error hurt rankings?
How long before Google drops a page returning 5xx?
Should I use 503 during maintenance?
Why does Search Console report errors I cannot reproduce?
Can crawling itself cause the server errors?
Catch this one before Search Console does.
Search Console tells you weeks after the fact. LintPage runs 60 checks against a URL in about 30 seconds. Free, no signup.
run a full scan →