Compiling the redis-server-2.8.19 Source Code
- 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
- Decompress the source code package.
1tar xvf redis-2.8.19.tar.gz
- Perform compilation in the source code directory.
1 2
cd redis-2.8.19 make -j40
- Perform installation.
1make install - 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

- After the verification is successful, press Ctrl+C to stop the service.
Parent topic: Compiling and Installing Embedded Redis