Trying to get a Rails app running on Snow Leopard.

  • Downloaded mysql-5.5.8-osx10.6-x86_64.dmg and ran installer
  • Ruby 1.8.7 (Default OS X version)
  • Rails 2.3.5

When I attempt to run "rake db:migrate" I get

  • rake aborted!
  • uninitialized constant MysqlCompat::MysqlRes

Yes I know this has been asked before. I have already reviewed the following links and followed the steps included in them and the result is the same each time.

Prior to the following commands I run "sudo gem uninstall mysql" followed by "sudo gem clean mysql" based on the above links:

  • sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
  • sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config

It is still failing. I am just flumoxed and would greatly appreciate any help.

Many thanks!

link|improve this question

33% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Not had the experience myself and I'm using Snow Leopard, RVM and rails 2.3.5 to 3.0.3, but found another view which deals with the uninstall and reinstall via :

export ARCHFLAGS="-arch i386 -arch x86_64" ;sudo gem install --no-rdoc --no-ri -v=2.7 mysql -- --with-mysql-dir=/usr/local/mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config

For more details see the posting at: http://accidentaltechnologist.com/apple/fixing-uninitialized-constant-mysqlcompatmysqlres-error-on-snow-leopard/

link|improve this answer
He shoots! He scores!... The root issue being that the 2.8.x MySQL Gem seems to not work on Snow Leopard but 2.7 works just find. Thank you, thank you, thank you! Note - In order to make this work I also had to add "export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/" to my .bash_login file per [link]stackoverflow.com/questions/4546698/… which discusses the other error I got after downgrading to 2.7. Thanks again. – Mr. Wobbet Feb 7 '11 at 2:04
No worries - glad that it helped. – Grant Sayer Feb 7 '11 at 2:38
Worked for me too. Thanks so much. – evanmcd Jun 29 '11 at 2:54
feedback

Your Answer

 
or
required, but never shown

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