Re: pg_hba.conf authorization question

From: Çagil Seker <cagils(at)biznet(dot)com(dot)tr>
To: "Reid Thompson" <Reid(dot)Thompson(at)ateb(dot)com>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: pg_hba.conf authorization question
Date: 2002-12-13 17:07:20
Message-ID: 94327A2FE8C87C4C89A82DBE9E7B2B3F086898@beetle.biznet.com.tr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


Either md5 or password will work. But I'd recommend md5 for security reasons. That will send passwords using encryption (double). Also note that in order to this work every user must have a password set in pg_shadow. Also set security = true in postgresql.conf. And use "alter user 'myuser' set encrypted password 'password'" command to set passwords.

# TYPE DATABASE IP_ADDRESS MASK AUTH_TYPE AUTH_ARGUMENT
local all md5
host all 127.0.0.1 255.255.255.255 md5
host all 192.168.100.0 255.255.255.0 md5
Regards,

Çagil SEKER
-----------------
"Yes, I am a criminal. My crime is that of outsmarting you. Something that you'll never forgive me for!" - The Mentor'86 (Hacker's Manifesto)
-----------------

-----Original Message-----
From: Reid Thompson [mailto:Reid(dot)Thompson(at)ateb(dot)com]
Sent: 13 Aralik 2002 Cuma 18:25
To: pgsql-general(at)postgresql(dot)org
Subject: [GENERAL] pg_hba.conf authorization question

Could someone give me guidance on the following.
I would like to configure the DB such that connections will only be allowed to users created using createuser verified by the password that was set during the creatuser process. The user and password do NOT correlate to system users(linux host). Connections will be both local and TCP based.
Rather than the open to everyone entries that I have in pg_hba.conf below, what should the entries look like under

# TYPE DATABASE IP_ADDRESS MASK AUTH_TYPE AUTH_ARGUMENT
local all trust
host all 127.0.0.1 255.255.255.255 trust
host all 192.168.100.0 255.255.255.0 trust

Thanks,
reid

Browse pgsql-general by date

  From Date Subject
Next Message Manfred Koizar 2002-12-13 17:13:49 Re: INDEX suggestion needed
Previous Message Thomas Beutin 2002-12-13 16:46:25 Re: pg_hba.conf authorization question