官网: https://redis.io
中文网: Redis中文网
安装
brew install redis
查看版本
redis-server --version
开启关闭服务
方式一(不推荐)
这种方式不太建议,因为控制台不用输出相应的日志
开启服务
brew services start redis
关闭服务
brew services stop redis
方式二(推荐)
#通过自定义配置文件启动 Redis
redis-server ~/conf/redis.conf
指定端口
redis-cli -h localhost -p 6379
注:指定端口前要先开启服务
- -h ip地址
- -p 端口号
- -a 密码(如果需要)
使用 homebrew 安装 redis 的文件位置:
- Redis安装位置:/opt/homebrew/Cellar/redis/7.2.5
或者
/usr/local/Cellar/redis/7.2.5
- 配置文件默认位置 /opt/homebrew/etc/redis.conf
或者
/usr/local/etc/redis.conf
配置文件开启密码
cd /opt/homebrew/etc
open redis.conf
redis-server /usr/local/etc/redis.conf
➜ ~ redis-cli
127.0.0.1:6379> keys *
(error) NOAUTH Authentication required.
127.0.0.1:6379>
说明已开启密码
➜ ~ redis-cli -a 123456
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:6379> keys *
(empty array)
127.0.0.1:6379>
G-DIS(Redis 客户端)--APP Store上搜索即可
问题Connection refused
➜ ~ redis-cli Could not connect to Redis at 127.0.0.1:6379: Connection refused
没有启动redis的服务
redis-server
Redis数据类型及常用命令