I am having some problems when trying to install mysql2 gem for Rails 3. When I try to install it by issuing "bundle install" command or "gem install mysql2" it gives me following error "Error installing mysql2: ERROR: Failed to build gem native extension." Did anyone have any luck with this?

Thanks!

link|improve this question

Same issue on Windows 7 – acidrain Feb 20 '11 at 14:02
feedback

13 Answers

up vote 106 down vote accepted

Following line solved the issue:

sudo apt-get install libmysql-ruby libmysqlclient-dev
link|improve this answer
is it command to run or should i add it some file? – Maddy.Shik Jan 27 '11 at 17:42
1  
just copy + paste + enter in terminal – spacemonkey Jan 29 '11 at 19:18
1  
i have the same issue on windows 7..any ideas? the command above didnt work for me.. – femi Apr 1 '11 at 16:15
1  
try installing an older version mysql2 gem – Gaurav Shah May 7 '11 at 10:10
Worked for me smoothly – Jignesh May 7 at 18:18
feedback

I'm on a mac and use homebrew to install open source programs. I did have to install mac Dev tools in order to install homebrew, but after that it was a simple:

brew install mysql

to install mysql. I haven't had a mysql gem problem since.

link|improve this answer
I'm getting error even after doing this. Should I pass some options when I do gem i mysql2 ?? – hnprashanth Apr 10 at 7:03
feedback

I have several computers, 32 and 64 bits processor, they run on Ubuntu Linux, Maverick (10.10) release.

I had the same problem, and for me, the sudo apt-get install libmysql-ruby libmysqlclient-dev did the job!!!

link|improve this answer
Awesome! This worked great.. – e3matheus Aug 24 '11 at 15:08
feedback

I had this issue with my windows 7. This is apparently an incompatibility issue and the solution is as follows: Download mysql.dll file from an older InstantRails installer. The Link http://tinyurl.com/24ocp8u will download only the mysql.dll file.(It's link to svn repository of InstantRails). Next, copy that filw into your Ruby/bin folder. Now, you are good to go ;)

link|improve this answer
1  
Hrm. :( I tried this but still get there error when trying to run bundle install. – Adam Aug 8 '11 at 20:33
feedback

I was running into this error on my mac and found that I needed to upgrade from mysql 32bit to mysql 64 bit to get this error to go away. I was running OSX 10.6 on an intel macbook pro with ruby 1.9.2 and rails3.0.0

I also needed to install xcode in order to get unix utilities like "make" that are required to compile the gem.

once this was done I was able to run gem install mysql and gem install mysql2 without error.

link|improve this answer
1  
ruby 1.6.2 or ruby 1._9_.2? – Tim Snowhite Sep 20 '10 at 22:07
ruby 1.9.2 edited my answer to reflect. thanks! – paul.lofte Oct 16 '10 at 17:11
feedback

Have you tried using

 gem install mysql -- --with-mysql-lib=/usr/lib/mysql/lib 

to specify the location of thebase directory as well as the path to the MySQL libraries that are necessary to complete the gem installation?

Sources: MySQL Gem Install ERROR: Failed to build gem native extension MySQL Forums :: Ruby :: Help needed with installing MySQL binding for Ruby

link|improve this answer
as much as I understand "mysql" and "mysql2" are different gems. I have even tried "gem install mysql2 -- --with-mysql-lib=/usr/lib/mysql/lib" but still the same error – spacemonkey Aug 31 '10 at 11:34
feedback

This solved my problem once in Windows:

subst X: "C:\Program files\MySQL\MySQL Server 5.5" 
gem install mysql2 -v 0.x.x --platform=ruby -- --with-mysql-dir=X: --with-mysql-lib=X:\lib\opt 
subst X: /D
link|improve this answer
Replace 0.x.x with your gem version. – Carlos Pardilla Aug 9 '11 at 1:42
I was about to post the source but I see user Ritesh Kumar has already done so. So his merit, not mine. – Carlos Pardilla Aug 9 '11 at 1:56
His own work, in fact : ) – Carlos Pardilla Aug 9 '11 at 1:58
feedback

here is a solution for the windows users, hope it helps!

Using MySQL with Rails 3 on Windows

  • Install railsinstaller -> www.railsinstaller.org (I installed it to c:\Rails)

  • Install MySQL (I used MySQL 5.5) -> dev.mysql.com/downloads/installer/

--- for mySQL installation ---

If you dont already have these two files installed you might need them to get your MySQL going

vcredist_x86.exe -> http://www.microsoft.com/download/en/details.aspx?id=5555 dotNetFx40_Full_x86_x64.exe -> http://www.microsoft.com/download/en/details.aspx?id=17718

Use default install Developer Machine

-MySQL Server Config-
port: 3306
windows service name: MySQL55
mysql root pass: root (you can change this later)
(username: root)
-MySQL Server Config-

--- for mySQL installation ---


--- Install the mysql2 Gem ---

Important: Do this with Git Bash Command Line(this was installed with railsinstaller) -> start/Git Bash

gem install mysql2 -- '--with-mysql-lib="c:\Program Files\MySQL\MySQL Server 5.5\lib" --with-mysql-include="c:\Program Files\MySQL\MySQL Server 5.5\include"'

Now the gem should have installed correctly

Lastly copy the libmysql.dll file from
C:\Program Files\MySQL\MySQL Server 5.5\lib
to
C:\Rails\Ruby1.9.2\bin

--- Install the mysql2 Gem ---


You will now be able to use your Rails app with MySQL, if you are not sure how to create a Rails 3 app with MySQL read on...


--- Get a Rails 3 app going with MySQL ---

Open command prompt(not Git Bash) -> start/cmd
Navigate to your folder (c:\Sites)
Create new rails app

rails new world

Delete the file c:\Sites\world\public\index.html
Edit the file c:\Sites\world\config\routes.rb
add this line -> root :to => 'cities#index'

Open command prompt (generate views and controllers)

rails generate scaffold city ID:integer Name:string CountryCode:string District:string Population:integer



Edit the file c:\Sites\world\app\models\city.rb to look like this

class City < ActiveRecord::Base
 set_table_name "city"
end

Edit the file c:\Sites\world\config\database.yml to look like this

development:
adapter: mysql2
encoding: utf8
database: world
pool: 5
username: root
password: root
socket: /tmp/mysql.sock

add to gemfile

gem 'mysql2'

Open command prompt windows cmd, not Git Bash(run your app!)
Navigate to your app folder (c:\Sites\world)

rails s

Open your browser here -> http://localhost:3000

--- Get a Rails 3 app going with MySQL ---

link|improve this answer
feedback

I got this error too. Solved by installing development packages. I'm using arch and it was:

sudo pacman -S base-devel

which installed:

m4, autoconf, automake, bison, fakeroot, flex, libmpc, ppl, cloog-ppl, elfutils, gcc,
libtool, make, patch, pkg-config

but I think it actually needed make and gcc. Error output said (on my machine, among other):

"You have to install development tools first."

So it was an obvious decision and it helped.

link|improve this answer
feedback

I got the gem built on Mac OS X 10.6.6 by 1) Ensuring the Developer tools package is installed 2) Downloading the current MySQL package (5.5.8 in my case) from Source 3) Installing the cmake tool from cmake.org 4) Following the instructions in section 2.11 of INSTALL-SOURCE from the mysql distribution files 5) sudo gem install mysql2 -- --srcdir=/usr/local/mysql/include The gem built successfully, but there are two errors in the documentation that rdoc and ri complain about. But now when I try to require 'mysql2' I get a

LoadError: no such file to load -- mysql2/mysql2

I was hoping the error I would get was that the libmysqlclient.16.dylib couldn't be found because we figured that out in another post (search for install_name_tool).

My $PATH has /usr/local/mysql in it (that's where my source and built files are located), so I'm a little stumped. If anyone has any thoughts, I'll check back after a few hours of sleep.

link|improve this answer
using fs_usage on a machine where mysql 5.5.8 was built I watched irb handle the "require 'mysql2'" and see it's looking for both mysql2.rb and mysql2.bundle. Those are found in /L/R/G/1.8/gems/mysql2-0.2.6/lib (the bundle is also in the /ext/). Only the .rb file can be found on my current machine. Who builds the bundle? gem install reported success. – tobinjim Jan 13 '11 at 19:29
I figured out my installation problem by examining my bash history files between the computer where it worked fine and the computer where it didn't. In the Hivelogic post about installing MySQL to Snow Leopard -- which is for an older version of MySQL than is current -- you immediately create a softlink in /usr/local for mysql. In the cmake version of MySQL 5.5.8 that step shouldn't be performed. Just follow the INSTALL-SOURCE directions in section 2.11 and it should work fine. – tobinjim Jan 15 '11 at 14:56
I installed using the Mac OS X binary and had the same issue as you. How did you get it to work? You installed from source, rebuilt MySQL, and rebuilt the gem? – Jason Feb 12 '11 at 17:10
1  
@jason, when you install from binary you don't get the header files that the gem needs in order to compile the libraries. I usually do go through the INSTALL-SOURCE instructions to build mysql fully -- meaning I have an executable mysql daemon should I choose to use that rather than built-in one -- mostly because I don't know how far down the compile, make, make install path you need to go to produce the libraries the msyql2 gem is looking for when it gets compiled. So in essence you are right: I install from source, build mysql, then rebuild the gem. – tobinjim Feb 12 '11 at 18:00
@jason, after I got the mysql distribution built, I ran into a situation where the "gem install mysql2" would report that it had successfully completed, but it in fact did not build the mysql2.bundle -- so I posted a question about that here on stackoverflow. If you run into the same problem, see my post there for the steps I took to get past that. – tobinjim Feb 12 '11 at 18:02
feedback

If still getting error then follow the steps of mysql2 gem installation on Rails 3 on -

http://rorguide.blogspot.com/2011/03/installing-mysql2-gem-on-ruby-192-and.html

where most of the user were able to install mysql2 gem.

link|improve this answer
feedback

If you are using yum try:

sudo yum install mysql-devel

link|improve this answer
feedback

After you get the mysql-dev issues corrected, you may need to remove the bad mysql2 install. Look carefully at the messages after $ bundle install. You may need to

rm -rf vendor/cache/
rm -rf ./Zentest

This will clear out the bad mysql2 installation so that a final $ bundle install can create a good one.

link|improve this answer
feedback

protected by Bill the Lizard Feb 20 '11 at 14:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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