質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.49%
Ruby on Rails 5

Ruby on Rails 5は、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

VPS

VPS(バーチャル・プライベート・サーバ)は、仮想化されたサーバをレンタルするサービスで、共有サーバでありながら専門サーバと同等の機能を果たします。物理的な専門サーバより安価で提供できるメリットがあります。

Q&A

解決済

1回答

1371閲覧

$ bundle installでmysql2関係のエラーがでた場合の解決方法を教えていただけないでしょうか?

koume

総合スコア458

Ruby on Rails 5

Ruby on Rails 5は、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

VPS

VPS(バーチャル・プライベート・サーバ)は、仮想化されたサーバをレンタルするサービスで、共有サーバでありながら専門サーバと同等の機能を果たします。物理的な専門サーバより安価で提供できるメリットがあります。

0グッド

1クリップ

投稿2019/03/28 04:32

さくらのVPSでRailsアプリの環境構築をしています。
それで $ bundle install すると以下のエラーが発生し止まってしまいました。

Fetching mysql2 0.4.9 Installing mysql2 0.4.9 with native extensions Gem::Ext::BuildError: ERROR: Failed to build gem native extension. current directory: /home/kinoko/.rvm/gems/ruby-2.3.1/gems/mysql2-0.4.9/ext/mysql2 /home/kinoko/.rvm/rubies/ruby-2.3.1/bin/ruby -r ./siteconf20190328-376-1dhh2f4.rb extconf.rb checking for rb_absint_size()... yes checking for rb_absint_singlebit_p()... yes checking for ruby/thread.h... yes checking for rb_thread_call_without_gvl() in ruby/thread.h... yes checking for rb_thread_blocking_region()... no checking for rb_wait_for_single_fd()... yes checking for rb_hash_dup()... yes checking for rb_intern3()... yes checking for rb_big_cmp()... yes checking for mysql_query() in -lmysqlclient... no ----- mysql client is missing. You may need to 'apt-get install libmysqlclient-dev' or 'yum install mysql-devel', 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/kinoko/.rvm/rubies/ruby-2.3.1/bin/$(RUBY_BASE_NAME) --with-mysql-dir --without-mysql-dir --with-mysql-include --without-mysql-include=${mysql-dir}/include --with-mysql-lib --without-mysql-lib=${mysql-dir}/lib --with-mysql-config --without-mysql-config --with-mysql-dir --without-mysql-dir --with-mysql-include --without-mysql-include=${mysql-dir}/include --with-mysql-lib --without-mysql-lib=${mysql-dir}/lib --with-mysqlclientlib --without-mysqlclientlib To see why this extension failed to compile, please check the mkmf.log which can be found here: /home/kinoko/.rvm/gems/ruby-2.3.1/extensions/x86_64-linux/2.3.0/mysql2-0.4.9/mkmf.log extconf failed, exit code 1 Gem files will remain installed in /home/kinoko/.rvm/gems/ruby-2.3.1/gems/mysql2-0.4.9 for inspection. Results logged to /home/kinoko/.rvm/gems/ruby-2.3.1/extensions/x86_64-linux/2.3.0/mysql2-0.4.9/gem_make.out An error occurred while installing mysql2 (0.4.9), and Bundler cannot continue. Make sure that `gem install mysql2 -v '0.4.9' --source 'https://rubygems.org/'` succeeds before bundling. In Gemfile: mysql2

なのでGemfile のmysql2のコードをgem 'mysql2', '>= 0.3.18', '< 0.5'からgem 'mysql2'に変更し
$ bundle installしても解決しませんでした。
そこで単体でインストールしてみましたが以下エラーがでてしまいます。

$ gem install mysql2 -v '0.4.9' Building native extensions. This could take a while... ERROR: Error installing mysql2: ERROR: Failed to build gem native extension. current directory: /home/kinoko/.rvm/gems/ruby-2.3.1/gems/mysql2-0.4.9/ext/mysql2 /home/kinoko/.rvm/rubies/ruby-2.3.1/bin/ruby -r ./siteconf20190328-539-1jkxc5r.rb extconf.rb checking for rb_absint_size()... yes checking for rb_absint_singlebit_p()... yes checking for ruby/thread.h... yes checking for rb_thread_call_without_gvl() in ruby/thread.h... yes checking for rb_thread_blocking_region()... no checking for rb_wait_for_single_fd()... yes checking for rb_hash_dup()... yes checking for rb_intern3()... yes checking for rb_big_cmp()... yes checking for mysql_query() in -lmysqlclient... no ----- mysql client is missing. You may need to 'apt-get install libmysqlclient-dev' or 'yum install mysql-devel', 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/kinoko/.rvm/rubies/ruby-2.3.1/bin/$(RUBY_BASE_NAME) --with-mysql-dir --without-mysql-dir --with-mysql-include --without-mysql-include=${mysql-dir}/include --with-mysql-lib --without-mysql-lib=${mysql-dir}/lib --with-mysql-config --without-mysql-config --with-mysql-dir --without-mysql-dir --with-mysql-include --without-mysql-include=${mysql-dir}/include --with-mysql-lib --without-mysql-lib=${mysql-dir}/lib --with-mysqlclientlib --without-mysqlclientlib To see why this extension failed to compile, please check the mkmf.log which can be found here: /home/kinoko/.rvm/gems/ruby-2.3.1/extensions/x86_64-linux/2.3.0/mysql2-0.4.9/mkmf.log extconf failed, exit code 1 Gem files will remain installed in /home/kinoko/.rvm/gems/ruby-2.3.1/gems/mysql2-0.4.9 for inspection. Results logged to /home/kinoko/.rvm/gems/ruby-2.3.1/extensions/x86_64-linux/2.3.0/mysql2-0.4.9/gem_make.out

パッケージのインストールだけなのですが、解決出来ずにいますのでご教示お願いします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

mysql client is missing. You may need to 'apt-get install libmysqlclient-dev' or 'yum install mysql-devel', and try again.

VPSのOSがわからないのでそれ以上はコメントできませんが、メッセージに出たこちらは試されましたでしょうか。

投稿2019/03/28 04:36

maisumakun

総合スコア145183

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

koume

2019/03/28 04:48

回答ありがとうございます。VPSのOSはCentOS7です。 ご指摘の通り $ sudo yum install mysql-develのあと$ bundle installがうまくできました。 ありがとうございました。 今後とも宜しくお願いします。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.49%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問