The production environment for Redis is recommended for deployment to Linux, and at development time you can connect to the Windows version, which describes how to deploy Redis on Linux.
$ wget http://download.redis.io/releases/redis-3.2.8.tar.gz$ tar xzf redis-3.2. 8 . tar.gz$ CD Redis-3.2. 8 $ Make
The above statement wget download an installation package from the Internet, tar it extracts the package, make to compile and install the program.
If the Wget tool is not installed on Linux, you can use the Yum command to install the program from the Web.
Start the installation using the Make command
Open the Redis-server server below
$ src/redis-server
Connect using the REDIS-CLI client tool
$ src/redis-cliredisset lind hellowordokredisget" Helloword"
It's easier to deploy Redis if you're going to do it with your Uncle step-by-step!
Hope this article can help everyone!
Deployment in a Redis~linux environment