emqx-auth-redis icon indicating copy to clipboard operation
emqx-auth-redis copied to clipboard

Value is not reflecting in emqx_auth_redis.conf file

Open VaibhavMishra2069 opened this issue 3 years ago • 0 comments

I have docker-compose.file. We are passing redis server, redis password but these values are not coming in emqx_auth_redis.conf file, so emqx is not able to connect with redis.

version: '3' services: emqx: image: emqx/emqx:4.3.10 restart: always environment: - EMQX_LOG__LEVEL=info - EMQX_LOADED_PLUGINS=emqx_auth_redis - EMQX_AUTH__REDIS__SERVER= <-server-ip->:6380 - EMQX_AUTH__REDIS__PASSWORD= <-password-> - EMQX_AUTH__REDIS__AUTH_CMD=HMGET mqtt_user:%u password salt - EMQX_AUTH__REDIS__PASSWORD_HASH=salt,sha256 - EMQX_AUTH__REDIS__SSL=on - EMQX_AUTH__REDIS__TYPE=single

VaibhavMishra2069 avatar Dec 16 '21 09:12 VaibhavMishra2069