Re: Changing user passwords

Поиск
Список
Период
Сортировка
От Rob van der Leek
Тема Re: Changing user passwords
Дата
Msg-id 39900D71.170A98BD@frog.nl
обсуждение исходный текст
Ответ на Re: Changing user passwords  ("Nagy Laszlo Zsolt , KLTE TTK pm1" <nagylzs@dragon.klte.hu>)
Список pgsql-sql
A question about the ALTER USER command I couldn't find in the 
standard documentation:

- How do I assign an 'undefined' password?

ALTER USER nobody WITH PASSWORD "";

works, but doesn't assign an undefined password to nobody (like the
`pg_passwd nobody` command would do).

DROP USER nobody; CREATE USER nobody;

doesn't do the job either.

And why does the ALTER USER command operates on pg_shadow instead of
pg_passwd? (or is this configurable?)

rob.

- 

"Nagy Laszlo Zsolt , KLTE TTK pm1" wrote:
> 
> > 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

-- 
Rob van der Leek
E-mail: rob@frog.nl
----------------------------
FROG Navigation Systems b.v.
Cartesiusweg 120
3534 BD Utrecht
Tel. 030-2440550
Fax. 030-2440700
http://www.frog.nl
----------------------------


В списке pgsql-sql по дате отправления:

Предыдущее
От: "Nagy Laszlo Zsolt , KLTE TTK pm1"
Дата:
Сообщение: Re: Changing user passwords
Следующее
От: Keith Wong
Дата:
Сообщение: returning a recordset with pl/pgsql