0

だから私は大きな問題を抱えています私は私のSQLをインストールしたレール2.3.11とルビー1.8.7を使用してプロジェクトを開始したいです

    gem install mysql

それから私は走ります

    rake db:create

しかし、私はエラーが発生しました

    Couldn't create database for {"adapter"=>"mysql", "database"=>"test_development", "encoding"=>"utf8", "reconnect"=>false, "username"=>"root", "pool"=>5, "host"=>"localhost", "password"=>nil}, charset: utf8, collation: utf8_unicode_ci (if you set the charset manually, make sure you have a matching collation)

いくつかの検索の後、これらのコマンドを実行するためにmysqlをアンインストールしてこの行を実行するという解決策が与えられました

    gem install mysql -- --with-mysql-dir=/usr/local \ --with-mysql-config=/usr/local/bin/mysql_config

しかし、私は別のエラーが発生しました

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

    /home/asnad/.rvm/rubies/ruby-1.8.7-p370/bin/ruby extconf.rb --with-mysql-dir=/usr/local  --with-mysql-config=/usr/local/bin/mysql_config
    extconf.rb:5: command not found: /usr/local/bin/mysql_config --cflags

    *** 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=/home/asnad/.rvm/rubies/ruby-1.8.7-p370/bin/ruby
--with-mysql-config

私は過去2日間努力しています。事前にラップトップにブレーキをかける前に、助けてください。

4

2 に答える 2

0

使ってみてくださいmysql2 gem
アプリケーションに mysql2 gem を使用する予定がある場合libmysqlclient-devは、その前にパッケージをインストールする必要があります。詳細: http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/

于 2013-01-13T12:11:16.233 に答える
0

私は問題を解決しました

gem uninstall mysql
export PATH=$PATH:/usr/local/mysql/bin
sudo gem install mysql
于 2013-01-17T10:25:19.883 に答える