Redis是key-value存儲系統,有點類似於Memcached,但比Memcached更加實用,下面小編就給大家介紹下如何在Linux中安裝Redis及常見問題處理,一起來學習下吧。
1.使用tar -xzvf redis-2.4.5.tar.gz來解壓安裝包
2.使用make命令來編譯Redis 如果出現錯誤需要查看是否缺少gcc gcc-c++
zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory
zmalloc.h:55:2: error: #error “Newer version of jemalloc required”
make[1]: *** [adlist.o] Error 1
make[1]: Leaving directory `/data0/src/redis-2.6.2/src‘
make: *** [all] Error 2
解決辦法是:
make MALLOC=libc
3.make install
上面就是Linux安裝Redis的步驟及常見問題處理的介紹了,如果你在安裝的過程中出現缺少gcc gcc-c++的錯誤,可嘗試上文介紹的方法進行解決。