Redis Installation
I am using ubuntu15.1, open terminal, enter command: sudo apt-get install redis-server will be installed on the native Redis.
Start Redis
Start Redis command: Redis-server
Personal boot Redis after the terminal display content is as follows:
The latest version is 3.0.3,redis using the default port is 6379
Check if Redis is working
The Redis prompt opens when you use the command redis-cli
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.
After you enter the command ping, the result is pong, which means that Redis has been successfully installed on your computer. The results are as follows
Redis Interface Manager: Http://redisdesktop.com/download
Redis Desktop Manager will give you a user interface to manage Redis keys and data
Study Reference Address: http://www.yiibai.com/redis/redis_quick_guide.htmL
2016022602-redis Installation and Startup