centos6 Linux安裝redis 2.6.14

一、獲取安裝文件redis

wget http://download.redis.io/redis-stable.tar.gzserver

 

二、解壓文件get

tar xzvf redis-stable.tar.gzio

 

三、進入目錄編譯

cd redis-stabletable

 

四、編譯cli

make配置

 

五、安裝grep

make install配置文件

 

六、設置配置文件路徑

mkdir -p /etc/redis

cp redis.conf /etc/redis

 

七、修改配置文件

vi /etc/redis/redis.conf
僅修改: daemonize yes 

 

八、啓動

/usr/local/bin/redis-server /etc/redis/redis.conf

 

九、查看啓動

ps -ef | grep redis  

 

十、使用客戶端

redis-cli

>set name dana

OK

>get name

"dana"

相關文章
相關標籤/搜索