Starting MySQL after upgrading to OS X Leopard
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.
Enjoying the content? Be sure to subscribe to my RSS feed.






Use sleepwatcher with a .wakeup script to start it up.
I just tried installing MySQL from macports and it fails due to zlib dependency issues on leopard. How’d you get it working Robby?
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.
which version is installed ?
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
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.
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.
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.
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
@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.
I am looking for this for a long time. Thanks very much.
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/mysqlLet’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>Upgrading to Xcode 3.0, then installing mysql with macports worked great for me.
Migrating MySQL 5.0.45 to Mac OS X 10.5 Leopard http://blog.tomatocheese.com/archives/2007/11/1/migrating_mysql_to_mac_os_x_leopard/
Step By Step ReInstall Mysql and Leopard http://www.developingchris.com/2007/10/26/mysql-and-os-x-105-leopard/
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.
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.
Have you tried sudo mysqld_safe ?
Have you tried sudo mysqld_safe ?
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
@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.
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.
Use sleepwatcher with a .wakeup script to start it up.
Probably not the safest thing to do
Probably not the safest thing to do
Use sleepwatcher with a .wakeup script to start it up
nice content, thank you
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 .
you might be having some problems with starting it from the GUI interface.
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
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 .
Electronic cigarette Sale, including Electronic cigarette starter kits, electronic cigarette joye510, electronic cigarette DSE905, electronic cigarette RN4081, electronic cigarette 8084, electronic cigarette 901,electronic cigarette 701,electronic cigarette 601,electronic cigarette 8097,electronic cigarette 101,electronic cigarette CT112,electronic cigarette CT103,electronic cigarette E liquid,electronic cigarette portable charging case,disposables electronic cigarette,electronic cigarette pipes,save up to 50%, Free Shipping!
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.
M2TS Converter is a powerful software that can convert M2TS files to other formats, such as WMV, AVI, ASF, MPEG http://www.m2tsconverter.net M2TS Converter http://www.m2tsconverter.net/m2ts_ps3.html m2TS to PS3 http://www.m2tsconverter.net/m2ts_to_psp.html m2TS to PSP http://www.m2tsconverter.net/m2ts_to_ipod.html m2TS to iPod http://www.m2tsconverter.net/m2ts_to_iPhone.html m2TS to iPhone http://www.m2tsconverter.net/m2ts_to_dvd.html m2TS to DVD http://www.m2tsconverter.net/m2ts_to_avi.html M2TS Converter http://www.m2tsconverter.net/m2ts_to_mp4.html m2TS to MP4 Converter http://www.m2tsconverter.net/m2ts_to_mpg.html m2TS to MPG Converter http://www.m2tsconverter.net/m2ts_to_vob.html m2TS to VOB Converter http://www.m2tsconverter.net/m2ts_to_divx.html m2TS to DivX Converter http://www.m2tsconverter.net/m2ts_to_flv.html m2TS to FLV Converter http://www.m2tsconverter.net/m2ts_to_mov.html m2TS to MOV Converter http://www.m2tsconverter.net/m2ts_to_wmv.html m2TS to WMV Converter
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.
thanks all of your guys, you help me out.
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
Surprise! you will get the bag! ed hardy clothing ed hardy clothing ed hardy shirts louis vuitton louis vuitton blog louis vuitton christian louboutin Rosetta stone louis vuitton christian louboutin Rosetta stone
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.
very nice
have a good time
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
Sometimes, I have some difficults to read the article. I feel so sorry. jewelry earrings
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.
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
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
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,
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
sudo chmod -R 777 /usr/bin/mysql – this solution helped me a lot, thanks for posting.
cd /usr/local/mysql; ./bin/mysqld_safe &, solution my problem
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