This article describes the installation and deployment and maintenance methods for Redis2.8.
Installation of Redis on Linux
Step 1:
First from the official website in the Redis version of the compressed package redis-2.8.19.tar.gz
Http://download.redis.io/releases/redis-2.8.19.tar.gz
Step 2: Compile the source program:
Tar zxvf redis-2.8.19.tar.gz? 1 [neil@neilhost downloads]$ tar zxvf redis-2.8.19. Tar. gz? 1 [neil@neilhost downloads]$ CD REDIS-2.8.19/SRC
MongoDB can be used after decompression, but Redis needs to be compiled, but not configured.
? 1 2 3 4 5 6 7 8 (9) [Neil@neilhost src]$ make ..... Here is a large number of compilation procedures, omitted. There may be some warning, do not go to the official they ... CC SETPROCTITLE.O cc hyperloglog.o cc latency.o cc sparkline.o LINK redis-server INSTALL redis-se Ntinel cc REDIS-CLI.O link redis-cli cc redis-benchmark.o link redis-benchmark cc redis-check-dum P.O Link redis-check-dump CC redis-check-aof.o link redis-check-aof hint:it ' a good idea to run ' make Test ';)
Enter SRC for installation? 1