[REDIS] Unhandled error event: ReplyError: ERR max number of clients reached - fourslickz/notes GitHub Wiki
[root@live-apps ~]# nano /etc/redis.conf
maxclients 10000
127.0.0.1:6379> info clients
# Clients
connected_clients:458
cluster_connections:0
maxclients:10000
client_recent_max_input_buffer:20480
client_recent_max_output_buffer:0
blocked_clients:0
tracking_clients:0
clients_in_timeout_table:0
total_blocking_keys:0
total_blocking_keys_on_nokey:0
127.0.0.1:6379>
[root@apps ~]# redis-cli CLIENT LIST | wc -l
408
[root@apps ~]#