redis使用

Posted wujinhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis使用相关的知识,希望对你有一定的参考价值。

一、启动redis
 sudo ../bin/redis-server ./redis.conf

二、停止redis
 命令:redis-cli shutdown

三、命令行连接 本地 redis 服务
 $redis-cli

 127.0.0.1:6379>PING

PONG 

四、配制Redis远程连接
    1、在redis.conf里设置绑定IP:bind 0.0.0.0
    2、redis.conf里设置密码 requirepass
 
五、命令行远程连接 redis 服务
    $ redis-cli -h host -p port -a password

六、设置系统自动启动Redis服务
 echo "redis-server /etc/redis.conf" >>/etc/rc.local

以上是关于redis使用的主要内容,如果未能解决你的问题,请参考以下文章

怎样使用redis缓存,java代码

redis缓存怎么结合java使用

如何使用 Nodejs + Redis 获取给定 redis 键的 redis 值

Redis数据库的日常使用

redis windows 怎么使用

Redis使用总结 (序列三)