Ho installato mysql tramite homebrew in osX 10.10. Viene fornito con il file plist situato in /usr/local/opt/mysql/homebrew.mxcl.mysql.plist
. Il contenuto:
<?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.mysql</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/opt/mysql/bin/mysqld_safe</string>
<string>--bind-address=127.0.0.1</string>
<string>--datadir=/usr/local/var/mysql</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>/usr/local/var</string>
</dict>
</plist>
Ho creato un link simbolico, aggiunto permessi e cose e ho detto launchctl per caricarlo e salvarlo.
sudo chown root:wheel /Library/LaunchAgents/homebrew.mxcl.mysql.plist
sudo chmod 644 /Library/LaunchAgents/homebrew.mxcl.mysql.plist
sudo launchctl load -w /Library/LaunchAgents/homebrew.mxcl.mysql.plist
Ma dopo il riavvio non carica mysql e non salva la voce. Posso vederlo chiaramente usando sudo launchctl list | grep mysql
Come posso ottenere che l'oggetto rimanga in launchd dopo il riavvio?