版权声明:本文首发 http://asing1elife.com ,转载请注明出处。 https://blog.csdn.net/asing1elife/article/details/82892905
Redis 是一种 NoSQL 数据库
更多精彩
- 更多技术博客,请移步 asing1elife’s blog
安装
- 通过 Homebrew套件管理器 可以快速安装 Redis
brew install redis
配置
- Redis 的配置文件路径是
/usr/local/etc/redis.conf
- 在该配置文件中找到
requirepass
后删除前面的注释,并修改密码即可为 Redis 设置密码,需要重启 - 可以通过 Homebrew 插件自启动 设置 Redis 的开机自启动
注意
- 在 Redis 终端通过
set requirepass xxx
可以快速设置密码,不需要重启 - 但如果配置文件
redis.conf
中没有该属性的话,客户端像服务端发送 AUTH 请求会被拒绝 - 并返回
ERR Client sent AUTH, but no password is set
- 解决该问题需要在配置文件中设置密码
命令
-
redis-cli -h 10.24.234.0 -p 6379 -a i_redis
- 连接远程服务器
- -h 服务器 IP 地址
- -p 端口号
- -a 密码