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

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

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

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

MySQL

MySQL(マイエスキューエル)は、TCX DataKonsultAB社などが開発するRDBMS(リレーショナルデータベースの管理システム)です。世界で最も人気の高いシステムで、オープンソースで開発されています。MySQLデータベースサーバは、高速性と信頼性があり、Linux、UNIX、Windowsなどの複数のプラットフォームで動作することができます。

Ruby on Rails

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

Q&A

1回答

3169閲覧

【Rails】rake db:create時の「LoadError: cannot load such file -- mysql2」を解消したい

t.ozawa

総合スコア8

Ruby

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

MySQL

MySQL(マイエスキューエル)は、TCX DataKonsultAB社などが開発するRDBMS(リレーショナルデータベースの管理システム)です。世界で最も人気の高いシステムで、オープンソースで開発されています。MySQLデータベースサーバは、高速性と信頼性があり、Linux、UNIX、Windowsなどの複数のプラットフォームで動作することができます。

Ruby on Rails

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

0グッド

0クリップ

投稿2020/01/13 12:53

編集2020/01/13 15:55

少し前までは普通にrailsでのアプリ開発ができていたのですが、数週間ぶりにローカルでアプリをつくろうとしたところ、rake db:createでエラーが出てしまいました。
諸々やってもうまくいかなかったため、MySQLをbrewコマンドでアンインストールして、再度インストールしましたが、それでも解決できませんでした。。

ざっくりとした質問で申し訳ありませんが、どなたかアドバイスをいただけると幸いです。

環境

mac OS
Rails 6.0.2.1
ruby 2.5.1
mysql

エラー詳細

(base) $ rails new アプリ名 -d mysql (base) $ cd アプリ名 (base) $ rake db:create rake aborted! LoadError: Error loading the 'mysql2' Active Record adapter. Missing a gem it depends on? cannot load such file -- mysql2 Caused by: LoadError: cannot load such file -- mysql2 Caused by: Bootsnap::LoadPathCache::FallbackScan: Tasks: TOP => db:create => db:load_config (See full trace by running task with --trace)

関係があるかどうかわかりませんが、

+---------------+-----------+ | user | host | +---------------+-----------+ | mysql.session | localhost | | mysql.sys | localhost | | root | localhost | +---------------+-----------+

以前はMySQLのuserが上記のようになっていた気がするのですが、今回調べてみたところ、
以下のようにrootのみになってしまっていました。
こちらもWEBで調べましたが、追加方法が不明で対応できていません。。

(base) $ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 12 Server version: 5.6.43 Homebrew Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> use mysql; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> select user, host from user; +------+-----------+ | user | host | +------+-----------+ | root | localhost | +------+-----------+ 1 row in set (0.01 sec)

追加

Gemfile

source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.5.1' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 6.0.2', '>= 6.0.2.1' # Use mysql as the database for Active Record gem 'mysql2', '>= 0.4.4' # Use Puma as the app server gem 'puma', '~> 4.1' # Use SCSS for stylesheets gem 'sass-rails', '>= 6' # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker gem 'webpacker', '~> 4.0' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks gem 'turbolinks', '~> 5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use Active Model has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use Active Storage variant # gem 'image_processing', '~> 1.2' # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.4.2', require: false group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of web drivers to run system tests with browsers gem 'webdrivers' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

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

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

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

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

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

guest

回答1

0

Missing a gem it depends on? cannot load such file -- mysql2

とありますね。Gemfileに gem 'mysql2' として bundle install を

投稿2020/01/13 13:01

winterboum

総合スコア23331

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

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

t.ozawa

2020/01/13 15:56

今しがたGemfileの内容を追記させていただきました。 最初から以下の記述はありますが、これとは別にということでしょうか? gem 'mysql2', '>= 0.4.4'
winterboum

2020/01/14 00:25

bundle install は成功しています? Gemfile.lockに mysql2はあります?
t.ozawa

2020/01/14 01:22 編集

bundle installは成功しています! Gemfile.lockにも以下の通り、mysqlの記載はあります。。 ------------------------------------------ 〜省略〜 DEPENDENCIES bootsnap (>= 1.4.2) byebug capybara (>= 2.15) jbuilder (~> 2.7) listen (>= 3.0.5, < 3.2) mysql2 (>= 0.4.4) puma (~> 4.1) rails (~> 6.0.2, >= 6.0.2.1) sass-rails (>= 6) selenium-webdriver spring spring-watcher-listen (~> 2.0.0) turbolinks (~> 5) tzinfo-data web-console (>= 3.3.0) webdrivers webpacker (~> 4.0)
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

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

ただいまの回答率
85.48%

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

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

質問する

関連した質問