mac 安裝使用redis
安裝redis
redis的安裝方法有2種 下載原始碼編譯安裝和使用homebrew安裝。 採用後一種方法,通過homebrew安裝redis:
$ brew install redis
從以上日誌輸出可以看出,如果需要給redis服務端指定配置檔案,啟動命令應該是這樣的: $ redis-server /usr/local/etc/redis.conf 安裝完成後redis預設的配置檔案redis.conf位於 /usr/local/etc
使用cat命令檢視redis.conf: $ cat /usr/local/etc/redis.conf
啟動redis
可以通過以下命令啟動redis: $ redis-server /usr/local/etc/redis.conf 終端輸出
檢測redis是否啟動
重新開啟一個終端視窗,輸入命令 $ redis-cli ping 該終端輸出 pong 說明伺服器運作正常。
關閉redis
關閉redis有2種方法:
方法1 在執行啟動命令的終端視窗使用ctrl+c,此時第一個視窗輸出
8773:M 11 Sep 21:46:26.581 # User requested shutdown… 8773:M 11 Sep 21:46:26.581 * Saving the final RDB snapshot before exiting. 8773:M 11 Sep 21:46:26.583 * DB saved on disk 8773:M 11 Sep 21:46:26.583 * Removing the pid file. 8773:M 11 Sep 21:46:26.583 # Redis is now ready to exit, bye bye… 然後在另外一個終端視窗執行$ redis-cli ping,輸出 Could not connect to Redis at 127.0.0.1:6379: Connection refused 說明確實已關閉
方法2 在另外一個終端視窗執行$ redis-cli shutdown,此時第一個視窗輸出
8773:M 11 Sep 21:46:26.581 # User requested shutdown… 8773:M 11 Sep 21:46:26.581 * Saving the final RDB snapshot before exiting. 8773:M 11 Sep 21:46:26.583 * DB saved on disk 8773:M 11 Sep 21:46:26.583 * Removing the pid file. 8773:M 11 Sep 21:46:26.583 # Redis is now ready to exit, bye bye… 然後在另外一個終端視窗執行$ redis-cli ping,輸出 Could not connect to Redis at 127.0.0.1:6379: Connection refused 說明確實已關閉