Maurizio Brioschi
Maurizio Brioschi

Reputation: 613

Redis tcp-backlog

Someone know how to solve this redis problem on startup?

redis_version:2.4.17

It comes on /etc/init.d/redis_4986 start redis_4986.conf tcp-backlog is like default:

tcp-backlog 511

Starting Redis server...

*** FATAL CONFIG FILE ERROR ***
Reading the configuration file, at line 54
>>> 'tcp-backlog 511'
Bad directive or wrong number of arguments

Upvotes: 5

Views: 7690

Answers (1)

Didier Spezia
Didier Spezia

Reputation: 73246

You are using a version of Redis which does not support yet this configuration parameter. For instance, a Redis 2.6 or lower binary with a 2.8 or better configuration file.

Upvotes: 6

Related Questions