Power Automate Flow Not Starting: The 7 Most Common Causes
Power Automate flow no longer running? Trigger conditions, connections, 90-day rule, license and DLP at a glance.
n8n won't start after an update? Overview of the causes, an emergency checklist, and how to roll back to a pinned previous version.
An n8n update runs through, the container restarts, and afterwards either the login screen stays blank or the logs show nothing but error messages. For a production instance that sends invoices, distributes leads, or sorts support tickets, this is not a minor detail but a genuine emergency. Every digital employee running on that instance comes to a standstill in that moment.
The good news: in the vast majority of cases, you can narrow down the outage within minutes if you proceed systematically instead of randomly tweaking settings. This article organizes the most common causes when n8n won't start after an update, gives you an emergency checklist, and shows the way back to a pinned, working version. That way you keep control of your automations, even if an update goes wrong.
At every version jump, n8n automatically runs database migrations on startup that adapt the schema to the new version. If one of these migrations fails, the instance gets stuck in a startup loop, and the logs show a message like "There was an error running database migrations". Threads in the n8n forum indicate that this happens mainly when several versions were skipped at once, the underlying database is running a version that's no longer supported, or a single migration step itself contained a bug that was only fixed in a later patch. That's exactly why the official n8n update guide recommends updating regularly and not skipping too many versions at once, since this significantly reduces the risk of migration problems.
n8n specifies a supported Node.js range for every version. If an instance run via npm is on a Node.js version outside this window, the process can abort right at startup, without any workflow actually having an error. At first glance, such messages look like an n8n bug, but in reality they're simply a runtime version problem.
If n8n runs in queue mode with several worker processes, or if the instance was rebuilt during the update without carrying over the existing encryption key, stored credentials can no longer be decrypted after the restart. The instance then appears to start normally on the surface, but individual workflows reliably fail at exactly the nodes that need a credential.
In Docker environments, it can happen that a new image expects different file or directory permissions in the mounted volume than the previous version, or that self-installed community nodes no longer match the new n8n version and block the startup process. Both usually show up with clear error messages directly in the container logs once you specifically look for them.
docker logs <container> or the corresponding log files for npm setups to get the exact error message before restarting anything. It determines whether you're dealing with a migration, node, or permissions problem.If your instance runs on Docker, a rollback is usually the fastest way back to a working state. According to the n8n documentation on Docker installation options, you can reference the image not only via the unstable "latest" or "next" tags, but pin it specifically to a concrete version number, for example with docker.n8n.io/n8nio/n8n:1.81.0. This exact pinning is also the way back: if you enter the last known working version number again in your docker-compose file or deploy command, you specifically pull that older image instead of the failed new version.
n8nio/n8n:1.80.4 instead of n8nio/n8n:latest.docker compose down, so no half-started process keeps running in the background.docker compose pull followed by docker compose up -d fetches exactly the pinned version and restarts the instance.After the rollback, it's worth doing a quick functional test of key workflows before making any further changes. Only once the instance is running stably again is the right moment to calmly analyze the actual root cause.
If you run an n8n instance in production and want updates, backups, and rollback strategies set up properly from the start, you'll find support with NordFlux's n8n services.
Usually it's because several versions were skipped at once, or because the database in use is running a version that's no longer properly supported by the new n8n version. Isolated bugs in individual migration steps also occur and are then fixed in a subsequent version, which is why updating again to the latest version is sometimes the simplest solution.
In many cases yes, especially if the error occurred right at startup and before a migration was completed. However, if a migration had already been partially carried out, the database schema may no longer match the older version exactly. In that case, restoring a previous database backup is usually unavoidable.
That depends on how far the failed migration had already progressed. If the instance failed already at the very first migration step, simply resetting the version is often enough. If, on the other hand, several migration steps had already completed successfully before a later step failed, you should fall back on a database backup from before the update to avoid inconsistencies.
By never using the "latest" or "next" tags in your deployment, but instead fixing a specific version number. Your instance only updates at all once you deliberately change that number and have tested the new version beforehand.
First check whether the logs still show the same error or a different one by now. If the error stays exactly the same, that points to a corrupted database backup or a problem outside n8n itself, such as missing permissions on the volume. In this case, usually only a clean restore of the database from an older, verifiably working backup will help.
Founder of NordFlux. Spent four years automating processes at enterprise scale at Dräger, and now brings that depth to the mid-market — pragmatic and with full data sovereignty.
Certifications
Power Automate flow no longer running? Trigger conditions, connections, 90-day rule, license and DLP at a glance.
How to update n8n safely: version pinning, backup of database and encryption key, the right approach.
The 5 most common reasons why RAG agents in n8n ignore the vector store: embeddings, chunking, filters, prompt, and tool output at a glance.
A failed update in the middle of the night is not bad luck; it is what happens without an update strategy with pinned versions and vetted migrations. NordFlux provides managed n8n operations with tested updates, a rollback plan and backups taken before every migration. Your workflows keep running while we take care of the version jumps.