Redmine のインストール時に mysql2 gem ビルドエラーが発生しました。

Redmine のインストール時に mysql2 gem ビルドエラーが発生しました。

Redmineをインストールしようとすると、bundle install --without development test 次のビルドエラーが発生します。

Fetching gem metadata from https://rubygems.org/.........
Resolving dependencies...................................
Installing rake 10.3.2
...(and so on)

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

/home/pi/.rubies/ruby-2.1.5/bin/ruby extconf.rb
checking for ruby/thread.h... yes
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
checking for rb_thread_blocking_region()... yes
checking for rb_wait_for_single_fd()... yes
checking for rb_hash_dup()... yes
checking for rb_intern3()... yes
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... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lmygcc... 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.

...

Gem files will remain installed in /home/pi/.gem/ruby/2.1.5/gems/mysql2-0.3.17 for inspection.
Results logged to /home/pi/.gem/ruby/2.1.5/extensions/armv6l-linux/2.1.0-static/mysql2-0.3.17/gem_make.out
An error occurred while installing mysql2 (0.3.17), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.3.17'` succeeds before bundling.

.gem/ruby/2.1.5/extensions/armv6l-linux/2.1.0-static/mysql2-0.3.17/mkmf.log上記のデフォルト出力の内容と同様のgccコードチェック出力のエラーメッセージでいっぱいの内容を読みました。

また、エラーメッセージ()でコマンドを実行してみましたgem install mysql2 -v '0.3.17'が、もちろん同じ結果で失敗しました。これらのエラーの原因は何ですか?私はLinux環境に初めて触れたので、自動化されたプログラムがすべてのことをするようにし、ガイドに従っています(この場合)

apt-getとapacheを介してインストールしたmysqlに問題はありませんか?

PSこれはraspbian / debianディストリビューションです。

ベストアンサー1

解決策が見つかりました

私の問題を解決したのは、次の2つのインストールのいずれか(またはその両方)でした。

sudo apt-get install libmysql-ruby
sudo apt-get install libmysqlclient-dev

多分後者かもしれません。

確認する前に両方をインストールしたので、わかりません。

おすすめ記事