Redis已经安装成功,请问Mac下如何开机启动呢?
已解决问题,谢谢,特此总结: Mac下配置Redis服务器(自启动、后台运行)
巴扎黑2017-04-21 10:58:44
如果你用 brew 的話, 直接 brew install redis
然後它會告訴你要
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
這樣就能在使用者登入的時候自己啟動啦
如果是自己編譯的 redis, 那就自己寫個 redis.plist 再
launchctl load YOUR_PATH/NAME_OF_REDIS.plist
以下範例內的 {...} 請替換成自己的設定
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>local.autorun.redis</string>
<key>ProgramArguments</key>
<array>
<string>{REDIS_BIN_PATH}/redis-server</string>
<string>{REDIS_CONFIG_PATH}/redis.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>{YOUR_USERNAME}</string>
<key>WorkingDirectory</key>
<string>/usr/local/var</string>
<key>StandardErrorPath</key>
<string>/usr/local/var/log/redis.log</string>
<key>StandardOutPath</key>
<string>/usr/local/var/log/redis.log</string>
</dict>
</plist>
祝成功 ;)
伊谢尔伦2017-04-21 10:58:44
看了下資料:《三種方式設定Mac OS X的啟動項目》 下面的回答確實不對,看來沒有這麼簡單。
下面是錯誤答案,看看笑話就算了
雖然沒用過Redis,但可以用launchctl指令來設定開機啟動你想要的進程。
這個指令用來控制OS X系統裡的啟動進程(launchd)的. 如果你需要即時控制launchd啟動的服務的時候,可以使用這個指令控制。 例如,如果你需要停止Spotlight服務,可以執行下面的指令:
launchctl unload /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
停止之後又要啟動該服務,那麼:
launchctl load /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
你可以嘗試使用下面命令來試試
launchctl load redis-server start
迷茫2017-04-21 10:58:44
推薦兩個gui的工具,cakebrew
和launchrocket
,cakebrew用來管理brew的formulae,launchrocket用來管理相關服務的啟動/停止/開機啟動