1. ホーム
  2. データベース

gem install mysql reports extconf.rb failed error.

2022-03-16 01:19:07

今日、redmineをアップデートする際に、mysql gemパッケージをインストールする必要があります。

その結果、以下のようなエラーが報告され続けました。

Building native extensions. This could take a while...
ERROR: Error installing mysql:
    ERROR: Failed to build gem native extension.

        /usr/bin/ruby1.8 extconf.rb --with-mysql-config=/usr/local/mysql/bin/mysql_config
extconf.rb:10: command not found: /usr/local/mysql/bin/mysql_config --cflags
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
Check the mkmf.log file for more
You may need configuration options.

Provided configuration options:
    --without-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=/usr/bin/ruby1.8
    --with-mysql-config

私の乏しいrubyの知識を使い果たした後、私はググり始め、最初の方法を試してみました。

http://blog.bmn.name/2008/02/rails-gem-install-mysql-throws-error-extconfrb-failed/

しかし、debパッケージを使用してインストールした私のmysqlにはmysql_configフォルダがないことを痛感しました。

そこで、全知全能のstackoverflowで解決策を発見した。

http://stackoverflow.com/questions/5795309/gem-install-mysql-fail

mysqlクライアント用のdevライブラリパッケージがインストールされています。

 sudo apt-get install libmysqlclient-dev





# The package description is: This package includes development libraries and header files.

すると、元気よく gem install mysql~ を通してくれました。

追記:同様に、Postgresql用のpg gemパッケージをlibpq-devパッケージがない状態でインストールしても、同じエラーが発生します。