Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just pushed my local rails app to heroku and then ran

heroku rake db:migrate

This created all the tables and stuff on my heroku server. However, I have just 4 rows in a table which I would like to insert into tables just created on heroku.

So I used

heroku db:push

But this gives me an error

Auto-detected local database: postgres://myuser:samplepwd@127.0.0.1/420railsdb?encoding=utf8
Failed to connect to database:
  Sequel::DatabaseConnectionError -> PGError FATAL:  password authentication failed for user

"myuser"

my database.yml looks like this

development:
  adapter: postgresql
  encoding: unicode
  database: myrailsdb
  pool: 5
  username: myuser
  password: samplepwd

btw, I am in my early days with postgresql and rails. So please dumb down the answer ...

share|improve this question
The problem is on your own machine. Heroku doesn't use your database.yml on their end; they do need it to be correct on your end so they can dump the 4 rows they'll push. – Tobu Jan 17 '10 at 14:46
>_< ok got it. plus this helped as well. stackoverflow.com/questions/1320222/… – Omnipresent Jan 17 '10 at 15:06

closed as not a real question by casperOne Mar 19 at 12:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I don't know Heroku at all.

Are you certain there exists a Postgres user "myuser" with the password "samplepwd" for the correct database on the Postgres server you are trying to connect to? see: man createuser

Also, the "auto-detected ..." line seems to suggest the database name used is "420railsdb", while the .yml file has "myrailsdb" as database name. List the existing databases with "psql -l" to see which one is the correct one.

share|improve this answer
I have no idea why you were downvoted since that is a standard Pg error message and that is exactly where to start checking. – Chris Travers Mar 10 at 8:20

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