2010-04-21 64 views
0

我正在嘗試使用基本的「Create a blog in 20 minutes」Rails screencast,但已經遇到了絆腳石。未能安裝activerecord-jdbcmysql-adapter gem

當我嘗試耙db:migrate時,我得到關於沒有安裝gem activerecord-jdbcmysql適配器的錯誤。當我嘗試安裝它時,我被告知它不存在。

如果我試圖簡單地安裝mysql,我會得到各種各樣的瘋狂。

我在Mac OS X 10.6.2上運行它,我的安裝都是通過gem完成的。我的基本設置工作(Hello world!)。

以下是錯誤日誌:

$ rake db:migrate (in /Users/xxxx/Sites/blog) rake aborted!

Please install the jdbcmysql adapter:

gem install activerecord-jdbcmysql-adapter (no such file to load -- active_record/connection_adapters/jdbcmysql_adapter)

(See full trace by running task with --trace)

$ sudo gem install activerecord-jdbcmysql-adapter

ERROR: could not find gem activerecord-jdbcmysql-adapter locally or in a repository

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

/opt/local/bin/ruby extconf.rb
checking for mysql_query() in
-lmysqlclient... no checking for main() in -lm... yes checking for
mysql_query() in -lmysqlclient... no
checking for main() in -lz... yes
checking for mysql_query() in
-lmysqlclient... no checking for main() in -lsocket... no checking for
mysql_query() in -lmysqlclient... no
checking for main() in -lnsl... no
checking for mysql_query() in
-lmysqlclient... no checking for main() in -lmygcc... no checking for
mysql_query() in -lmysqlclient... no
* 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=/opt/local/bin/ruby
--with-mysql-config
--without-mysql-config
--with-mysql-dir --without-mysql-dir
--with-mysql-include
--without-mysql-include=${mysql-dir}/include
--with-mysql-lib
--without-mysql-lib=${mysql-dir}/lib
--with-mysqlclientlib
--without-mysqlclientlib --with-mlib
--without-mlib --with-mysqlclientlib
--without-mysqlclientlib --with-zlib
--without-zlib --with-mysqlclientlib
--without-mysqlclientlib
--with-socketlib --without-socketlib
--with-mysqlclientlib
--without-mysqlclientlib
--with-nsllib --without-nsllib
--with-mysqlclientlib
--without-mysqlclientlib
--with-mygcclib --without-mygcclib
--with-mysqlclientlib
--without-mysqlclientlib

Gem files will remain installed in
/opt/local/lib/ruby/gems/1.8/gems/mysql-2.8.1
for inspection. Results logged to
/opt/local/lib/ruby/gems/1.8/gems/mysql-2.8.1/ext/mysql_api/gem_make.out

+0

我遇到了同樣的問題,我昨天剛安裝了NetBeans。 Java版本沒有幫助,重新安裝Rails 2.3.8也不起作用。有誰知道目前的修復程序是什麼? – sscirrus 2010-07-04 22:31:14

回答

2

看起來像某種方式或其他我有兩個版本的軌道安裝。我原本做的:

gem install rails 

其中安裝了2.3.5。然後,當我試圖運行腳手架它說我有錯誤的版本,它抱怨,並建議我安裝2.3.5 ...

我用命令這樣做:

gem install -v=2.3.5 rails 

這意味着我有兩個(當我試圖卸載時,我發現了這一點),出於某種原因,它試圖使用Ruby版本......這可能是由於Netbeans使用錯誤的設置。

在我卸載一切結束,跑到:

創業板安裝-v = 2.3.5軌

並確保Netbeans的是不是要使用JRuby的,因爲它以前。現在我有一個版本不支持腳手架或db:migrate。賣!

0

也許你的意思了activerecord-jdbcmysql適配器?你可以做一個gem activerecord-jdbcmysql-adapter並安裝。但是AFAIK只需要它來使用JDBC,通常使用JRUBY。如果您使用的是JRUBY,我建議您使用此網站http://kenai.com/projects/jruby/pages/Home

+0

我沒有選擇在任何地方使用JBury,這似乎是自己發生的。正如我所說,我安裝了$ gem install rails os OS X 10.6,所以無論如何,這是我的。 – 2010-04-21 17:24:33

1

聽起來您沒有安裝Apple Dev Tools,其中包含Ruby頭文件。

這就是固定的,當我與運行到這個ERROR: Failed to build gem native extension.

+1

對不起Zack你在一個鳴叫中提到這個,我完全忘了回覆。我已經安裝了XCode,它運行的很好,這是一個不同的問題。感謝您的迴應,永遠感激。 – 2010-04-22 08:26:16

0

工作對我來說:

gem install --platform java activerecord-jdbcmysql-adapter 

意識到這對http://rubygems.org/gems/activerecord-jdbcmysql-adapter看到的版本是複姓後不默認爲正確的平臺-java。

(所做的「寶石更新--system」前夕。不知道是否收到了有關這一任何影響。)

哦,是的,對於MySQL則需要Xcode和可能的附加頭被安裝MySQL的。