我在2.3.8版本中获得了一个rails项目。当我试图运行rake db:create时,出现以下错误。
Couldn't create database for {"encoding"=>"utf8", "username"=>"root", "adapter"=>"mysql", "database"=>"claims_test", "host"=>"localhost", "password"=>"root", "socket"=>"/var/run/mysqld/mysqld.sock"}, charset: utf8, collation: utf8_unicode_ci
(if you set the charset manually, make sure you have a matching collation)
我手动创建了数据库,并尝试运行该应用程序。现在我收到了这个错误。
/!\ FAILSAFE /!\ Tue May 10 20:38:48 +0530 2011
Status: 500 Internal Server Error
uninitialized constant MysqlCompat::MysqlRes
我试过Webrick和mongrel,这两个问题似乎都是同样的原因。
答案 0 :(得分:4)
啊,这个错误是如此常见。它的MySQL。这是solution。根据需要更改路径。让我们知道您的身体情况如何。一切顺利。
export ARCHFLAGS="-arch i386 -arch x86_64" gem install mysql -- --with-mysql-dir=/usr/local \ --with-mysql-config=/usr/local/bin/mysql_config
答案 1 :(得分:3)
我遇到了同样的错误。就我而言,问题是我没有创建database.yml
中指定的MySQL用户。
mysql --user=root mysql
grant all privileges on *.* to 'user_name_here'@'localhost' identified by 'password_here';
exit;