Re: [GENERAL] createuser: How to specify a database to connect to - Mailing list pgsql-general

From Adrian Klaver
Subject Re: [GENERAL] createuser: How to specify a database to connect to
Date
Msg-id 2555128d-28a8-98fa-d0db-ae7089473fbe@aklaver.com
Whole thread Raw
In response to Re: [GENERAL] createuser: How to specify a database to connect to  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [GENERAL] createuser: How to specify a database to connect to  (Schmid Andreas <Andreas.Schmid@bd.so.ch>)
List pgsql-general
On 03/13/2017 09:19 AM, Tom Lane wrote:
> Adrian Klaver <adrian.klaver@aklaver.com> writes:
>> On 03/13/2017 08:52 AM, Tom Lane wrote:
>>> If by "history" you're worried about the server-side statement log, this
>>> is merest fantasy: the createuser program is not magic, it just constructs
>>> and sends a CREATE USER command for you.  You'd actually be more secure
>>> using psql, where (if you're superuser) you could shut off log_statement
>>> for your session first.
>
>> There is a difference though:
>
>> psql> CREATE USER:
>
>> postgres-2017-03-13 09:03:27.147 PDT-0LOG:  statement: create user
>> dummy_user with login password '1234';
>
> Well, what you're supposed to do is
>
> postgres=# create user dummy_user;
> postgres=# \password dummy_user
> Enter new password:
> Enter it again:
> postgres=#
>
> which will result in sending something like
>
> ALTER USER dummy_user PASSWORD 'md5c5e9567bc40082671d02c654260e0e09'
>
> You can additionally protect that by wrapping it into one transaction
> (if you have a setup where the momentary existence of the role without a
> password would be problematic) and/or shutting off logging beforehand.

Got it.

>
>             regards, tom lane
>


--
Adrian Klaver
adrian.klaver@aklaver.com


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: [GENERAL] createuser: How to specify a database to connect to
Next
From: Alexander Farber
Date:
Subject: [GENERAL] DELETE and JOIN