Rake db:create 不执行任何操作(使用 mysql2 0..2.7)
我已经尝试了很长一段时间让 Rails 与 MySQL 对话。我能够安装“mysql2”gem(v0.2.7),创建一个默认为 MySQL 的新 Rails 应用程序:
rails new mytest -d mysql
并捆绑安装
所有内容。
但是,当我运行 rake db:create 时,它只是挂起,没有错误,没有任何东西。 运行 rake db:create --trace 挂在“** 执行 db:create”处。
我的database.yml配置:
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: mytest_development
pool: 5
username: root
password: passwordforrootuser
host: localhost
使用:
- Windows 7(64位)
- MySQL 5.5 Server(32位)
- Ruby 1.9.2
真的是我无计可施。帮助???
I've been trying for a good while to get Rails to talk to MySQL. I was able to install the 'mysql2' gem (v0.2.7), create a new rails app defaulting to MySQL:
rails new mytest -d mysql
and bundle install
everything.
However, when I run rake db:create
, it simply hangs, no errors, no anything.
Running rake db:create --trace
hangs at '** Execute db:create'.
My database.yml configuration:
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: mytest_development
pool: 5
username: root
password: passwordforrootuser
host: localhost
Using:
- Windows 7 (64-bit)
- MySQL 5.5 Server (32-bit)
- Ruby 1.9.2
Really at my wit's end. Help???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能值得一试,如果您包括:
我的设置,通常看起来像:
Might be worth a try, if you include:
My setup, normally looks like: