]> git.saurik.com Git - redis.git/blame - INSTALL
Exit with Fatal error at startup if the RDB file signature or version is wrong.
[redis.git] / INSTALL
CommitLineData
70a214c4 1To compile Redis, do the following:
2
3 cd src; make
4
5The compilation will produce a redis-server binary.
e1386503
PM
6
7To install Redis, use
8
9 make install
10
11and all the binaries will be installed on /usr/local/bin.
12
13Alternatively:
14
b6c46d17 15 make PREFIX=/some/other/directory install
e1386503
PM
16
17to have the binaries in /some/other/directory/bin.
70a214c4 18
19Run the server using the following command line:
20
21 /path/to/redis-server
22
23This will start a Redis server with the default configuration.
24
25Otherwise if you want to provide your configuration use:
26
27 /path/to/redis-server /path/to/redis.conf
28
29You can find an example redis.conf file in the root directory
30of this source distribution.