I downloaded and installed MySQL 5.1.47 for OS X 10.6 using the DMG archive:

mysql-5.1.47-osx10.6-x86_64.dmg

I also installed MySQL.prefPane and MySQLStartupItem.pkg. MySQL.prefPane is a Preference Pane. The problem is, whenever I attempt to start/stop MySQL from the Preference Pane, System Preferences just hangs. It runs at about 50% CPU forever, eventually I have for force quit System Preferences. The same thing happens if I toggle "Automatically Start MySQL Server on Startup". Basically the MySQL Preference Pane is not functional.

Note that I have no problem starting MySQL from the command line:

sudo /usr/local/mysql/bin/mysqld_safe

I have tried reinstalling MySQL and the Preference Pane. I'm using the standard installation location, nothing out of the ordinary. Every time the MySQL Preference Pane just hangs.

I'm doing this on a Macbook Pro (Intel) running OS X 10.6.3. There are no old versions of MySQL on this machine.

Follow-up: Well it's now January 2012 so I figure I'd check to see if this has been fixed. I tried the latest MySQL 5.5.20 on OS X 10.6.8 and it's still broken - same behavior, it just hangs (had to force quit). I tried Jamie Wong's and carloandaya's suggestions, both did not work.

link|improve this question

71% accept rate
Belongs on serverfault. – Shaggy Frog Jun 12 '10 at 5:00
Is there a way to migrate it over to serverfault? – Steve Kuo Jun 12 '10 at 5:03
Yes. If there are 4 more "belongs on serverfault" close votes it will be migrated. – Shaggy Frog Jun 12 '10 at 5:31
I would do a sample trace in Activity Monitor and see where it's stuck. – Ken Aspeslagh Jun 12 '10 at 5:52
feedback

4 Answers

For anyone still encountering this problem, see: http://bugs.mysql.com/bug.php?id=53232

Specifically, here's Rembert Oldenboom's response:

Issue still exists with mysql 5.5.8 on brand new on mbp i7 2.8. With the comments of others the fix was easy:

Edit /usr/local/mysql/support-files/mysql.server Search for "Set some defaults" about 4 lines down, replace the line

basedir=.

with

basedir=/usr/local/mysql

Then search for "Set pid file if not given" about 3 lines down, replace the line

mysqld_pid_file_path=$datadir/hostname.pid

with

mysqld_pid_file_path=$datadir//bin/hostname.pid

Now the prefPane will work.

link|improve this answer
This doesn't work for me in OS X Lion. – marcamillion Nov 6 '11 at 19:51
feedback

Are you sure that panther supports 64 bits apps ?

Seems that when a I'm trying to open a 32 bits preference pane on snow leopard, the preference pane says "well this pane is 32bits, and you've got a 64bits macos, I'm restarting this pane"

Maybe it's hanging because it's the opposite ? getting 32bits preference pane and trying to open a 64bits pane ?

link|improve this answer
It all came from them same dmg so I would assume it's supposed to work with each other. – Steve Kuo Jun 12 '10 at 5:00
feedback

I've installed and re-installed MySQL 5.5.15 using some of the tips that I found on the net. I found that selecting "install for all users of this machine" rather than "install only for current user" after double-clicking the preferences pane installation from the .dmg file makes it work. It's the only step that I changed in my many installations of MySQL on Snow Leopard.

link|improve this answer
feedback

Under OS X Lion the following worked for me:

edit /usr/local/mysql/support-files/mysql.server

change lines ~ 46 & 47

basedir=
datadir=

to

basedir=/usr/local/mysql
datadir=/usr/local/mysql/data
link|improve this answer
what permissions, user and group values do you see when you do ls -l /usr/local/ | grep mysql and ls -l /usr/local/mysql/ | grep data ? – rdamborsky May 4 at 11:33
I just found out (by checking localhost.local.err file) that there was an issue with permissions of /tmp directory. Since I have a symlink to the tmp (from ssd to hdd), target of the symlink didn't have the permissions of 777. After doing chmod 777 on the symlink target directory, mysql started up. – rdamborsky May 4 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.