Ruby's MySQL driver not finding required libraries - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T14:52:27Zhttp://stackoverflow.com/feeds/question/342371http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/342371/rubys-mysql-driver-not-finding-required-libraries1Ruby's MySQL driver not finding required libraries Ethan2008-12-04T22:47:44Z2008-12-30T17:42:40Z
<p>Linux 2.6.18-92.el5, ruby 1.8.7, Rails 2.2.2, mysql gem 2.7</p>
<p>I installed the MySQL binary distribution under /usr/local, then installed the mysql gem like this:</p>
<pre><code>gem install mysql --no-rdoc --no-ri \
-- --with-mysql-include=/usr/local/mysql/include \
--with-mysql-lib=/usr/local/mysql/lib \
--with-mysql-config=/usr/local/mysql/bin/mysql_config
</code></pre>
<p>When I run <code>irb> require 'mysql'</code> I get the error shown below:</p>
<pre><code>irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'mysql'
LoadError: libmysqlclient.so.16: cannot open shared object file:
No such file or directory -
/usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/lib/mysql.so
from /usr/local/lib/ruby/gems/1.8/gems/mysql-2.7/lib/mysql.so
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/
custom_require.rb:36:in `require' from (irb):2
</code></pre>
<p>After some Googling I found that I could use <code>ldconfig</code> to configure
mysql.so to be available to the whole system. Once I added "/usr/local/
mysql/lib" to /etc/ld.so.conf and ran ldconfig, it worked fine:</p>
<pre><code>irb(main):002:0> require 'rubygems'
=> true
irb(main):003:0> require 'mysql'
=> true
</code></pre>
<p>OK, so I got it to work. But my question is, why was I getting that error? You used to be able to just <code>gem install mysql</code> and it would work. Has anyone else encountered the same error? Using <code>ldconfig</code> seems kind of brittle and unmaintainable. Is there a better solution?</p>
<p>Any insight would be greatly appreciated.</p>
<p>Thanks,</p>
<p>Ethan</p>
http://stackoverflow.com/questions/342371/rubys-mysql-driver-not-finding-required-libraries/342385#3423851Answer by pho79 for Ruby's MySQL driver not finding required libraries pho792008-12-04T22:57:29Z2008-12-04T22:57:29Z<p>Possibly it had something to do with the prefix you used when installing mysql?
--with-mysql-lib=/usr/local/mysql/lib</p>
<p>Presumably, if that been /usr/local/lib (or somewhere ldconfig was already set to look) and/or if you had just used a top-level prefix of something like /usr/local, you may not have run into problems(?)</p>
http://stackoverflow.com/questions/342371/rubys-mysql-driver-not-finding-required-libraries/353586#3535862Answer by bradheintz for Ruby's MySQL driver not finding required libraries bradheintz2008-12-09T17:28:53Z2008-12-30T17:42:40Z<p>I had issues as well (on Mac OS X), and was just as frustrated that <code>gem install mysql</code> wasn't as simple as it used to be.</p>
<p>The short-sighted answer is that the mysql gem needs to build native extensions, and to do that, it needs some path information (specific to your system) about MySQL libraries. The most reliable way to get that information is for you to provide it.</p>
<p>The larger answer is that this is a design bug in the gem system. When nearly every other gem installs with <code>gem install foo</code>, the system and the gem submitters need to provide users with some kind of instruction for important exceptional cases - even if it's just feedback with the error message that tells you that you must provide more information to install this gem, and what that information is.</p>
<p>A bit of googling around eventually got me to the answer, but got me a lot more instances of other people blindsided by a simple process that turned complex without warning.</p>