forked from redis/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INSTALL file added BETATESTING.txt removed
- Loading branch information
Showing
2 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |