Re: Changing user passwords - Mailing list pgsql-sql

From Nagy Laszlo Zsolt , KLTE TTK pm1
Subject Re: Changing user passwords
Date
Msg-id Pine.GSO.4.10.10008081457470.20170-100000@dragon
Whole thread Raw
In response to Changing user passwords  (Rob van der Leek <rob@frog.nl>)
List pgsql-sql
> Is it possible to change a user's password without using the pg_passwd
> command?
> For example, how does a user changes his password from the interactive
> monitor?

See the following commands:

CREATE USER
ALTER USER
CREATE GROUP
ALTER GROUP

For example:

ALTER USER user1 WITH PASSWORD 'password1';

Please note thatuser passwords cannot be changed in a transaction. ( 7.0.2
)
Laci 1.0



pgsql-sql by date:

Previous
From: Philip Warner
Date:
Subject: Re: Subselect and limit/order?
Next
From: Rob van der Leek
Date:
Subject: Re: Changing user passwords