Mac安裝Redis

秋夜雨巷發表於2024-04-19

Mac安裝Redis

# 安裝Homebrew命令,Homebrew安裝的軟體會預設在/usr/local/Cellar/路徑下
# /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
# Homebrew命令安裝redis
brew install redis

啟動Redis

#方式一:使用brew幫助我們啟動軟體
brew services start redis
#方式二
redis-server /usr/local/etc/redis.conf

#執行以下命令
redis-server

#檢視redis服務程序
ps axu | grep redis

redis-cli連線redis服務

redis預設埠號6379,預設auth為空,輸入以下命令即可連線

redis-cli -h 127.0.0.1 -p 6379

關閉redis服務

# 正確停止Redis的方式應該是向Redis傳送SHUTDOWN命令
redis-cli shutdown

# 強行終止redis
sudo pkill redis-server

redis.conf

redis預設是前臺啟動,如果我們想以守護程序的方式執行(後臺執行),可以在redis.conf中將daemonize no,修改成yes即可。

Redis客戶端視覺化工具

https://github.com/RedisInsight/RedisDesktopManager/releases

相關文章