在末尾的說明安裝啓動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>
原來,解決方案與將plist移動到LaunchDaemons而非LaunchAgents一樣簡單。 – burger 2012-03-20 03:28:47