]>
Commit | Line | Data |
---|---|---|
70a214c4 | 1 | To compile Redis, do the following: |
2 | ||
3 | cd src; make | |
4 | ||
5 | The compilation will produce a redis-server binary. | |
6 | Copy this file where you want. | |
7 | ||
8 | Run the server using the following command line: | |
9 | ||
10 | /path/to/redis-server | |
11 | ||
12 | This will start a Redis server with the default configuration. | |
13 | ||
14 | Otherwise if you want to provide your configuration use: | |
15 | ||
16 | /path/to/redis-server /path/to/redis.conf | |
17 | ||
18 | You can find an example redis.conf file in the root directory | |
19 | of this source distribution. |