Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Linux安裝Redis的方法及常見問題處理

Linux安裝Redis的方法及常見問題處理

日期:2017/1/25 10:50:31      編輯:關於Linux

  Redis是key-value存儲系統,有點類似於Memcached,但比Memcached更加實用,下面小編就給大家介紹下如何在Linux中安裝Redis及常見問題處理,一起來學習下吧。

 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++的錯誤,可嘗試上文介紹的方法進行解決。

Copyright © Windows教程網 All Rights Reserved