簡體   English   中英

帶有xampp + rails + mysql2 gem的OS X Lion

[英]OS X Lion with xampp + rails + mysql2 gem

我一直試圖找出如何通過XAMPP安裝的MySQL使OS X Lion與rails中的mysql2 gem一起工作。

這是我嘗試過的:

  • 安裝了XAMPP開發套件
  • 安裝了帶有端口和brew的mysql5-server。 我現在都卸載了這兩個。 因為它不能解決問題。
  • 從DMG文件安裝了mysql5社區版。 現在已卸載,因為它不能解決問題。
  • 以tar格式下載了mysql5社區版的32位版本。 提取文件夾到'/ var / mysql'

這是我正在嘗試嘗試安裝的命令:

gem install mysql2 -- --with-mysql-dir=/var/mysql --with-mysql-include=
/var/mysql/include --with-mysql-lib=/var/mysql/lib --with-mysql-config=
/Applications/XAMPP/xamppfiles/bin/mysql_config

我很茫然如何使它工作。 我唯一能想到的是,我以某種方式未正確指向目錄。 我試過從with-mysql-include,with-mysql-dir和with-mysql-lib配置選項中刪除/ include /,/ mysql /和/ lib /。 沒有運氣。 我嘗試將其指向XAMPP安裝。 仍然沒有運氣。

返回的錯誤是:

ERROR: Error installing mysql2:
ERROR: Failed to build gem native extension.

/Users/user/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb --with-mysql-dir=/var/mysql --with-mysql-include=/var/mysql/include --with-mysql-lib=/var/mysql --with-mysql-config=/Applications/XAMPP/xamppfiles/bin/mysql_config
checking for rb_thread_blocking_region()... yes
checking for rb_wait_for_single_fd()... yes
checking for mysql.h... no
checking for mysql/mysql.h... no
-----
mysql.h is missing.  please check your installation of mysql and try again.
-----
*** 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
    --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/user/.rvm/rubies/ruby-1.9.3-p194/bin/ruby
    --with-mysql-config


Gem files will remain installed in /Users/user/.rvm/gems/ruby-1.9.3-p194/gems/mysql2-0.3.11 for inspection.
Results logged to /Users/user/.rvm/gems/ruby-1.9.3-p194/gems/mysql2-0.3.11/ext/mysql2/gem_make.out

最好不要理會XAMPP提供的東西,而只安裝MySQL的新副本,並簡化安裝mysql2的Gem命令:

brew install mysql
gem install mysql2

由於所有這些,在通過Homebrew安裝MySQL之后,您在安裝gem時遇到錯誤:

--with-mysql-dir=/var/mysql --with-mysql-include= \
/var/mysql/include --with-mysql-lib=/var/mysql/lib --with-mysql-config= \
/Applications/XAMPP/xamppfiles/bin/mysql_config

因此,刪除它可以解決問題。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM