I would like to auto start the MySQL server on startup. This was possible in Mavericks but seems to be not working on Yosemite.
edit: seems this wo
Create /Library/LaunchDaemons/com.mysql.mysql.plist and save it with the following plist:
/Library/LaunchDaemons/com.mysql.mysql.plist
KeepAlive Label com.mysql.mysqld ProgramArguments /usr/local/mysql/bin/mysqld_safe --user=mysql
Then load the newly created plist file
sudo launchctl load -w /Library/LaunchDaemons/com.mysql.mysql.plist