I use postgresql command 'createuser myusername'. It prompts me for password always. If I leave password blank it gives an error that no password is specified.

I simply want to create a user with blank/no password and I'm not able to do it with Postgresql 9 under mac os x.

What steps should I take to create a user with no password. The command always asks me to enter a password.

link|improve this question

72% accept rate
feedback

2 Answers

up vote 5 down vote accepted

You're barking up the wrong tree trying to fix this with createuser. If you care to check the man page for createuser it will tell you that login will fail if you really need a password and set --no-password. createuser actually just creates a user. It does not decide how the user will have to authenticate.

Authentication is handled mainly in pg_hba.conf, which decides whether or not to require passwords at login. I've never run PostgreSQL on OS X. On Linux, my distro's stock conf 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            trust
# IPv6 local connections:
host    all             all             ::1/128                 trust

I would make sure you have something like the first line for for development access. Note: psql will try to connect with a unix socket if there is no --host option set. The second line would be used if you try to connect with psql --host localhost

link|improve this answer
where is the location of file pg_hba.conf on a mac os x or linux box? – othman Mar 25 '11 at 14:05
For Ubuntu, you can find it at /etc/postgresql/9.0/main/pg_hba.conf (for PostgreSQL 9.0). – jmonteiro Jan 13 at 23:30
1  
For OS X 10.6.8, you can find it at /Library/PostgreSQL/8.3/data/pg_hba.conf. Note that it is owned by the postgres user, so you will need to su postgres to edit it. – Chris Jan 17 at 6:51
feedback

Rather than creating a user with no password, create a .pgpass file with the password in to have it automatically supplied. This will be respected by all applications that use libpq to connect, which is practically all of them except the JDBC driver and the .NET driver.

link|improve this answer
+1 pgpass is the way to do this. – Adam Gent Mar 24 '11 at 19:33
feedback

Your Answer

 
or
required, but never shown

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