From: antirez Date: Thu, 1 Dec 2011 14:40:49 +0000 (+0100) Subject: Document the redis-server cli options in the README X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/1576520cc0c2deda30288bea797fdacf322581ec?ds=sidebyside Document the redis-server cli options in the README --- diff --git a/README b/README index 3920b534..bba2439c 100644 --- a/README +++ b/README @@ -62,6 +62,15 @@ parameter (the path of the configuration file): % cd src % ./redis-server /path/to/redis.conf +It is possible to alter the Redis configuration passing parameters directly +as options using the command line. Examples: + + % ./redis-server --port 9999 --slaveof 127.0.0.1 6379 + % ./redis-server /etc/redis/6379.conf --loglevel debug + +All the options in redis.conf are also supported as options using the command +line, with exactly the same name. + Playing with Redis ------------------