web-dev-qa-db-ja.com

Mysql 2 gemのインストールが失敗する

Mysql2(バージョン.4.5)をインストールしようとしていますが、Rails 5.0.2、Ruby 2.3.1を使用しています

Homebrew(バージョン8.0.11)を使用してmysqlサーバーを既にインストールし、mysqlを次のように起動しました。

brew install mysql
brew services start mysql

Gemfile.rb

gem 'mysql2'

Gem mysql2をインストールしようとすると、次のエラーが表示されます

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

    current directory: /Users/gomathi/.rvm/gems/Ruby-2.3.1@connector/gems/mysql2-0.4.5/ext/mysql2

creating Makefile

current directory: /Users/gomathi/.rvm/gems/Ruby-2.3.1@connector/gems/mysql2-0.4.5/ext/mysql2
make "DESTDIR=" clean

current directory: /Users/gomathi/.rvm/gems/Ruby-2.3.1@connector/gems/mysql2-0.4.5/ext/mysql2
make "DESTDIR="
compiling client.c
In file included from client.c:1:
In file included from ./mysql2_ext.h:41:
./result.h:24:3: error: unknown type name 'my_bool'
  my_bool *is_null;
  ^
./result.h:25:3: error: unknown type name 'my_bool'
  my_bool *error;
  ^
client.c:507:3: error: use of undeclared identifier 'my_bool'
  my_bool res = mysql_read_query_result(client);
  ^
client.c:509:19: error: use of undeclared identifier 'res'
  return (void *)(res == 0 ? Qtrue : Qfalse);
                  ^
client.c:828:3: error: use of undeclared identifier 'my_bool'
  my_bool boolval;
  ^
client.c:859:7: error: use of undeclared identifier 'boolval'
      boolval = (value == Qfalse ? 0 : 1);
      ^
client.c:860:17: error: use of undeclared identifier 'boolval'
      retval = &boolval;
                ^
client.c:863:10: error: use of undeclared identifier 'MYSQL_SECURE_AUTH'; did you mean 'MYSQL_DEFAULT_AUTH'?
    case MYSQL_SECURE_AUTH:
         ^~~~~~~~~~~~~~~~~
         MYSQL_DEFAULT_AUTH
/usr/local/Cellar/mysql/8.0.11/include/mysql/mysql.h:188:3: note: 'MYSQL_DEFAULT_AUTH' declared here
  MYSQL_DEFAULT_AUTH,
  ^
client.c:864:7: error: use of undeclared identifier 'boolval'
      boolval = (value == Qfalse ? 0 : 1);
      ^
client.c:865:17: error: use of undeclared identifier 'boolval'
      retval = &boolval;
                ^
client.c:896:38: error: use of undeclared identifier 'boolval'
        wrapper->reconnect_enabled = boolval;
                                     ^
client.c:1285:38: error: use of undeclared identifier 'MYSQL_SECURE_AUTH'; did you mean 'MYSQL_DEFAULT_AUTH'?
  return _mysql_client_options(self, MYSQL_SECURE_AUTH, value);
                                     ^~~~~~~~~~~~~~~~~
                                     MYSQL_DEFAULT_AUTH
/usr/local/Cellar/mysql/8.0.11/include/mysql/mysql.h:188:3: note: 'MYSQL_DEFAULT_AUTH' declared here
  MYSQL_DEFAULT_AUTH,
  ^
12 errors generated.
make: *** [client.o] Error 1

make failed, exit code 2

どうすれば仕事を終わらせることができますか?.

20
user8927599

Gemの古いバージョン(0.4.5)をインストールしています。同じ問題がありました(0.4.3を使用)。バージョン0.4.10をインストールすると、これが解決しました。

これを試して:

gem install mysql2 -v 0.4.10

それが正常にインストールされている場合は、Gemfileを更新してこのバージョンを要求する必要があります。

gem 'mysql2', '~> 0.4.10'

Do n'tgemの新しいバージョン(0.5.xなど)をインストールしないでください。Rails 4またはRails 5の古いリリース(5.0.7/5.1.6より前)( https://github.com/brianmario/mysql2/issues/95 を参照)。

23
Chris W

MySQL 5.7文書によれば、MYSQL_SECURE_AUTHは5.7でデフォルトで有効になっています。これは、mysql2が0.4.10からMySQL => 5.7にバージョンをコンパイルしないためです。

2

ここで私のために働いた別の選択肢は、MariaDB、特にバージョン10.0.xをインストールすることでした

$ brew install [email protected]
$ brew link [email protected] --force

MariaDBサーバーを自動起動するには、Homebrewのサービス機能を使用し、macOS launchctlと統合します:

brew services start [email protected]

これで、mysql2のインストールは魅力のように機能します。

$ gem install mysql2 -v '0.4.6'
Building native extensions. This could take a while...
Successfully installed mysql2-0.4.6
0
Sagar Ranglani

DmgパッケージからMySQLをインストールすることで機能しました https://dev.mysql.com/downloads/mysql/5.7.html#downloads

0
vrybas

Gemfile.lockのすべてを削除できると思います。 bundle installを再試行すると、プロジェクトは正常に実行されます。