ECS centos6.5安裝redis3.0.7單機版

1.將安裝文件上傳到服務器/tmp路徑下,而後進入/usr/local路徑下解壓linux

cd /usr/local
cp /tmp/redis-3.0.7.tar.gz ./
cd redis-3.0.7

2.安裝
#若是不加參數,linux下會報錯
make MALLOC=libcredis

3.啓動或關閉
#啓動redis服務器

src/redis-server &

#關閉redis測試

src/redis-cli shutdown

4.測試code

$ src/redis-cli
127.0.0.1:6379> set foo bar
OK
127.0.0.1:6379> get foo
"bar"
$ 


測試成功server

相關文章
相關標籤/搜索