错误通过Bundler安装mysql2 gem

时间:2010-09-20 19:10:00

标签: mysql ruby-on-rails ruby rubygems bundler

我正在尝试通过Bundler安装mysql2 gem,但它会因以下错误而死亡:

** executing command
/home/cc_rails/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:483:in 'rescue in block in build_extensions': 
ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)

/home/cc_rails/.rvm/rubies/ruby-1.9.2-p0/bin/ruby extconf.rb --with-mysql-config=/usr/bin/mysql_config
checking for rb_thread_blocking_region()... yes
checking for mysql.h... no
checking for mysql/mysql.h... no

-----
mysql.h is missing.  please check your installation of mysql and try again.
-----

*** 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=/home/cc_rails/.rvm/rubies/ruby-1.9.2-p0/bin/ruby
--with-mysql-config
Gem files will remain installed for inspection.

我通过Google搜索找到的大多数内容都建议传递--with-mysql-config参数来修复它。所以,基于:

$ which mysql_config
/usr/bin/mysql_config

我在Bundler的配置中添加了以下内容:

$ bundle config build.mysql2 --with-mysql-config='/usr/bin/mysql_config'

然而,仍然没有运气 - 与上述同样的崩溃。

因为它因错误mysql.h is missing而死亡,所以我检查了这一点,并且它据称在周围,但Bundler找不到。

$ find / -name mysql.h
/usr/include/mysql5/mysql/mysql.h

有什么想法吗?

9 个答案:

答案 0 :(得分:95)

答案类似于Wrikken发布的答案 - 这就是我为了未来的读者所做的修复。

(这适用于RHEL 5.5 - 类似但不同的命令适用于Ubuntu / Debian /等。)

执行sudo yum list installed将打印出计算机上所有已安装的软件包(注意:RHEL上的yum要求您添加Red Hat网络存储库[我使用EPEL],并通过sudo)。

我有mysqlmysql-server,这解释了为什么MySQL适用于每个预先存在的应用,但没有mysql-devel,这是修复mysql.h is missing错误所必需的和类似的其他构建错误。

长话短说,在mysqldump -u root -ppassword --all-databases > full-dump.sql安全之后,它用一个简单的

修复
sudo yum install mysql-devel

答案 1 :(得分:33)

对于Ubuntu必须安装以下内容。 的libmysqlclient-dev的 libmysqlclient16

答案 2 :(得分:20)

对于使用mysql的brew安装的Mac,以下解决方案为我解决了问题:

我在/usr/local/Cellar/mysql/5.6.12/bin中编辑了mysql_config文件,并为cflags和cxxflags删除了W编译器选项-Wno-null-conversion和-Wno-unused-private-field。

这解决了“gem install mysql2”的问题。

参考:http://www.randomactsofsentience.com/2013/05/gem-install-mysql2-missing-mysqlh-on-os.html

答案 3 :(得分:8)

由于mysql-devel软件包未在您的系统中正确安装,因此会出现上述问题。我将在Centos中解释如何修复它。当您尝试使用

安装该软件包时
    yum install mysql-devel

如果您安装了MySql-Administrative工具和MySQL查询浏览器,那么在安装现有软件包时会发生一些冲突。

在这种情况下,您需要卸载所有现有的mysql2软件包并重新安装。

    rpm -qa -last | grep -i mysql
    yum remove MySQL-server-5.5.27-1.rhel5
    yum remove MySQL-client-5.5.27-1.rhel5
    yum remove mysql-gui-tools-5.0r12-1rhel4
    yum remove mysql-query-browser-5.0r12-1rhel4-a

因此,您可以卸载rpm -qa显示的任何mysql内容,如上所示。

然后你可以安装mysql-server和mysql-client。

    yum install mysql-server
    yum install mysql-client

现在你安装mysql-devel包。

    yum install mysql-devel

现在没有包冲突,你可以安装mysql2 gem。

    gem install mysql2 -v '0.3.11'

现在你的mysql2 gem将成功安装,你很高兴。

答案 4 :(得分:1)

在我的情况下,问题是一个行为不当的mysql_config脚本。当命令行使用--cflags选项调用时,它将返回一个包含以下内容的选项字符串:

-Xclang -target-feature -Xclang -aes -Qunused-arguments

由于某些原因,如果包含这些选项,则在extconf.rb脚本中调用have_header('mysql.h')会失败。

对我有用的是手动编辑mysql_config文件,从行中删除对这些选项的引用:

cflags="-I$pkgincludedir -Os -w -pipe -march=native -Xclang -target-feature -Xclang -aes -Qunused-arguments  -O2 -g -DDBUG_OFF " #note: end space!

我改写为:

cflags="-I$pkgincludedir -Os -w -pipe -march=native  -O2 -g -DDBUG_OFF " #note: end space!

答案 5 :(得分:1)

我得到了同样的错误。对于ubuntu 16.我必须在下面写命令:

sudo apt-get install libmysqlclient-dev 

然后又回来了。

答案 6 :(得分:0)

我知道这很古老,但如果有人仍然收到此zlib错误,请确保您输入: rvm使用

(无论你使用的是什么版本)

我可以发誓我做到了。只是张贴以防万一有人拉他们的头发,这有帮助。如果没有好运。 :)

答案 7 :(得分:0)

我遇到了这个问题,同时在fedora 23上安装了redmine。我找到的解决方案就是发出这个命令 - sudo dnf install redhat-rpm-config

这不仅解决了我安装mysql2的问题,也解决了nokogiri和redcarpet的问题。

答案 8 :(得分:0)

在我的 Ubuntu 16.04.4 LTS 上运行 mysql Ver 15.1 Distrib 10.0.34-MariaDB,对于debian-linux-gnu(x86_64),使用readline 5.2 ,以下工作:

sudo apt-get install libmariadb-client-lgpl-dev

我看到,当前安装程序的错误消息建议运行

apt-get install libmysqlclient-dev

这可能也有效。