码迷,mamicode.com
首页 > 其他好文 > 详细

redis的使用

时间:2018-04-29 21:18:23      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:ref   停止   redis   后端   install   保存   down   download   获得   

wget http://download.redis.io/releases/redis-3.0.0.tar.gz 下载
tar -vxzf redis-3.0.0.tar.gz 解压
cd redis-3.0.0
make 编译
make PREFIX=/usr/local/redis/ install 安装
cp redis.conf /usr/local/redis 复制文件
cd bin
./redis-server 前端启动
vim redis.conf 后端启动 wq保存
daemonize no改为daemonize yes
./bin/redis-server ./redis.conf 启动
ps -ef | grep -i redis 6379端口
./bin/redis-cli shutdown 停止
./bin/redis-cli 客户端
ping 连接测试 pong
set name imooc 保存 name(key)
get name 获得
keys * 获得全部
del name 删除

redis的使用

标签:ref   停止   redis   后端   install   保存   down   download   获得   

原文地址:https://www.cnblogs.com/test1234/p/8971796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!