when i set requirepass to "" in redis.conf and restart redis-server, i connect server by client
redis-cli ping
(error) NOAUTH Authentication required.
how i connect server no auth when requirepass in redis.conf
Comment From: laixintao
When you run set requirepass to "" the password is set to ""(black string).
However, you can use ACL SETUSER default on nopass ~* +@all to disable password.
Comment From: huangzhw
Currently set requirepass to "" will not ask for password.