vote up -1 vote down star
1
kratos-iii:railsproj zachinglis$ rake db:create
(in /Users/zachinglis/Sites/rails/railsproj)
Couldn't create database for {"adapter"=>"mysql", "host"=>"localhost", "username"=>"root", "password"=>nil, "database"=>"railsproj_development"}, charset: utf8, collation: utf8_general_ci (if you set the charset manually, make sure you have a matching collation)

I had no issues using Sequel Pro and even creating said database.

How do I resolve this? Having an empty password never gave me issues before. And I really doubt thats it.

flag
1  
What exactly do want to know? Please write a real question! – Christoph Schiessl Sep 1 at 18:01
1  
Your password being empty probably is the problem, but who knows with such a vague "question"? I would recommend restarting the question with a question mark somewhere so people know what the actual point in question is. – Godeke Sep 1 at 18:23

3 Answers

vote up 1 vote down check

I was having the same problem than you, me and my friends were all going made because of it, until we've found this link http://weblog.rubyonrails.org/2009/8/30/upgrading-to-snow-leopard

I've just followed the mysql installation stepd and it worked great here :]

link|flag
vote up 0 vote down

Does the database already exist? Is MySQL setup and running? What changed? (OS Upgrade maybe)? Does a fresh rails app work? What about your other environments (test, production)?

Is there a back trace? you could post (use rake --trace db:create). Usually MySQL is returns a very explicit error message, rake is just eating it.

link|flag
The database exists, I can access MySQL. I created the db as a test & created a table. I started FRESH on Snow Leopard. All environments fail similarly. Backtrace: ** Invoke db:create (first_time) ** Invoke db:load_config (first_time) ** Invoke rails_env (first_time) ** Execute rails_env ** Execute db:load_config ** Execute db:create Couldn't create database for {"adapter"=>"mysql", "host"=>"localhost", "username"=>"root", "password"=>nil, "database"=>"railsproj_development"}, charset: utf8, collation: utf8_general_ci (if you set the charset manually, make sure you have a matching collation) – Pie Sep 2 at 11:45
vote up 0 vote down

I just encountered this as well on a fresh Snow Leopard install.

I had another project that created the databases without issue, but my primary project would give the errors you described. After poking around, the only difference was the former specified a socket, whereas the failing project (and yours too) uses a host.

That is to say, this database.yml causes the problem:

development:
  adapter: mysql
  database: fanvsfan_development
  username: root
  password:
  host: localhost

But this works:

development:
  adapter: mysql
  database: fanvsfan_development
  username: root
  password:
  socket: /tmp/mysql.sock

I'm unsure what the actual difference is, but this seems like a workaround.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.