| name | n8n-common-issues |
| description | Sub-skill of n8n: Common Issues (+1). |
| version | 1.0.0 |
| category | operations |
| type | reference |
| scripts_exempt | true |
Common Issues (+1)
Common Issues
Issue: Webhook not receiving data
curl -X POST https://n8n.example.com/webhook/your-path \
-H "Content-Type: application/json" \
-d '{"test": true}'
docker logs n8n-container 2>&1 | grep -i webhook
echo $WEBHOOK_URL
Issue: Credentials not working
curl -X GET "https://api.example.com/test" \
-H "Authorization: Bearer YOUR_TOKEN"
echo $N8N_ENCRYPTION_KEY | wc -c
Issue: Workflow execution timeout
environment:
- EXECUTIONS_TIMEOUT=3600
- EXECUTIONS_TIMEOUT_MAX=7200
Issue: Memory issues with large datasets
const PAGE_SIZE = 100;
let page = 1;
let hasMore = true;
const allResults = [];
while (hasMore) {
const response = await $http.get(
`https://api.example.com/data?page=${page}&limit=${PAGE_SIZE}`
);
allResults.push(...response.data.items);
hasMore = response.data.has_more;
page++;
}
return allResults;
Debugging Tips
console.log('Input data:', JSON.stringify($input.all(), null, 2));
console.log('Environment:', $env.NODE_ENV);
console.log('Workflow:', $workflow.name);
console.log('Execution ID:', $execution.id);
console.log('Execution mode:', $execution.mode);
const previousOutput = $('Previous Node Name').all();
console.log('Previous output:', previousOutput);
docker logs -f n8n-container 2>&1 | grep -E "(error|warn|execution)"
docker exec -it postgres psql -U n8n -d n8n -c \
"SELECT id, status, started_at FROM execution_entity WHERE status = 'error' ORDER BY started_at DESC LIMIT 10;"