Describe the problem/error/question
Hello,
We have a self-hosted instance of n8n that was installed with Docker. We have upgrade the instance from version 0.263.3 to version 1.1.1 . The upgrade process was quite slow - several days - but the instance can now take requests.
Unfortunately, the workflows can not be activated because of a credential issue.
But in the screen Credentials, there is no apparent issues.
I tried to inspect the SQLite database but I could not found a stale credential - I am not very familiar with the database structure.
The instance was migrated with the following commands :
$ docker pull n8nio/n8n:latest
$ docker-compose down
$ docker-compose --env-file .env up
Here is the content of the .env
file - some information are not revealed :
# Folder where data should be saved
DATA_FOLDER=/path/to/n8n/data
# The top level domain to serve from
DOMAIN_NAME=...
#public domain name
PUBLIC_DOMAIN_NAME=...
# The subdomain to serve from
SUBDOMAIN=...
# DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from
# above example would result in: https://n8n.example.com
# The user name to use for autentication - IMPORTANT ALWAYS CHANGE!
N8N_BASIC_AUTH_USER=admin
# The password to use for autentication - IMPORTANT ALWAYS CHANGE!
N8N_BASIC_AUTH_PASSWORD=...
# Optional timezone to set which gets used by Cron-Node by default
# If not set New York time will be used
GENERIC_TIMEZONE=...
# The email address to use for the SSL certificate creation
SSL_EMAIL=...
# logs
N8N_LOG_LEVEL=verbose
N8N_LOG_OUTPUT=file
N8N_LOG_FILE_LOCATION=/var/log/n8n.log
N8N_LOG_FILE_MAXSIZE=50
N8N_LOG_FILE_MAXCOUNT=100
Here are information about our setup :
- n8n version: 0.263.3 to 1.1.1
- Database (default: SQLite): SQLite
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app): docker
- Operating system: Ubuntu 20.04.2 LTS