Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Nextcloud+Redis>=6 #19

Open
ahgraber opened this issue Apr 4, 2021 · 1 comment
Open

Update to Nextcloud+Redis>=6 #19

ahgraber opened this issue Apr 4, 2021 · 1 comment

Comments

@ahgraber
Copy link

ahgraber commented Apr 4, 2021

I've been experimenting with transitioning to Redis>6. Here are the changes I had to make to your setup:

users.acl:

user default on >SOME_STRONG_PASSWORD ~* &* +@all 

redis.conf (note: incomplete; these are just the modifications I found were required):

...
bind nextcloud-redis  # bind to redis container-name
...
aclfile /run/secrets/ACL_SECRET_NAME
...

docker-compose.yml

secrets:
  ACL_SECRET_NAME:
    - ./users.acl

services:
  nextcloud-redis:
    image: redis:alpine
    container_name: nextcloud-redis
    secrets:
      - ACL_SECRET_NAME
    command: redis-server /usr/local/etc/redis/redis.conf
    volumes:
      - ./redis.conf:/usr/local/etc/redis/redis.conf
@noone-g
Copy link

noone-g commented Jul 19, 2022

It looks like the authentication problem is solved since Jun. 2021. It was the redis docker problem. I am using the latest redis without any modification and see no errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants