![]() |
Newbie needs help with the rake db:migrate command
Hi, I'm running ROR on my Max OSX Darwin with mysql. I've successfully installed the mysql gem abd have created the active record class by extending ActiveRecord::Migration I have defined my database.yml as follows for development (names changed to protect the innocent :o) )
development: adapter: mysql database: myData_development username: userName passwoed: myPassword host: localhost when rake runs it stops with the following rake aborted! Access denied for user 'userName'@'localhost' (using password: NO) 2 questions. Why isn't it using the password supplied in the database.yml file? and how can I make it do so? Thanks for the help. |
rptodd1,
if your database.yml has the correct structure, then this password is used so dont worry about that. Try the following Code:
mysql -p userNameIf your connection is ineed refused, login as root/administrator and do a Code:
GRANT ALL ON myData_development.* TO 'userName'@'localhost' IDENTIFIED BY 'passWord' |
Did you ever figure this out? It's because you spelled 'password' with an 'e'
(using password: NO) in MySQL parlance means the client did not attempt to give the server a password at all, so it's not (yet) a grant issue. |
| All times are GMT +1. The time now is 03:46 PM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.