mac通过homebrew安装redis及相关命令操作

来源:互联网 发布:java贪吃蛇大作战源码 编辑:程序博客网 时间:2024/05/22 14:15

Let’s install Redis for the good.

$ brew install redis

After installation, you will see some notification about some caveats on configuring. Just leave it and continue to following some tasks on this article.


Launch Redis on computer starts.

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

Start Redis server via “launchctl”.

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

Start Redis server using configuration file.

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

Stop Redis on autostart on computer start.

$ launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

Location of Redis configuration file.

/usr/local/etc/redis.conf

Uninstall Redis and its files.

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

Get Redis package information.

$ brew info redis

Test if Redis server is running.

$ redis-cli ping

If it replies “PONG”, then it’s good to go!

Shutdown Redis server.

$ redis-cli shutdown

Get help.

$ redis-cli help @server


Well, I guess, that’s it!

Have fun Redis-ing ☺

0 0
原创粉丝点击