It was not possible to connect to the redis server (s); to create a disconnected multiplexer, disable AbortOnConnectFail. SocketFailure on PING
Just add abortconnect = false to our connection string
192.168.8.233:6379,abortConnect=false
It was not possible to connect to the redis server (s); to create a disconnected multiplexer, disable AbortOnConnectFail. SocketFailure on PING
Just add abortconnect = false to our connection string
192.168.8.233:6379,abortConnect=false
The cause of the problem: redis password is not set
Solution: Enter the Redis folder from the command line:
D:\Redis-x64-3.2.100>redis-cli.exe
Check whether a password is set:
127.0.0.1:6379> auth root
(error) ERR Client sent AUTH, but no password is set
Explain that no password is set, execute the command:
127.0.0.1:6379> config set requirepass root
OK
When OK appears, the setting is successful
redis 127.0.0.1:6379> CONFIG SET requirepass “123456”
OK
redis 127.0.0.1:6379> AUTH 123456
Ok
Just set this configuration password