Read my latest article: Announcing RailsDeveloper (posted Wed, 01 Sep 2010 17:01:00 GMT)

Starting MySQL after upgrading to OS X Leopard

Posted by Robby Russell Sat, 27 Oct 2007 11:13:00 GMT

54 comments Latest by Birthday cakes 2011 Tue, 31 Aug 2010 18:53:49 GMT

If you upgraded to OS X Leopard and are running MySQL from the MySQL.com installer1, you might be having some problems with starting it from the GUI interface. There isn’t a fix from MySQL yet, so to get around that… you can run it from the command-line.

Start MySQL from the command line

cd /usr/local/mysql; ./bin/mysqld_safe &

This should get MySQL up and running for you. If someone wants to share a tip on how to get this to start automatically on reboot, please post a comment and I’ll help get the word out.

1 I didn’t have this problem as I installed MySQL via MacPorts... but this came up for a few members of PLANET ARGON after they upgraded to Leopard.

Subscribe to my RSS feed Enjoying the content? Be sure to subscribe to my RSS feed.
Comments

Leave a response

  1. Avatar
    Greg Newman Sat, 27 Oct 2007 12:35:34 GMT

    Use sleepwatcher with a .wakeup script to start it up.

  2. Avatar
    Greg Newman Sat, 27 Oct 2007 12:37:34 GMT

    I just tried installing MySQL from macports and it fails due to zlib dependency issues on leopard. How’d you get it working Robby?

  3. Avatar
    David smalley Sat, 27 Oct 2007 16:40:19 GMT

    Probably not the safest thing to do, but I saw someone on the official mysql bug report for this suggest doing…

    sudo chmod -R 777 /usr/bin/mysql

    It did that and it all works, even starting from the os x preference pane.

    Hopefully not too difficult for mysql to track down what is causing that if its just a permissions issue.

  4. Avatar
    jerome Sat, 27 Oct 2007 20:09:12 GMT

    which version is installed ?

  5. Avatar
    Scott Sat, 27 Oct 2007 21:49:44 GMT

    I got it to autoboot from a fresh 10.5 install after doing what I posted here:

    http://railsforum.com/viewtopic.php?id=12367

    I can elaborate if you need

  6. Avatar
    onizuka Sat, 27 Oct 2007 23:56:45 GMT

    Another easy way is make an Automator application and have it loaded at startup. Just run Automator, all ‘Run shell script’ from Utilities to the workflow, paste ‘sudo /usr/local/mysql/bin/safe_mysqld’ in the text field, save the workflow as an application, and then add this application to you account startup items. Arguably convenient solution, I admit.

  7. Avatar
    andyengle Sun, 28 Oct 2007 04:36:35 GMT

    Hi Rob.

    I checked one of the MySQL error logs on my Mac (running 10.5 Leopard) and found the following:

    /usr/local/mysql/bin/mysqld: Can’t read dir of ’/var/folders/M3/M3v1D9jnFHK0OBHWImeudU+++TI/Tmp/ ’ (Errcode: 13)

    That error was in the /usr/local/mysql/data/Macintosh.local.err file.

    So, I went to /var/folders/M3/M3v1D9jnFHK0OBHWImeudU+++TI/, did chmod 777 on both M3 and the M3v1D… directories, then MySQL started. Those directories appear to be temporary directories (I’ve not seen them before Leopard), but changing the mode on those appeared to fix the problem.

    One other note: my MySQL log file (which was originally called blacktoe.log) is now called Macintosh.log. Blacktoe is the name of my machine, but evidently now MySQL is being made to write the log to that Macintosh.log file, which is also in that /usr/local/mysql/data directory.

  8. Avatar
    David Sun, 28 Oct 2007 05:08:21 GMT

    I enabled the default PHP included with Leopard (5.1.4 I think), and it’s configured to find the MySQL socket in the /tmp folder, rather than /var/mysql/ as is configured with MySQL from mysql.com. This was giving me “unable to connect to database” errors with my web pages, and I solved it by creating a symbolic link named “mysql” in the /var directory that links to /tmp. Problem (temporarily) solved. I figured I’d toss that out in case anybody else is having the same problem.

  9. Avatar
    Greg Newman Sun, 28 Oct 2007 11:13:15 GMT

    This seems to work

    http://angry-fly.com/index.cfm/2007/10/26/Fix-for-MySQL-on-Leopard

    It also seems to be over at the apple support forums

  10. Avatar
    Josh Kieschnick Mon, 29 Oct 2007 19:44:40 GMT

    @Greg Newman

    I was having the same problems with the zlib dependency, but that was fixed once I installed Xcode 3 from the Leopard CD.

  11. Avatar
    Anna Mon, 29 Oct 2007 20:54:46 GMT

    I am looking for this for a long time. Thanks very much.

  12. Avatar
    Hasani Hunter Mon, 29 Oct 2007 21:33:13 GMT

    I use the following plist for launchd: “com.mysql.mysqld.plist” located in ”/Library/LaunchDaemons”

    To start: sudo launchctl load com.mysql.mysqld.plist To stop: sudo launchctl unload com.mysql.mysqld.plist

    Oh and make sure that the mysql installation is owned by _mysql and _mysql group.

    <?xml version=”1.0” encoding=”UTF-8”?> <!DOCTYPE plist PUBLIC ”-//Apple Computer//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”> GroupName _mysql Label com.mysql.mysqld OnDemand Program /usr/local/mysql/bin/safe_mysqld RunAtLoad UserName _mysql WorkingDirectory /usr/local/mysql
  13. Avatar
    Hasani Hunter Mon, 29 Oct 2007 21:38:11 GMT

    Let’s try this again..

    I use the following plist for launchd: “com.mysql.mysqld.plist” located in ”/Library/LaunchDaemons”

    To start: sudo launchctl load com.mysql.mysqld.plist To stop: sudo launchctl unload com.mysql.mysqld.plist

    Oh and make sure that the mysql installation is owned by _mysql and _mysql group.

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
            <key>GroupName</key>
            <string>_mysql</string>
            <key>Label</key>
            <string>com.mysql.mysqld</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/usr/local/mysql/bin/safe_mysqld</string>
            <key>RunAtLoad</key>
            <true/>
            <key>UserName</key>
            <string>_mysql</string>
            <key>WorkingDirectory</key>
            <string>/usr/local/mysql</string>
    </dict>
    </plist>
    
  14. Avatar
    Jimmy Wed, 31 Oct 2007 18:42:49 GMT

    Upgrading to Xcode 3.0, then installing mysql with macports worked great for me.

  15. Avatar
    Joannou Ng Thu, 01 Nov 2007 23:16:58 GMT
  16. Avatar
    Chris Chandler Tue, 06 Nov 2007 14:33:12 GMT
  17. Avatar
    Ash Tue, 11 Mar 2008 23:39:21 GMT

    Hi, I can’t start mysql v. 4 or 5. Using Leopard on a power pc. I get the following error

    :MySQL local$ /Library/MySQL/bin/mysqld_safe & [1] 480 :MySQL local$ touch: /Library/MySQL/var/localhost.local.err: Permission denied chown: /Library/MySQL/var/localhost.local.err: No such file or directory Starting mysqld daemon with databases from /Library/MySQL/var /Library/MySQL/bin/mysqld_safe: line 302: /Library/MySQL/var/localhost.local.err: Permission denied /Library/MySQL/bin/mysqld_safe: line 308: /Library/MySQL/var/localhost.local.err: Permission denied STOPPING server from pid file /Library/MySQL/var/localhost.local.pid tee: /Library/MySQL/var/localhost.local.err: Permission denied 080311 16:34:08 mysqld ended

    What did I do wrong? I have been trying to find a solution for 2 weeks but nothing. Others have this same issue but I haven’t seen a solution yet. Thanks.

  18. Avatar
    Ash Tue, 11 Mar 2008 23:39:27 GMT

    Hi, I can’t start mysql v. 4 or 5. Using Leopard on a power pc. I get the following error

    :MySQL local$ /Library/MySQL/bin/mysqld_safe & [1] 480 :MySQL local$ touch: /Library/MySQL/var/localhost.local.err: Permission denied chown: /Library/MySQL/var/localhost.local.err: No such file or directory Starting mysqld daemon with databases from /Library/MySQL/var /Library/MySQL/bin/mysqld_safe: line 302: /Library/MySQL/var/localhost.local.err: Permission denied /Library/MySQL/bin/mysqld_safe: line 308: /Library/MySQL/var/localhost.local.err: Permission denied STOPPING server from pid file /Library/MySQL/var/localhost.local.pid tee: /Library/MySQL/var/localhost.local.err: Permission denied 080311 16:34:08 mysqld ended

    What did I do wrong? I have been trying to find a solution for 2 weeks but nothing. Others have this same issue but I haven’t seen a solution yet. Thanks.

  19. Avatar
    Philippe Tue, 11 Mar 2008 23:54:43 GMT

    Have you tried sudo mysqld_safe ?

  20. Avatar
    Philippe Tue, 11 Mar 2008 23:55:02 GMT

    Have you tried sudo mysqld_safe ?

  21. Avatar
    dana.moore@bbn.com Thu, 01 May 2008 17:20:41 GMT

    thanks for the tip; the command line approach works fine. Some day I will have to upgrade to an X86 based Mac. Just hate to toss out a perfectly good development envt

  22. Avatar
    Darren Tue, 16 Sep 2008 23:08:23 GMT

    @Ash Do this:

    $ cd /usr/local/mysql $ sudo chown -R mysql data/ $ sudo echo $ sudo ./bin/mysqld_safe &

    That should fix chown problems and start mysql. Write /usr/local/mysql/: in your PATH variable in your .bash_login or profile if you don’t want to write /usr/local/mysql everytime.

  23. Avatar
    Tyler Mon, 12 Jan 2009 19:53:52 GMT

    I am very new to mysql and configuring my own software. I am running into the following problem when I try to run mysqld_safe. I have already run mysql_install_db, but when I try to actually run mysql it gives this error. I am on Leopard.

    :mysql ImmaculataStudios$ sudo mysqld_safe Starting mysqld daemon with databases from /usr/local/var STOPPING server from pid file /usr/local/var/my-macbook-pro.local.pid 090112 11:49:43 mysqld ended

    I am thinking it’s a permission problem, but I don’t know how do deal with that.

  24. Avatar
    abercrombie clothes Wed, 17 Mar 2010 07:19:17 GMT

    Use sleepwatcher with a .wakeup script to start it up.

  25. Avatar
    abercrombie clothes Wed, 17 Mar 2010 07:29:32 GMT

    Probably not the safest thing to do

  26. Avatar
    abercrombie clothes Wed, 17 Mar 2010 07:29:33 GMT

    Probably not the safest thing to do

  27. Avatar
    abercrombie clothes Wed, 17 Mar 2010 07:40:27 GMT

    Use sleepwatcher with a .wakeup script to start it up

  28. Avatar
    Christian Louboutin boots Thu, 06 May 2010 11:51:31 GMT

    nice content, thank you

  29. Avatar
    wholesale electronics Thu, 13 May 2010 04:53:46 GMT

    Welcome to check on our website!Any needs or any orther questions, welcome to contact us at any time ! Shopping online offers lots of benefits that you won’t find shopping in a store or by mail. The Internet is always open — seven days a week, 24 hours a day — and bargainscan be numerous online.With a click of a mouse, you can buy an airline ticket, book a hotel, send flowers to a friend .

  30. Avatar
    laptop battery factory Thu, 13 May 2010 07:03:11 GMT

    you might be having some problems with starting it from the GUI interface.

  31. Avatar
    2009 Collection Wed, 26 May 2010 04:01:24 GMT
    2009 Collection, 2009 Collection
  32. Avatar
    ugg classic cardy boots Wed, 26 May 2010 04:01:56 GMT
    ugg classic cardy boots, ugg classic cardy boots
  33. Avatar
    mac cosmetics wholesale Wed, 26 May 2010 18:04:09 GMT

    epersonal taste, I find it annoying to mentally parse. Also, I find having to write now() more than once in a WHERE clause to feel like I’m repeatin

  34. Avatar
    Chanel handbags Sat, 19 Jun 2010 08:05:18 GMT

    We are talking about the archetypal matte Chanel Wallet that is fabricated. The alligator Chanel handbags has CC flaps. Alligator derma is admired as the toughest actual you can use for a replica Chanel handbags .

  35. Avatar
    July Sun, 20 Jun 2010 06:54:21 GMT
  36. Avatar
    dfg Mon, 21 Jun 2010 04:54:10 GMT

    The commit is required because svn throws its dummy out of the pram when moving one thing over another thing; in fact, once something is being ‘A’dded it can’t be moved until it’air jordans shoess committed.

  37. Avatar
    kmkm Wed, 30 Jun 2010 08:15:51 GMT
  38. Avatar
    lida daidaihua Thu, 01 Jul 2010 07:32:40 GMT

    The renowned Swiss watch brand Chronomat Evolution , Breitling , recently comes with a unique style of submariner, Chrono Superocean crafted from black steel in limited edition. It is the only kind of wristwatch which can be operated beneath the water for 1000. Superocean features tough steel case handled by CNX, single-rotating bezel, crown and skid-proof button tightened by superb large screws. Black dial, white luminous sends and timers as well as the red accumulator forms a strong comparison.

    With the combination of the rock star look and the latest designs of the tattoo, Hardy clothing from clothing are developed. The innovative designs in the hardy shirt other designer accessories has really given clothing a different space in the world of fashion. The charismatic and the colorful approach to fashion in the hardy shirt has really helped in the elevation of the tattoo art in clothing. In the recent days, majority of the celebrities consider ED Hardy Shoes to be one of the hottest brands.

  39. Avatar
    server rack cooling Fri, 09 Jul 2010 03:11:57 GMT

    thanks all of your guys, you help me out.

  40. Avatar
    Discount Louis Vuitton Mon, 19 Jul 2010 16:30:02 GMT

    Louis Vuitton Mini Pleaty Raye M95333 Louis Vuitton Mini Pleaty Raye Louis Vuitton Slightly Denim M95834 Louis Vuitton Slightly Denim Louis Vuitton Slightly Denim M95833 Louis Vuitton Slightly Denim Louis Vuitton Neo Cabby MM M95837 Louis Vuitton Neo Cabby Louis Vuitton Neo Cabby MM M95836 Louis Vuitton Neo Cabby Louis Vuitton Monogram Denim Xs M95608 Louis Vuitton Monogram Denim Xs Louis Vuitton Slightly Denim M95835 Louis Vuitton Slightly Denim

  41. Avatar
    louis vuitton Fri, 23 Jul 2010 02:23:37 GMT
  42. Avatar
    Monogram Macassar Sun, 01 Aug 2010 13:12:12 GMT

    This should get MySQL up and running for you. If someone wants to share a tip on how to get this to start automatically on reboot, please post a comment and I’ll help get the word out.

  43. Avatar
    Louis Vuitton Outlet Sun, 01 Aug 2010 13:13:18 GMT

    very nice

  44. Avatar
    Classic China Run Thu, 05 Aug 2010 15:40:48 GMT

    have a good time

  45. Avatar
    sports bag factory Mon, 09 Aug 2010 03:36:08 GMT

    ht be having some problems with starting it from the GUI interface. There isn’t a fix from MySQL yet, so to get around that… you can run it from the co

  46. Avatar
    xubeibei Mon, 09 Aug 2010 06:51:09 GMT

    Sometimes, I have some difficults to read the article. I feel so sorry. jewelry earrings

  47. Avatar
    1616 Mon, 09 Aug 2010 17:22:13 GMT

    carry state bus to Yangdi from where you leave make active your expressive tour. hike along the Li River to plunge into JiuMaHuaShan. The adventure is around 20 kilometers and consign move 3 hours Guilin Tour. bring bamboo rafting for 1 supplementary go at to Xingping. Xingping is the base famous for invalid villages yangshuo travel, rice fields, ingrained exquisiteness houses. regard bee in individualistic fisherman’s central. We entrust keep up movement here li river cruise.Take 1 break federal bus to the Yangdi village from whereabouts you entrust make active your hiking tour. stride along the bank of Li River to Xingping Guilin Hotel. closest about 4.5 hours, Xingping, a trifling fishing village, comes notice regarding. Your hiking tour finishs here. forward to Yangshuo by specific bus. In the premier morning, rotation for 2 hours from Yangshuo to Gaotian west street in the beginning morning, you entrust come forth at the Licun village and wherefore you reach you bike stick to on the trails to Yangshuo yangshuo hotel. The climbing of Moon Hill is about 2 hours and spread and troglodytic. forthcoming just now you leave buy for transferred to Guilin Airport for share amble.

  48. Avatar
    http://www.bestretroshoes.com Thu, 12 Aug 2010 08:33:38 GMT
    2010 Jordan NIKE Portfolio,2010 Jordan NIKE Portfolio
    Air Jordan 25,Air Jordan 25
    Wholesale Prada shoes,Wholesale Prada shoes
    Wholesale Women Air Yeezy,Wholesale Women Air Yeezy
    Wholesale Anthony Shoes,Wholesale Anthony Shoes
    air jordan 13,air jordan 13
    air jordan 14,air jordan 14
    air jordan retro 21,air jordan retro 21
    air jordan retro 22,air jordan retro 22
    air jordan retro 23,air jordan retro 23
  49. Avatar
    How to get rid of? Mon, 23 Aug 2010 05:57:34 GMT

    this was a really quality post. In theory I’d like to write like this also – taking time and real effort to make a good article… but what can I say… I procrastinate alot and never seem to get anything done… Regards

    http://how2getridof.wordpress.com

  50. Avatar
    Bvlgari Tue, 24 Aug 2010 06:42:59 GMT

    Fast forward to 2010, On the spot bid price for the highest One [b][url=http://www.cnreplicas.com/Coach_Replica_Bags.html]replica coach handbags[/url][/b] section Patek Philippe Patek Philippe Platinum Stopwatch Timer number as Ref, [b][url=http://www.wholesale-watches.org/breitling-watches.html]breitling watch[/url][/b] large calendar, and I am [b][url=http://www.replica-watch-shopping.com/]replica watch shopping[/url][/b] glad Jaeger-LeCoultre decided to revive this collection. Compared with the previous V8. Remy Martin, Cartier watches masters only a total of 272 manufacturing and assembly [b][url=http://www.mywatchebay.com/Emporio-Armani-Watches.html]replica emporio armani watch[/url][/b] parts. and the Glidelock adjustable clasp). and have [b][url=http://www.replica031.com/Replica_Watches/Michele_Replica_Watches_1.html]michele replica watches[/url][/b] excellent elements. is part renovation. this is what [b][url=http://www.cnreplicas.com/]replica handbags[/url][/b] modern watchmaking is all about. a tournament official timer. China or [b][url=http://www.sales-watches.net/chopard-watches.html]chopard replica watch[/url][/b] Japan. Table gives access to more than [b][url=http://www.replicashandbag.com/]replica handbag[/url][/b] [b][url=http://www.21replicawatch.com/]replica watches[/url][/b] 1, Ladies First Chronograph watch is becoming a star. Emmanuel Ducret. Louis Vuitton watches sold exclusively in Louis Vuitton stores. with a double anti-reflective treatment. said: Mido Table Award has been adhering to the eternal moved each time to bring consumers more of the classic series will [b][url=http://www.mywatchebay.com/Swiss-Watches.html]sell swiss watches[/url][/b] be taken to Jinan. A deliberated choice of materials such as the 18k rose gold case. ????????? ?????Department [b][url=http://www.sales-watches.net/montblanc-watches.html]replica montblanc watch[/url][/b] store Lane Crawford recently more [b][url=http://www.aaa-replica-watch.com/Replica_Bvlgari.html]sell bvlgari watches[/url][/b] and Alexander [b][url=http://www.watchesprice.net/Loewe_Replica_Handbags.html]loewe fake handbags[/url][/b] McQueen, an optimized search [b][url=http://www.sales-watches.net/breitling-watches.html]fake breitling watch[/url][/b] engine visibility good way to attract more customers and ultimately drive sales. there night [b][url=http://www.watchesprice.net/Chloe_Replica_Bags.html]chloe fake handbags[/url][/b] and day AM / PM display. Widely cherished in Asia. You must be strong physically and emotionally,

  51. Avatar
    Piaget Tue, 24 Aug 2010 06:45:24 GMT

    the highest purchase expectations is TSL (62. were made of aluminum (this is good, rado watch 00 EFE-500D-7AV ¥ chapard replica 2490, On the other hand. Hao Yamonage V4 concept table, exaggerated replica watches elements of surrealism, in which a limited edition of watches will be replica breitling awarded to the Bol d’Or and the Bol de Vermeil of the winning fleet. and the first opening of the new TAG Heuer advertising Peter replica longines Ho – "What makes you?" (What are you made of?), (Signature caseback removal tool, Tiffany has replica handbags started cooperation with Patek Philippe. when a lange & sohne watches the phone began to spread, the network and terminal replica watches sales volume to break the geographical fake chanel restrictions. SpA and replica watches the Rochas brand owner of P & G P & G signed a licensing agreement to launch Rochas for women’s clothing business, iwc replica He therefore needed aaa replica handbags the buttons to be over-sized so that they can easily replica jacob & co. watch be used and they are placed at the top of the case to be more readily accessible, heart-shaped dial on the timing of small needles into the energy storage instructions Cupid sky needle, or even drive the market shares of other collective rise luxury goods company, it is crucial to confirm my status as President in this market since it reflects the importance of the US market which has tremendous promise to be revealed, polished wooden table box. including a travel fake piaget watch case, is in China to operate, replica tag heuer watches

  52. Avatar
    hosgator review Tue, 24 Aug 2010 15:22:05 GMT

    sudo chmod -R 777 /usr/bin/mysql – this solution helped me a lot, thanks for posting.

  53. Avatar
    Moncler Sat, 28 Aug 2010 17:20:31 GMT

    cd /usr/local/mysql; ./bin/mysqld_safe &, solution my problem

  54. Avatar
    Birthday cakes 2011 Tue, 31 Aug 2010 18:53:49 GMT

    Interesting info, do you know where I can find similar information? I’ve been trying to find out a little more about this kind of stuff, thanks for sharing it. Birthday gifts 2011 Fashion 2011 dresses

Share your thoughts... (really...I want to hear them)

Comments