]> git.saurik.com Git - redis.git/blobdiff - README
Document the redis-server cli options in the README
[redis.git] / README
diff --git a/README b/README
index 3920b53428416c8d16c431ea8daa11cdba47cc42..bba2439c339b58b76c958bd63d30d6d61d3d7416 100644 (file)
--- 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
 ------------------