Describe the problem/error/question
Issue with extremely slow workflow loading in offline deployment of n8n.
First, let me introduce my environment:
I have deployed n8n using Docker on an Ubuntu system, isolated from all external service requests in a local area network environment (which can be considered an offline environment).
What is the error message (if any)?
Current situation:
n8n has been successfully deployed and the platform is usable. However, the issue is that the first loading of workflows is extremely slow, taking a very long time (whether creating new workflows or loading existing ones).
After waiting for a long time, the logs report an error:
2025-09-15T08:24:13.2017 debug Querying database for waiting executions
{"scopes":["waiting-executions"],"file":"wait-tracker.js","function":"getW
aitingExecutions"}
2025-09-15T08:24:44.595Z error connect ETIMEDOUT 104.26.12.187:443 {"fi
le":"error-reporter.js","function":"defaultReport"}
2025-09-15T08:24:44.595Z error connect ETIMEDOUT 104.26.12.187:443 f"fi
le":"error-reporter.js","function":"defaultReport"}
2025-09-15T08:24:44.596Z error Error while fetching community nodes: co
nnect ETIMEDOUT 104.26.12.187:443 {"file":"strapi-utils.js","function":"pag
inatedRequest"}
I have tried adding many additional configurations when creating the n8n container, but none of them worked. I hope there is a way to resolve this issue by adding configurations. Secondly, is there a method to solve this problem by modifying the source code?
Please share your workflow
The Docker deployment command is:
docker run --it --rm --name n8n -p 5678:5678 \
-v n8n_data:/home/node/.n8n \
-e N8N_SECURE_COOKIE=false \
-e N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
-e N8N_LISTEN_ADDRESS=0.0.0.0 \
-e N8N_LOG_LEVEL=debug \
-e N8N_SKIP_UPDATE_CHECK=true \
-e N8N_SKIP_DB_CHECK=true \
-e N8N_COMMUNITY_NODES_ENABLED=false \
-e N8N_DISABLE_TELEMETRY=true \
-e N8N_VERSION_NOTIFICATIONS_ENABLED=false \
-e N8N_DIAGNOSTICS_ENABLED=false \
--user root docker.n8n.io/n8nio/n8n
Information on your n8n setup
- n8n version: 1.105.4
- Database (default: SQLite): no
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):Docker
- Operating system:linux Ubuntu 20