Home: http://redis.io/
Download the installation:
Redis is very easy to install, already has a ready-made makefile file, run the make command directly.
<span style= "FONT-SIZE:18PX;" >$ cd/tmp$ wget http://download.redis.io/releases/redis-2.8.19.tar.gz$ tar xzf redis-2.8.19.tar.gz$ cd redis-2.8.19 $ make</span>
It's under the/usr/local/bin/.Four executable files:
Redis-benchmark,
redis-cli,
Redis-server,
Redis-statthese four files,Their role is as follows:
- Redis-server:redis Server Daemon Startup program
- Redis-cli:redis command-line operation tool. Of course, you can also use Telnet to operate on its plain text protocol.
- Redis-benchmark:redis Performance testing tools to test the read and write performance of Redis in your system and in your configuration
- Redis-stat:redis Status Detection Tool to detect Redis current status parameters and delay status
Redis.conf is below/etc/redis/.
This is a complete redis available package.
Start using:
Redis can now be started, and Redis has only one boot parameter, which is his profile path.
redis-server/etc/redis/redis.conf
at this point, you can open a terminal for testing, the default listening port in the configuration file is 6379
Redis-cli
here is the result of the operation
Ubuntu Redis Installation