brew安装Redis
1️⃣、查看Redis服务
2️⃣、安装指定版本Redis
3️⃣、配置环境变量
4️⃣、启动Redis(以下启动方式,teminal窗口关闭后服务不会停止)
5️⃣、查看本地运行的服务列表
6️⃣、连接本地的Redis,简单操作并退出连接
redis服务设置开机启动的方法
1️⃣、开机启动redis命令
2️⃣、使用launchctl启动redis server
3️⃣、使用配置文件启动redis server
4️⃣、停止redis server的自启动
5️⃣、redis 配置文件的位置
6️⃣、卸载redis和它的文件
7️⃣、测试redis server是否启动
brew安装Redis
1️⃣、查看Redis服务
brew search redis
2️⃣、安装指定版本Redis
brew install [email protected]
3️⃣、配置环境变量
打开.bash_profile文件:
open -e ~/.bash_profile
将Redis环境变量加入后如下:
使.bash_profile生效:
source ~/.bash_profile
4️⃣、启动Redis(以下启动方式,teminal窗口关闭后服务不会停止)
brew services start [email protected]
5️⃣、查看本地运行的服务列表
brew services list //查看正在运行的服务列表
6️⃣、连接本地的Redis,简单操作并退出连接
redis服务设置开机启动的方法
注意:上述的brew services start 命令没有成功启动Redis服务时可使用下面方法
1️⃣、开机启动redis命令
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
2️⃣、使用launchctl启动redis server
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
3️⃣、使用配置文件启动redis server
redis-server /usr/local/etc/redis.conf
4️⃣、停止redis server的自启动
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
5️⃣、redis 配置文件的位置
/usr/local/etc/redis.conf
6️⃣、卸载redis和它的文件
brew uninstall redis rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
7️⃣、测试redis server是否启动
redis-cli ping //也可以直接使用 redis-cli -h 127.0.0.1测试是否能连接Redis服务