Cannot run "Retry execution"

I can’t repeat some of Error execution in my n8n instance

My docker-compose config:

services:
  n8n:
    image: n8nio/n8n:latest
    restart: always
    ports:
      - "5678:5678"
    environment:
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER
      - N8N_BASIC_AUTH_PASSWORD
      - N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
      - N8N_PORT=5678
      - N8N_PROTOCOL=https
      - NODE_ENV=production
      - N8N_LOG_LEVEL=debug
      - N8N_LOG_OUTPUT=console
      - WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/

        #DB
      - DB_TYPE=postgresdb
      - DB_POSTGRESDB_HOST=postgres
      - DB_POSTGRESDB_DATABASE=${DB_NAME}
      - DB_POSTGRESDB_USER=${DB_USER}
      - DB_POSTGRESDB_PASSWORD=${DB_PASSWORD}

        #queue EXECUTION_MODE
      - EXECUTION_MODE=regular #EXECUTION_MODE=queue
      - EXECUTIONS_PROCESS=main
        #Execution data
      - EXECUTIONS_DATA_PRUNE=false
      - EXECUTIONS_DATA_MAX_AGE=999999
        #Redis
      #- QUEUE_BULL_REDIS_HOST=redis
      #- QUEUE_BULL_REDIS_PORT=6379
        #Metrics
      - N8N_METRICS=true
      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}

Information on your n8n setup

  • n8n version: Version 1.63.4
  • Database: Postgres
  • n8n EXECUTIONS_PROCESS setting (default: own, main): main
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker-compose
  • Operating system: Ubuntu

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hello, this information is in my topic

Hi @David_Semenenko1

It means the error is still not resolved. Can you share what the error is that you’re getting and also more information about the workflow?

Tip for sharing your workflow in the forum

Pasting your n8n workflow


Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.

```
<your workflow>
```

Make sure that you’ve removed any sensitive information from your workflow and include dummy data or pinned data as much as you can!


This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.