Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docs for redis-server command line options

Tags:

redis

I've looked "everywhere." I cannot find documentation for all the supported command line options for redis-server I'm using version 5.0.3

I tried redis-server --help It is no help. The usage given doesn't even mention --port, --slaveof, --replicaof, --loglevel ... yet these options are shown in the help's examples.

Does someone know where I can find full and complete documentation for the server's command line? Thanks.

like image 577
LiamF Avatar asked Mar 09 '19 14:03

LiamF


1 Answers

Right at the top of the redis configuration documents it says the following:

"... it is possible to ... pass Redis configuration parameters using the command line directly."

Therefore, every configuration file option is passable on the command line. I'm an idiot.

like image 143
LiamF Avatar answered Oct 07 '22 01:10

LiamF