LoginSignup
12
12

More than 5 years have passed since last update.

mysql.h is missing ...

Posted at

Rails3をインストールしたので、MySQLをデータベースにしてプロジェクトを作成しようとした。

$ rails new app -d mysql

ところが、bundle installの際にmysql2のインストールに失敗し、

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

というエラーメッセージを出してしまった。
インクルードヘッダが見つからないということなので、

$ ls /usr/include

で確認したところmysqlがない。

$ yum install mysql-devel

mysql-develをインストールしたところ、mysql.hが作成されていたので、改めてmysql2をインストール

$ gem install mysql2

無事にプロジェクトも作成できた。

12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12