mac brew 安裝redis
1使用mac的包管理工具brew一行命令搞定安裝。若未安裝brew,命令列先輸入以下命令安裝brew。
(brew 是 Mac 下的一個包管理工具,類似於 centos 下的 yum,可以很方便地進行安裝/解除安裝/更新各種軟體包,例如:nodejs, elasticsearch, kibana, mysql, mongodb 等等,可以用來快速搭建各種本地環境,程式設計師必備工具)
/bin/bash -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
如果報錯 Command failed with exit 128:git 參考
解決方式:
輸入brew -v後會提示你執行兩個配置命令,直接複製執行就ok了!
git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-cask
Homebrew/homebrew-cask
git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core
Homebrew/homebrew-core
————————————————
2然後安裝redis 執行 brew install [email protected]
3如果有下面提示先執行 brew install [email protected]
Required: [email protected] ✘
4 執行命令啟動redis
brew services start [email protected]
brew services stop [email protected]
brew services restart [email protected]
5配置環境變數
編輯 ~/.bash_profile
檔案,編輯完後
執行source ~/.bash_profile
使環境變數配置檔案生效,內容如下
export REDIS_HOME=/usr/local/opt/[email protected]
export PATH=$REDIS_HOME/bin:$PATH
6 然後就可以執行 redis-server 或者redis-cli了
啟動server
redis-server /usr/local/etc/redis.conf
啟動client
redis-cli -h 127.0.0.1 -p 6379 (redis-cli直接啟動也可以,預設就是127.0.0.1:6379)
7關閉殺掉redis
redis-cli shutdown
或者 sudo pkill redis-server
或者直接crtl+c(在redis前臺介面,不是守護程序啟動)