1 To compile Redis, do the following:
 
   5 The compilation will produce a redis-server binary.
 
  11 and all the binaries will be installed on /usr/local/bin.
 
  15     make PREFIX=/some/other/directory install
 
  17 to have the binaries in /some/other/directory/bin.
 
  19 Run the server using the following command line:
 
  23 This will start a Redis server with the default configuration.
 
  25 Otherwise if you want to provide your configuration use:
 
  27     /path/to/redis-server /path/to/redis.conf
 
  29 You can find an example redis.conf file in the root directory
 
  30 of this source distribution.