Installing Redis on Ubuntu
To install Redis on Ubuntu, open the terminal, and then type the following command:
$sudo apt-get update$sudo apt-get Install Redis-server
This will install Redis on your computer.
Start Redis
$redis-server
Check to see if Redis is working?
$redis-CLI
This will open a redis hint, as shown in:
Redis 127.0.0.1:6379>
In the above tip 127.0.0.1 is the IP address of this machine, and 6379 is the port that the Redis server is running on. Now enter the ping command as shown in.
Redis 127.0.0.1:6379> Pingpong
This means that you have successfully installed Redis on your machine.
Installing Redis Desktop Manager on Ubuntu
To install Redis Desktop Management on Ubuntu, just download the package from Http://redisdesktop.com/download and install it.
Redis Desktop Manager gives the user interface to manage Redis keys and data.
Reprint Please specify: Article reprinted from: Easy Hundred tutorials [http:/www.yiibai.com]
Redis Environment Installation