我正在尝试安装mysql2(版本 0.4.5 ),我正在使用 Rails 5.0.2 ,Ruby 2.3.1
我已经使用自制程序(版本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
我怎样才能完成工作?
答案 0 :(得分:21)
您正在安装较旧版本的gem(0.4.5)。我有同样的问题(使用0.4.3)。安装版本0.4.10为我解决了这个问题。
试试这个:
gem install mysql2 -v 0.4.10
如果安装得很干净,您必须更新Gemfile
以要求此版本:
gem 'mysql2', '~> 0.4.10'
不安装较新版本的gem(即0.5.x),它们不适用于Rails 4或更早版本的Rails 5(5.0.7 / 5.1.6之前) )(见https://github.com/brianmario/mysql2/issues/950)。
答案 1 :(得分:1)
默认情况下,在5.7中默认启用了MySQL 5.7文档MYSQL_SECURE_AUTH
,因为mysql2不能在MySQL => 5.7的版本0.4.10
下编译>
答案 2 :(得分:0)
在这里对我有用的另一个替代方法是安装MariaDB,该版本太具体是10.0.x
$ brew install mariadb@10.0
$ brew link mariadb@10.0 --force
要自动启动MariaDB Server,请使用Homebrew的服务功能,该功能与macOS launchctl集成:
brew services start mariadb@10.0
现在,安装mysql2会很有趣。
$ gem install mysql2 -v '0.4.6'
Building native extensions. This could take a while...
Successfully installed mysql2-0.4.6
答案 3 :(得分:0)
我通过从dmg软件包安装MySQL使其工作 https://dev.mysql.com/downloads/mysql/5.7.html#downloads
答案 4 :(得分:0)
我认为您可以删除Gemfile.lock中的所有内容。再次尝试bundle install
之后,您的项目将可以正常运行。
答案 5 :(得分:-1)
尝试取消链接并重新安装mysql:
brew unlink mysql
brew cleanup
brew install mysql
gem install mysql2