Issue with Redis password? #3

Open
opened 2022-07-27 02:51:18 +00:00 by recklessop · 2 comments

On first start the app container continuously restarts with the following error

app_1 | In PhpRedisConnector.php line 87:
app_1 |
app_1 | ERR AUTH called without any password configured for the default
app_1 | user. Are you sure your configuration is correct?

I am using the default env.docker file from the upstream pixelfed repo

Any ideas what could be the issue?

On first start the app container continuously restarts with the following error app_1 | In PhpRedisConnector.php line 87: app_1 | app_1 | ERR AUTH <password> called without any password configured for the default app_1 | user. Are you sure your configuration is correct? I am using the default env.docker file from the upstream pixelfed repo Any ideas what could be the issue?

Same for me. I tried adding the requirepass argument as mentioned here and here, but that didn't solve it yet

     env_file: '~/.env'                                                                                                                                                                                                                                                        
     environment:                                                                                                                                                                                                                                                              
       REDIS_ARGS: "--requirepass ${REDIS_PASSWORD}"

I'll let you know when I solve this

Same for me. I tried adding the `requirepass` argument as mentioned [here](https://medium.com/@umutuluer/resolving-the-err-client-sent-auth-but-no-password-is-set-error-b81438d10843) and [here](https://redis.io/docs/stack/get-started/install/docker/#environment-variables), but that didn't solve it yet ```yaml env_file: '~/.env' environment: REDIS_ARGS: "--requirepass ${REDIS_PASSWORD}" ``` I'll let you know when I solve this

Looks like it was this instead:

    env_file: '~/.env'
    command:                                                                                                                                                                                                                                                                  
      - --requirepass ${REDIS_PASSWORD}

(source)

Looks like it was this instead: ```yaml env_file: '~/.env' command: - --requirepass ${REDIS_PASSWORD} ``` ([source](https://help.nextcloud.com/t/solved-latest-docker-image-broke-the-installation-redis-password-auth/87598/2))
Sign in to join this conversation.
No Label
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: dockers/pixelfed#3
No description provided.