Categories
Redis

Redis 2.8.19

Redis 2.8.19 has been released on December 16th 2014, bringing small bug fixes.

The upgrade urgency is low for both Redis and Sentinel.

The packages are now available for both Debian 7 “Wheezy” and Debian 6 “Squeeze” on both amd64 and i386 architectures.

3 replies on “Redis 2.8.19”

After install this package i have warning in log “WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.”. Can You help me resolve this problem?

@r3b3l : there’s a place in /etc/sysctl.conf or /etc/sysctl.d/* where net.core.somaxconn has been set to such a low value.

Try to launch Redis after this command :

sysctl -w net.core.somaxconn = 65535

If it works and if you want this to persist after a reboot, add this value to the previously mentioned locations.

Thank You Guillaume Plessis, this command solve my problem. I add this to /etc/sysctl.conf permanently.

Comments are closed.