Open afoglia84-sou opened 4 months ago
What Nchan version are you using? What does your Redis config block look like? I've tried with 1.3.6 using the nchan_redis_password
and the url of nchan_redis_server
to set the password, but both work just fine in my tests.
I'm using nchan 1.3.6 too and this is the redis config block
#NCHAN REDIS CONFIG
upstream redis_master {
nchan_redis_server redis-server:6379;
nchan_redis_password ChangeMe#1;
}
i've also tried this
#NCHAN REDIS CONFIG
upstream redis_master {
nchan_redis_server 'redis://:ChangeMe#1@redis-master:6379';
}
but it works only without "special" characters
I can connect to Redis only by using password without special characters, for example it works fine using redis with
123456
password. But if i configure redis with more complex password (i've tried bothChangeme?1
andChangeme@1
) i get these errors.publish:
subscription:
I tried to connect redis service using redis-cli and it works.