summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-07-05 20:37:20 +0200
committerantirez <antirez@gmail.com>2010-07-05 20:37:20 +0200
commit70a214c46d00f37b83a4cb944e09a754072a28c9 (patch)
tree9cb4991a6ea9b3c7fdb5eff2fb7db5d62787af4c /INSTALL
parentd06a5b23c85d615310ce199c04bc2d122d16526a (diff)
downloadredis-70a214c46d00f37b83a4cb944e09a754072a28c9.tar.gz
INSTALL file added BETATESTING.txt removed
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL19
1 files changed, 19 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 000000000..7c6635aa1
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,19 @@
+To compile Redis, do the following:
+
+ cd src; make
+
+The compilation will produce a redis-server binary.
+Copy this file where you want.
+
+Run the server using the following command line:
+
+ /path/to/redis-server
+
+This will start a Redis server with the default configuration.
+
+Otherwise if you want to provide your configuration use:
+
+ /path/to/redis-server /path/to/redis.conf
+
+You can find an example redis.conf file in the root directory
+of this source distribution.