使用redis作为seafile.conf里的文件缓存该如何配置redis密码

我在seafile.conf,配置了redis作为缓存,但不知道怎么配置密码,使用redis_password和password都不行,到底该如何配置redis密码
[redis]
redis_host = 127.0.0.1
redis_port = 6379
redis_password = xxxx

查看seafile.log,一直提示 NO AUTH
…/common/redis-cache.c(170): Failed to get 6ebc2c43-f0c7-4e53-8d0d-ea599d5607f7-70c7796928e5a759e8e4dd885dbb61ab32a70c8f from redis cache: NOAUTH Authentication required…

2024-09-18 23:42:15 …/common/redis-cache.c(215): Failed to set 6ebc2c43-f0c7-4e53-8d0d-ea599d5607f7-70c7796928e5a759e8e4dd885dbb61ab32a70c8f to redis: NOAUTH Authentication required…

redis配置可以参考:https://docs.djangoproject.com/en/4.2/topics/cache/#redis
添加到seahub_settings.py中:

CACHES = {
    "default": {
        "BACKEND": "django.core.cache.backends.redis.RedisCache",
        "LOCATION": "redis://username:password@127.0.0.1:6379",
    }
}

这里是 seahub_settings.py配置好了没问题,现在是seafile.conf里配置使用redis,开启了cluster集群模式,查到可以使用redis来代替memcached,但是没看到怎么配置redis密码,也没找到对应的属性

这个参数怎么与这里的不同,我按照这个配置了host和port,如果redis不开启密码认证是没问题,开启密码认证就有问题了,seafile.conf - Seafile Admin Manual

看上楼回复内容

目前社区版是不支持redis的,从企业版11.0开始支持redis,而且不支持redis集群。
在seafile.conf中的redis配置是不支持设置密码的。