MySQL Forums
Forum List  »  Quality Assurance

Re: Mac Yosemite update - MySQL doesn't automatically start
Posted by: Pieter de Jong
Date: October 21, 2014 04:09AM

I believe I may have found the solution, works for me so far.

The instructions:
Create a file called com.mysql.mysql.plist in /Library/LaunchDaemons

The file should have like this code (without the horizontal lines above and below):

-------------------------------------------------------

<?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>com.mysql.mysqld</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/mysql/bin/mysqld_safe</string>
<string>--user=mysql</string>
</array>
</dict>
</plist>

-------------------------------------------------------


After reating that file, open Terminal and submit the following commands:
sudo chown root /Library/LaunchDaemons/com.mysql.mysql.plist
sudo chgrp wheel /Library/LaunchDaemons/com.mysql.mysql.plist
sudo chmod 644 /Library/LaunchDaemons/com.mysql.mysql.plist

And last command:
sudo launchctl load -w /Library/LaunchDaemons/com.mysql.mysql.plist

Then restart computer and check if the MySql server is autostarted.
Worked for me.

(Above is based on the answers given here: http://stackoverflow.com/questions/26461173/autostart-mysql-server-on-mac-os-x-yosemite/26465743#26465743)

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Mac Yosemite update - MySQL doesn't automatically start
7059
October 21, 2014 04:09AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.