Hi @broken.pipe,
I had the same problem as you and Iâm not sure what caused the sudden auth problem with the redis server. I found a workaround (assuming you are using docker-compose):
-
Append âcommand: redis-server --requirepass YOURPASSWORDâ under your redis docker-compose configuration
-
Go to your config.php in your Nextcloud and under redis change âpasswordâ => âfalseâ to âpasswordâ => âYOURPASSWORDâ.
-
Recreate the containers
From now on nextcloud will use a password to auth against the redis server. In my case the auth error disappeared and I could log in again.
Hope this helps!