2012-03-16 68 views
5

在末尾的說明安裝啓動PostgreSQL,請提供一個解決方案時,在用戶登錄:使用Homebrew安裝自動啓動PostgreSQL的正確方法是什麼?

cp /usr/local/Cellar/postgresql/9.1.3/homebrew.mxcl.postgresql.plist ~/Library/LaunchAgents/ 
    launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist 

我希望,如果我把plist中在/ Library/LaunchAgents /相反,它會啓動,而無需等待讓我登錄。不幸的是,這不是它的工作原理。我沒有找到好的plist編輯指令,我真的害怕嘗試修補它。我猜測問題在於用戶名密鑰,但我不想刪除它,只是希望它的工作。

這是生成的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>homebrew.mxcl.postgresql</string> 
    <key>ProgramArguments</key> 
    <array> 
    <string>/usr/local/bin/postgres</string> 
    <string>-D</string> 
    <string>/usr/local/var/postgres</string> 
    <string>-r</string> 
    <string>/usr/local/var/postgres/server.log</string> 
    </array> 
    <key>RunAtLoad</key> 
    <true/> 
    <key>UserName</key> 
    <string>my_username</string> 
    <key>WorkingDirectory</key> 
    <string>/usr/local</string> 
    <key>StandardErrorPath</key> 
    <string>/usr/local/var/postgres/server.log</string> 
</dict> 
</plist> 
+0

原來,解決方案與將plist移動​​到LaunchDaemons而非LaunchAgents一樣簡單。 – burger 2012-03-20 03:28:47

回答

5

我會強烈建議使用Supervisord。我在Mac上使用它,它非常好。如果你更喜歡使用PList,那麼有一個很好的工具,叫做Lingon,它是一個管理這些工具的GUI應用程序。新版本不是免費的,但舊版本似乎免費且有效。

+1

Lingon是一個非常漂亮的工具。不能相信任何與plist相關的搜索都沒有讓我知道。 – burger 2012-03-20 03:31:22

+0

是的,我花了一些時間才找到它,儘管每次我必須在啓動時運行一些東西,我都對plists進行了Google搜索:) – kgr 2012-03-20 09:33:06

相關問題