Redis configuration is not working #3681
Unanswered
iwillcodeu
asked this question in
Help
Replies: 3 comments
-
so how to solve it |
Beta Was this translation helpful? Give feedback.
0 replies
-
Is your redis container port exposed to host machine? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Did you check that no other services are using the port?
In my case, it was connected to a local redis installed via brew. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to deploy the project from source code.
I checked Redis service which is deployed locally.
docker exec -it docker-redis-1 redis-cli
127.0.0.1:6379> AUTH difyai123456
OK
127.0.0.1:6379> ping
PONG
127.0.0.1:6379>
But:
celery -A app.celery worker -P gevent -c 1 -Q dataset,generation,mail --loglevel INFO
...
[2024-04-22 10:03:23,918: ERROR/MainProcess] consumer: Cannot connect to redis://:**@localhost:6379/1: AUTH called without any password configured for the default user. Are you sure your configuration is correct?.
Trying again in 2.00 seconds... (1/100)
[2024-04-22 10:03:25,932: ERROR/MainProcess] consumer: Cannot connect to redis://:**@localhost:6379/1: AUTH called without any password configured for the default user. Are you sure your configuration is correct?.
Trying again in 4.00 seconds... (2/100)
...
Beta Was this translation helpful? Give feedback.
All reactions