MYSQL Installation Troubles - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-20T16:47:30Z http://stackoverflow.com/feeds/question/354194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/354194/mysql-installation-troubles 1 MYSQL Installation Troubles [closed] Damian 2008-12-09T20:49:45Z 2008-12-10T06:37:56Z <p>After upgrading a few gems via terminal on my mac, I have created a new rails project backed up by a mysql database. Upon starting the app, the regular welcome aboard page appears. </p> <p>Here's the problem - I tried clicking the link entitled "About your application's environment", I receive the following output in my browser:</p> <pre><code>MissingSourceFile in Rails/infoController#properties no such file to load -- mysql </code></pre> <p>I also receive this output in the terminal</p> <pre><code>The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql. Processing Rails::InfoController#properties (for 127.0.0.1 at 2008-12-09 20:41:41) [GET] Processing Rails::InfoController#properties (for 127.0.0.1 at 2008-12-09 20:41:41) [GET] MissingSourceFile (no such file to load -- mysql): ... </code></pre> <p>As it says, I tried issuing "gem install mysql" after stopping the application, only to be greeted by this chunk of jargon which I am unable to comprehend:</p> <pre><code>WARNING: Installing to ~/.gem since /Library/Ruby/Gems/1.8 and /usr/bin aren't both writable. WARNING: You don't have /Users/mymac/.gem/ruby/1.8/bin in your PATH, gem executables will not run. Building native extensions. This could take a while... ERROR: Error installing mysql: ERROR: Failed to build gem native extension. /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb install mysql checking for mysql_query() in -lmysqlclient... no checking for main() in -lm... yes checking for mysql_query() in -lmysqlclient... no checking for main() in -lz... yes checking for mysql_query() in -lmysqlclient... no checking for main() in -lsocket... no checking for mysql_query() in -lmysqlclient... no checking for main() in -lnsl... no checking for mysql_query() in -lmysqlclient... no *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options. Provided configuration options: --with-opt-dir --without-opt-dir --with-opt-include --without-opt-include=${opt-dir}/include --with-opt-lib --without-opt-lib=${opt-dir}/lib --with-make-prog --without-make-prog --srcdir=. --curdir --ruby=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby --with-mysql-config --without-mysql-config --with-mysql-dir --without-mysql-dir --with-mysql-include --without-mysql-include=${mysql-dir}/include --with-mysql-lib --without-mysql-lib=${mysql-dir}/lib --with-mysqlclientlib --without-mysqlclientlib --with-mlib --without-mlib --with-mysqlclientlib --without-mysqlclientlib --with-zlib --without-zlib --with-mysqlclientlib --without-mysqlclientlib --with-socketlib --without-socketlib --with-mysqlclientlib --without-mysqlclientlib --with-nsllib --without-nsllib --with-mysqlclientlib --without-mysqlclientlib Gem files will remain installed in /Users/mymac/.gem/ruby/1.8/gems/mysql-2.7 for inspection. Results logged to /Users/mymac/.gem/ruby/1.8/gems/mysql-2.7/gem_make.out </code></pre> <p>Clearly there is something wrong with my mysql installation, as I have also tried running the rake command to create the database, which prompted me with the following.</p> <pre><code>!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql. rake aborted! no such file to load -- mysql (See full trace by running task with --trace) </code></pre> <p>However, when I run "mysql --version" at the command line, mysql is installed!</p> <pre><code>mysql Ver 14.12 Distrib 5.0.67, for apple-darwin9.4.0 (i686) using readline 5.1 </code></pre> <p>I also tried issuing "sudo gem install mysql", however that was also to no avail:</p> <pre><code>sudo gem install mysql Password: Building native extensions. This could take a while... ERROR: Error installing mysql: ERROR: Failed to build gem native extension. /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb install mysql checking for mysql_query() in -lmysqlclient... no checking for main() in -lm... yes checking for mysql_query() in -lmysqlclient... no checking for main() in -lz... yes checking for mysql_query() in -lmysqlclient... no checking for main() in -lsocket... no checking for mysql_query() in -lmysqlclient... no checking for main() in -lnsl... no checking for mysql_query() in -lmysqlclient... no Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/mysql-2.7 for inspection. Results logged to /Library/Ruby/Gems/1.8/gems/mysql-2.7/gem_make.out </code></pre> <p>I also tried issuing "sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config" as instructed by bradheintz, which seemed to have installed ok, but after trying to view the application environment again, no ajaxy dropdown occurs and the rails app stops completely! The following output is printed just before the application decides to die on me lol.</p> <pre><code>dyld: lazy symbol binding failed: Symbol not found: _mysql_init Referenced from: /Library/Ruby/Gems/1.8/gems/mysql-2.7/lib/mysql.bundle Expected in: dynamic lookup dyld: Symbol not found: _mysql_init Referenced from: /Library/Ruby/Gems/1.8/gems/mysql-2.7/lib/mysql.bundle Expected in: dynamic lookup Trace/BPT trap </code></pre> <p>If anyone can understand what's going on here, and how to go about resolving this problem, I'd be very grateful :)</p> http://stackoverflow.com/questions/354194/mysql-installation-troubles/354197#354197 3 Answer by bradheintz for MYSQL Installation Troubles bradheintz 2008-12-09T20:51:24Z 2008-12-09T21:19:42Z <p>The issue is that the MySQL gem builds native extensions and needs system-specific information about where to find certain libraries. You have to provide this on the command line.</p> <p>Check out <a href="http://forums.mysql.com/read.php?116,204740,204740" rel="nofollow" title="Mysql Gem Install Instructions">this page</a> - the important bit (that worked for me, anyway) was:</p> <blockquote> <p><code>sudo gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config</code></p> </blockquote> <p>Of course, be sure to substitute the correct path for your own system.</p> <p>Also, stick with running your <code>gem install</code> commands via <code>sudo</code>.</p> <p>The bigger issue is that the gem software provides NO feedback regarding the fact that you can't just do <code>gem install mysql</code> like you do with every other gem (and indeed, used to be able to do with the MySQL gem).</p> http://stackoverflow.com/questions/354194/mysql-installation-troubles/355133#355133 0 Answer by sascha for MYSQL Installation Troubles sascha 2008-12-10T05:09:17Z 2008-12-10T05:46:49Z <p>Try forcing build of the 32-bit version only (assuming you're on Intel Mac, the <code>-V</code> with gem should give you more verbose output)</p> <pre><code>sudo env ARCHFLAGS="-arch i386" gem install -V mysql -- --with-mysql-config=/usr/local/sql32/bin/mysql_config </code></pre> <p>More information in this blog post: <a href="http://blog.pastie.org/2008/10/mysql-64-bit-ruby-32-bit-friends-again.html" rel="nofollow">http://blog.pastie.org/2008/10/mysql-64-bit-ruby-32-bit-friends-again.html</a></p> http://stackoverflow.com/questions/354194/mysql-installation-troubles/355264#355264 0 Answer by Joe for MYSQL Installation Troubles Joe 2008-12-10T06:37:56Z 2008-12-10T06:37:56Z <p>Last time I saw this error was when I try to install mysql/ruby adapter. And I encounter same error after upgrade rails on Mac to rails 1.2.2 because 1.2.2 remove mysql gem by default.</p> <p>The reason last time I found is missing mysql client or library. Take Redhat for example, you can go to this link, and install mysql client and library. <a href="http://dev.mysql.com/downloads/mysql/5.0.html#linux-rhel5-x86-32bit-rpms" rel="nofollow">http://dev.mysql.com/downloads/mysql/5.0.html#linux-rhel5-x86-32bit-rpms</a></p> <p>Let me know the result.</p> <p>Joe</p>