安裝Redmine2.3.0時,需要安裝Mysql20.3.11,總是安裝失敗問題

填坑大人發表於2013-05-20

安裝Redmine2.3.0時,需要安裝Mysql2 0.3.11,總是安裝失敗,顯示以下資訊:

[root@cloudop redmine-2.3.0]# gem install mysql2
Building native extensions.  This could take a while...
ERROR:  Error installing mysql2:
	ERROR: Failed to build gem native extension.

        /usr/local/bin/ruby extconf.rb
checking for rb_thread_blocking_region()... no
checking for rb_wait_for_single_fd()... no
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
	--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=/usr/local/bin/ruby
	--with-mysql-config
	--without-mysql-config


Gem files will remain installed in /usr/local/lib/ruby/gems/1.8/gems/mysql2-0.3.11 for inspection.
Results logged to /usr/local/lib/ruby/gems/1.8/gems/mysql2-0.3.11/ext/mysql2/gem_make.out

我是Redhat5.5的系統,查了下資料,通過更新mysql的庫來解決了:

# yum install mysql-devel
# gem install mysql2


相關文章