Redis
Posted yt风往南吹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis相关的知识,希望对你有一定的参考价值。
安装Redis服务自动启动
redis-server --service-install redis.windows-service.conf --loglevel verbose
常用命令
卸载服务:redis-server --service-uninstall
开启服务:redis-server --service-start
停止服务:redis-server --service-stop
设置密码
# requirepass foobared
requirepass 123 指定密码123
设置远程服务绑定
bind 192.168.1.77
上述配置在redis.windows-service.conf中
Cli连接
redis-cli -h 192.168.1.77 -p 6379 -a "123"
详细请参考:
http://www.cnblogs.com/jaign/articles/7920588.html
以上是关于Redis的主要内容,如果未能解决你的问题,请参考以下文章