MySQL Ruby Gem安装问题

时间:2011-04-09 19:21:58

标签: mysql ruby-on-rails ruby-on-rails-3 macos osx-server

所以我知道之前已经问过这个问题,我已经查看了之前的所有答案,但仍然无法找到解决方案。希望你们都能提供帮助。

设置:我正在运行Mac OS X 10.6服务器。我已经在Web应用程序上使用了内置的MySQL安装,它运行良好。现在我正在尝试运行需要MySQL的RoR应用程序。

所以,每当我进入

gem install mysql

它吐出以下错误:

Building native extensions.  This could take a while...
ERROR:  Error installing mysql:
    ERROR: Failed to build gem native extension.

/Users/admin/.rvm/rubies/ruby-1.9.2-p180/bin/ruby extconf.rb --with-mysql-config=/var/mysql
*** 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=/Users/admin/.rvm/rubies/ruby-1.9.2-p180/bin/ruby
    --with-mysql-config
extconf.rb:35:in ``': Permission denied - /var/mysql --cflags (Errno::EACCES)
    from extconf.rb:35:in `<main>'


Gem files will remain installed in /Users/admin/.rvm/gems/ruby-1.9.2-p180@rails3/gems/mysql-2.8.1 for inspection.
Results logged to /Users/admin/.rvm/gems/ruby-1.9.2-p180@rails3/gems/mysql-    2.8.1/ext/mysql_api/gem_make.out

因此,通过我的研究,我试图明确说明MySQL安装的位置。

gem install mysql -- --with-mysql-config=/var/mysql

不幸的是,结果相同。

从这里开始的任何想法?

谢谢!

凯文

5 个答案:

答案 0 :(得分:5)

答案 1 :(得分:1)

在Mac OSX Lion 10.7上,这个命令帮我安装了mysql2 gem:

sudo gem install mysql2 -- --with-mysql-lib=/usr/local/Cellar/mysql55/5.5.30/lib --with-mysql-include=/usr/local/Cellar/mysql55/5.5.30/include/

在此之前我通过brew安装mysql55,如上所述。

答案 2 :(得分:0)

你的milage可能会有所不同,但这似乎对我们有用。首先,确保您在第一个(来自Apple)上有正确的库:

http://www.opensource.apple.com/other/MySQL-53.binaries.tar.gz

通过以下方式安装:

sudo tar -xvf ~/Downloads/MySQL-53.binaries.tar -C /

然后,对于我们的10.6服务器,mysql_config的位置不同:

gem install mysql -- --with-mysql-config=/usr/bin/mysql_config

答案 3 :(得分:0)

gem install mysql2 -- '--with-mysql-lib="c:\Program Files\MySQL\MySQL Server 5.5\lib" --with-mysql-include="c:\Program Files\MySQL\MySQL Server 5.5\include"'

使用上面的方法在Windows上使用ruby Ruby 2.0。我将库更改为lib而不是lib\opt,因为MySQL服务器5.5中不存在lib\opt

我从以下问题的解决方案中选择了上述命令: http://rorguide.blogspot.com/2011/03/installing-mysql2-gem-on-ruby-192-and.html

答案 4 :(得分:0)

我成功使用了这个sudo gem install mysql -v '2.8.1' -- --with-mysql-config=/usr/local/mysql/bin/mysql_config 但是指定我需要的mysql版本