centos 6.5安裝 redis,centosredis
版本:redis-2.8.19.tar.gz
檢查下面依賴是否安裝,如果沒有要先安裝,不然會有異常。
yum installgcc-c++
yum install -y tcl。
1、擷取安裝檔案
redis-2.8.19.tar.gz
http://redis.io/download
2、解壓檔案
tar -xzvf redis-2.8.19.tar.gz
mv redis-2.8.19 /usr/local/redis
3、進入目錄
cd redis
4、編譯
make
5、安裝
make install
6、設定設定檔路徑
mkdir -p /etc/redis
cp redis.conf/etc/redis
7、修改設定檔
vi /etc/redis/redis.conf
僅修改: daemonize yes
8、啟動
/usr/local/bin/redis-server/etc/redis/redis.conf
9、查看啟動
ps -ef | grep redis
10、使用用戶端
redis-cli
>set namedavid
OK
11.關閉用戶端
redis-cli shutdown
12.異常及解決方案
異常一:
make[2]: cc:Command not found
異常原因:沒有安裝gcc
解決方案:yum install gcc-c++
異常二:
zmalloc.h:51:31:error: jemalloc/jemalloc.h: No such file or directory
異常原因:一些編譯依賴或原來編譯遺留出現的問題
解決方案:make distclean。清理一下,然後再make。
在make成功以後,需要make test。在make test出現異常。
異常一:
couldn'texecute "tclsh8.5": no such file or directory
異常原因:沒有安裝tcl
如果不先安裝tcl在編譯redis的時候,執行make test 會報以下錯誤,這步也可以省略,不執行make test直接執行make install對redis的啟動和關閉沒有什麼影響。
[root@localhostredis]# make test
cd src &&make test
make[1]: Enteringdirectory `/usr/local/webserver/redis/src'
You need tcl 8.5 ornewer in order to run the Redis test
make[1]: *** [test]Error 1
make[1]: Leavingdirectory `/usr/local/webserver/redis/src'
make: *** [test]Error 2