Rate This Document
Findability
Accuracy
Completeness
Readability

Compiling the redis-server-2.8.19 Source Code

  1. Download the redis-server-2.8.19 source code.
    1
    2
    cd /home
    wget http://download.redis.io/releases/redis-2.8.19.tar.gz --no-check-certificate
    
  2. Decompress the source code package.
    1
    tar xvf redis-2.8.19.tar.gz
    
  3. Perform compilation in the source code directory.
    1
    2
    cd redis-2.8.19
    make -j40
    
  4. Perform installation.
    1
    make install
    
  5. Start the Redis verification service. The executable file path is /home/redis-2.8.19/src/redis-server.
    1
    2
    cd /home/redis-2.8.19
    ./src/redis-server
    

  6. After the verification is successful, press Ctrl+C to stop the service.