Is there any issue with n8n redis nowadays?
I have docker-compose like this:
redis:
image: redis:latest
container_name: io_redis
restart: always
networks:
- bridge_network
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- "6379:6379"
# This redis for server:6379
volumes:
- /my/path:/data
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 5s
timeout: 5s
retries: 10
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
It is ran ok. But today, it has errors:
1:M 22 Mar 2025 04:26:21.559 * monotonic clock: POSIX clock_gettime
1:M 22 Mar 2025 04:26:21.560 * Running mode=standalone, port=6379.
1:M 22 Mar 2025 04:26:21.560 * Server initialized
1:M 22 Mar 2025 04:26:21.560 # Wrong signature trying to load DB from file
1:M 22 Mar 2025 04:26:21.560 # Fatal error loading the DB, check server logs. Exiting.
1:C 22 Mar 2025 04:27:21.898 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
1:C 22 Mar 2025 04:27:21.898 * Redis version=7.4.2, bits=64, commit=00000000, modified=0, pid=1, just started
1:C 22 Mar 2025 04:27:21.898 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
1:M 22 Mar 2025 04:27:21.899 * monotonic clock: POSIX clock_gettime
1:M 22 Mar 2025 04:27:21.900 * Running mode=standalone, port=6379.
1:M 22 Mar 2025 04:27:21.900 * Server initialized
1:M 22 Mar 2025 04:27:21.901 # Wrong signature trying to load DB from file
1:M 22 Mar 2025 04:27:21.901 # Fatal error loading the DB, check server logs. Exiting.