From 83a4ed56a9f700d81e06165c8ae2bbbeac362f25 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 1 Dec 2011 15:40:49 +0100 Subject: [PATCH] Document the redis-server cli options in the README --- README | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README b/README index 3920b5342..bba2439c3 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 ------------------