]> git.saurik.com Git - redis.git/blame - INSTALL
Add support for domain sockets to redis-cli
[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.
6Copy this file where you want.
7
8Run the server using the following command line:
9
10 /path/to/redis-server
11
12This will start a Redis server with the default configuration.
13
14Otherwise if you want to provide your configuration use:
15
16 /path/to/redis-server /path/to/redis.conf
17
18You can find an example redis.conf file in the root directory
19of this source distribution.