Starting to develop my first Ruby on Rails app with postgresql on Ubuntu. I have created a postgresql user with a password. In the database.yml, I put in the postgresql username and password.

Whenever I run a rake db:migrate it executes without error no matter what I change the password to in the database.yml - even if the password field is blank. If I change the username I get an authentication error.

How do I get Ruby on Rails database to use a password?

TIA

link|improve this question

What does the database.yml file look like? Passwords in postgre work for me. – Matchu Apr 5 '11 at 1:53
feedback

3 Answers

up vote 5 down vote accepted

You're probably using ident or even trust authentication. A quick synopsis of the most common authentication methods:

  • trust - You can log in no matter what.
  • ident - You can log in if your UNIX username is the same as the PostgreSQL username.
  • md5 - You can log in if your password (encrypted with md5) is correct.

Locate your pg_hba.conf file, and see if you can find something that looks like this:

# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

# "local" is for Unix domain socket connections only
local   all         all                               ident
# IPv4 local connections:
host    all         all         127.0.0.1/32          md5
# IPv6 local connections:
host    all         all         ::1/128               md5

When you try to connect, PostgreSQL goes through this line-by-line. If the connection type (e.g. local, host), database, user (database user, not system user), and address all match up, it will use the given authentication method.

If you want to require a password to access your own PostgreSQL user, you could add a line like this at the top, before the local all all ident line:

# TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD
local   mydbname    myusername                        md5

Be sure to restart PostgreSQL after changing pg_hba.conf.

link|improve this answer
Very helpful, thanks. I created a project-specific DB user and found that I needed to grant projectusername MD5 access to the default postgres database as well the three Rails databases. That allows rake db:create:all (under Rails 3.1) to create the Rails databases. I wrote up the details here. – Mark Berry Oct 7 '11 at 21:43
feedback

I've only barely used PostgreSQL, but I do know it has a feature called sameuser. If the name of the system user matches the name of the database user, the password is not required. So, if I logged into this computer with the username "matchu", and there is a user in PostgreSQL named "matchu", I could log in to that database user without additional authentication.

Could that be what's going on here?

link|improve this answer
Thanks for the info – user678604 Apr 19 '11 at 4:20
feedback

I wrote a post a a while ago about setting up Rails users in postgres. It's worth a look and may provide a workaround, but I think Matchu probably nailed it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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