mac 上的 redis 安装与使用

mac 上的 redis 安装与使用

安装

通过 homebrew

 brew install redis

使用

启动

加入启动项

ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents

通过 launchctl 启动

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

另外还可以通过下面的命令启动,两者是并列的启动方式:

通过 redis-server 命令启动

redis-server /usr/local/etc/redis.conf

或者干脆直接不带后面的conf,则默认使用这个配置文件启动,默认的配置文件为/usr/local/etc/redis.conf.

停止

linux

linux上支持下列命令:

/etc/init.d/redis-server restart
/etc/init.d/redis-server stop
/etc/init.d/redis-server start

mac

mac上只支持下面的命令来停止:

redis-cli shutdown

卸载

使用下面的命令卸载:

brew uninstall redis
rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

测试

使用ping --> pong来测试服务是否正常启动。

redis-cli ping
# 返回 PONG 则已经成功启动

你可能感兴趣的:(mac,linux,数据库)