Recommended

๐Ÿ”’ Can't access the service? It might be your network, not the service

NordVPN bypasses ISP throttling and regional blocks. 7,000+ servers in 118 countries. 30-day money-back guarantee.

Try NordVPN โ†’

Affiliate link โ€” we may earn a commission at no extra cost to you

n8n Status: How to Check If n8n Is Down Right Now (2026)

Updated June 2026 ยท 6 min read ยท By API Status Check

n8n is a powerful open-source workflow automation platform used by developers, ops teams, and agencies. Unlike fully-managed tools like Zapier, n8n comes in two forms: n8n Cloud (managed SaaS) and self-hosted (run on your own server). Diagnosing n8n issues requires knowing which deployment you're on โ€” the troubleshooting paths are completely different.

n8n Cloud vs Self-Hosted: Which Are You Running?

n8n Cloud
  • โ€ข URL ends in .app.n8n.cloud
  • โ€ข Managed by n8n GmbH โ€” no server to maintain
  • โ€ข Check status.n8n.io for outages
  • โ€ข Automatic updates and backups
Self-Hosted
  • โ€ข Your own domain or IP:5678
  • โ€ข You control the server โ€” you own the outage
  • โ€ข No central status page โ€” check your server
  • โ€ข Updates are manual

Understanding n8n Cloud's Status Page (status.n8n.io)

n8n Cloud operates status.n8n.io โ€” its official status page. The editor and execution engine are architecturally separate, which means you can sometimes see your workflows in the editor while executions silently fail.

Cloud Editor

The n8n workflow builder UI. If this is down, you can't create or edit workflows. Usually served from a CDN so tends to be more resilient than the execution engine.

Execution Engine

The backend that actually runs your workflows โ€” triggered by schedules, webhooks, and manual runs. If this is degraded, workflows may queue, execute late, or fail silently.

Webhooks

Incoming webhook triggers. n8n Cloud assigns webhook URLs to each instance. If the webhook layer is degraded, external services (Stripe, GitHub, etc.) can't trigger your workflows.

API

The n8n REST API used to trigger workflows programmatically, list executions, and manage credentials. API degradation affects CI/CD integrations and custom workflow triggers.

Queue / Worker System

For accounts using queue mode (higher-tier Cloud plans), workers process jobs asynchronously. Queue degradation causes execution backlogs even when the editor appears healthy.

Credential Storage

Where n8n securely stores OAuth tokens and API keys for connected services. Credential issues cause node authentication failures across all workflows using that credential.

Diagnosing Self-Hosted n8n Issues

Self-hosted n8n has no central status page โ€” when it's down, you own the investigation. Here's the diagnostic checklist:

Self-Hosted n8n Diagnostic Commands

# 1. Check if n8n process is running

systemctl status n8n

# or if using pm2:

pm2 status

# 2. Check n8n logs for errors

journalctl -u n8n -n 50 --no-pager

# or Docker:

docker logs n8n --tail 50

# 3. Check disk space (full disk stops execution)

df -h

# 4. Test n8n is reachable locally

curl -f http://localhost:5678/healthz

# 5. Test webhook URL from outside

curl -X POST https://your-n8n.example.com/webhook/test

Common Self-Hosted n8n Failure Causes

  • ๐Ÿ”ด Full disk: n8n writes execution logs to SQLite/Postgres. When the disk fills, executions halt with no obvious error in the editor.
  • ๐Ÿ”ด Expired OAuth tokens: Google, Slack, and other OAuth credentials expire. Re-authenticate in Settings โ†’ Credentials.
  • ๐Ÿ”ด WEBHOOK_URL mismatch: If your WEBHOOK_URL env var doesn't match your public URL, incoming webhooks silently fail.
  • ๐Ÿ”ด Node.js version: After updates, n8n may require a newer Node.js version. Check node --version vs n8n's requirements.
  • ๐Ÿ”ด Database corruption: SQLite databases can corrupt during crashes. Back up regularly and consider migrating to Postgres for production.
๐Ÿ“ก
Recommended

Monitor your n8n instance with external uptime checks

If you run self-hosted n8n, Better Stack can monitor your instance from outside your network and alert you the moment it goes down โ€” before you notice missed workflow executions. Free plan available.

Try Better Stack Free โ†’

What n8n Status Colors Mean (Cloud)

๐ŸŸข
Operational: All n8n Cloud systems working normally. Workflows execute on schedule, webhooks trigger correctly, and the editor is fully responsive.
๐ŸŸก
Degraded Performance: n8n Cloud is up but slower than normal. Workflows may execute with delays, the editor may be slow to save, or webhook processing may lag.
๐ŸŸ 
Partial Outage: Some executions or some regions affected. Scheduled workflows may not trigger while manual executions still work, or vice versa.
๐Ÿ”ด
Major Outage: Widespread failure. Most workflows are not executing, webhooks are not being received, or the editor is inaccessible for most users.
๐Ÿ”ต
Maintenance: Planned maintenance. n8n Cloud maintenance windows are typically off-peak and announced via status.n8n.io and email. Expect potential workflow execution delays.

Common n8n Issues and What They Mean

"Workflows not executing on schedule"For n8n Cloud: check the Execution Engine component on status.n8n.io. For self-hosted: verify the n8n process is running, check cron-style triggers in Settings โ†’ Trigger Nodes, and confirm the instance timezone is set correctly (N8N_DEFAULT_TIMEZONE env var).
"Webhook trigger not firing"For Cloud: check status.n8n.io Webhooks component. For self-hosted: verify your WEBHOOK_URL env var matches the externally reachable URL, check that port 5678 is open (or your reverse proxy is configured correctly), and test the URL with curl from an external machine.
"Node authentication error / 401 Unauthorized"OAuth tokens have expired or API keys were rotated. Go to Credentials in n8n and re-authenticate or update the key. This is not a platform outage โ€” it's a credential expiry. Set up credential rotation reminders to avoid this during critical workflow windows.
"Execution stuck in "running" state"n8n Cloud: the execution engine may be degraded โ€” check status.n8n.io. Self-hosted: n8n may have crashed mid-execution. Restart the n8n process. Stale executions typically need manual resolution from Settings โ†’ Executions โ†’ mark as failed.
"Editor loads but "Save" button does nothing"The n8n backend API is not responding. For Cloud: check status.n8n.io API component. For self-hosted: check if the n8n process is running and check logs for database errors (especially SQLite lock errors).
"n8n Cloud upgrade broke my workflow"n8n auto-updates Cloud instances. If a workflow breaks after an update, check n8n's changelog at docs.n8n.io/release-notes/ for breaking changes in that version. Node parameter names occasionally change between major versions.

Frequently Asked Questions

Where is the official n8n status page?

n8n Cloud's official status page is status.n8n.io. It covers n8n Cloud infrastructure only โ€” not self-hosted instances. For self-hosted n8n, there is no central status page. You monitor your own server.

How do I check if my self-hosted n8n is running?

Run 'systemctl status n8n' or 'pm2 status' to check the process. Then run 'curl -f http://localhost:5678/healthz' to verify n8n is responding. If the healthz endpoint returns 200, n8n is up. Also run 'df -h' to check disk space โ€” a full disk silently stops n8n executions.

Will failed n8n executions retry automatically?

n8n Cloud and self-hosted n8n do not automatically retry failed executions by default. You can add retry logic inside workflows using Error Trigger nodes or configure retry settings on individual nodes. Webhook payloads from external services (Stripe, GitHub, etc.) are typically retried by the sending service โ€” check their retry policies.

How is n8n different from Zapier for outage purposes?

Zapier is fully managed SaaS โ€” you rely entirely on Zapier's infrastructure. n8n Cloud is similar. Self-hosted n8n means you own both the uptime and the troubleshooting. Self-hosted offers maximum control and no platform dependency but requires operational knowledge to keep running reliably.

How do I get alerts when n8n Cloud goes down?

Subscribe to updates at status.n8n.io for email notifications during Cloud incidents. For self-hosted, use an external uptime monitor like Better Stack or API Status Check to ping your n8n healthz endpoint from outside your network and alert you when it goes down.

Alert Pro

14-day free trial

Stop checking โ€” get alerted instantly

Next time n8n goes down, you'll know in under 60 seconds โ€” not when your users start complaining.

  • Email alerts for n8n + 9 more APIs
  • $0 due today for trial
  • Cancel anytime โ€” $9/mo after trial

Monitor Your n8n Instance Before Workflows Silently Fail

Whether you're on n8n Cloud or self-hosting, external uptime monitoring catches outages before missed workflow executions become business problems.

Try Better Stack Free โ€” No Credit Card Required

Or use APIStatusCheck Alert Pro โ€” API monitoring from $9/mo

๐ŸŒ Can't Access n8n?

If n8n is working for others but not for you, it might be an ISP or regional issue. A VPN can help bypass network-level blocks and routing problems.

๐Ÿ”’

Troubleshoot with a VPN

Connect from a different region to test if the issue is local to your network. Also protects your connection on public Wi-Fi.

Try NordVPN โ€” 30-Day Money-Back Guarantee
๐Ÿ”‘

Secure Your n8n Account

Service outages are a common time for phishing attacks. Use a password manager to keep unique, strong passwords for every account.

Try NordPass โ€” Free Password Manager
Quick ISP test: Try accessing n8n on mobile data (Wi-Fi off). If it works, the issue is with your ISP or local network.

โณ While You Wait โ€” Try These Alternatives

๐Ÿ›  Tools We Use & Recommend

Tested across our own infrastructure monitoring 200+ APIs daily

Better StackBest for API Teams

Uptime Monitoring & Incident Management

Used by 100,000+ websites

Monitors your APIs every 30 seconds. Instant alerts via Slack, email, SMS, and phone calls when something goes down.

โ€œWe use Better Stack to monitor every API on this site. It caught 23 outages last month before users reported them.โ€

Free tier ยท Paid from $24/moStart Free Monitoring
1PasswordBest for Credential Security

Secrets Management & Developer Security

Trusted by 150,000+ businesses

Manage API keys, database passwords, and service tokens with CLI integration and automatic rotation.

โ€œAfter covering dozens of outages caused by leaked credentials, we recommend every team use a secrets manager.โ€

SEMrushBest for SEO

SEO & Site Performance Monitoring

Used by 10M+ marketers

Track your site health, uptime, search rankings, and competitor movements from one dashboard.

โ€œWe use SEMrush to track how our API status pages rank and catch site health issues early.โ€

From $129.95/moTry SEMrush Free
View full comparison & more tools โ†’Affiliate links โ€” we earn a commission at no extra cost to you