My installation Environment: UBUNTU-14.04-SERVER-AMD64
1. Under/usr/local
>>wget http://download.redis.io/releases/redis-2.8.12.tar.gz
2. Unzip after download
>>tar xvf redis-2.8.12.tar.gz
3. Compiling
>>make
(There is no GCC installed here, so apt-get install GCC, but there are 404 update the next source or manual settings: Apt-get update)
If you have reported error:cpu you selected does don't support x86-64 instruction set
Description does not support 64-bit instructions and can be used:
>>make match= "x86-64"
4. When the compilation is complete, enter
>>src/redis-server
5, start a new client, enter into the Reids directory, enter
>>src/redis-cli
6. Testing
>>set user_0001 Jack
>>ok
>>get user_001
>> "Jack"
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Redis installation under Linux