Re: Programmatically changing passwords

Поиск
Список
Период
Сортировка
От David Leangen
Тема Re: Programmatically changing passwords
Дата
Msg-id 5EF713B4-80FE-4BF8-ACFD-749F19CF42DC@leangen.net
обсуждение исходный текст
Ответ на Re: Programmatically changing passwords  (Thomas Pundt <mlists@rp-online.de>)
Список pgsql-admin
Awesome, thank you!

That is exactly what I needed.

Didn't know it was that simple... duh!


On Aug 10, 2006, at 14:36, Thomas Pundt wrote:

> On Thursday 10 August 2006 07:12, David Leangen wrote:
> | > ALTER USER foo with encrypted password 'bar';
> | > CREATE USER foo;
> | > CREATE DATABASE bar owner foo;
> |
> | That makes perfect sense, but how can I do this from the shell? Is
> | there an easy way to wrap these so I can send them to postgres from
> | the shell?
>
> yes; the following should work:
>
> #!/bin/bash
> psql <<_EOT_
> ALTER USER foo with encrypted password 'bar';
> CREATE USER foo;
> CREATE DATABASE bar owner foo;
> _EOT_
>
>
> Ciao,
> Thomas
>
> --
> Thomas Pundt <thomas.pundt@rp-online.de> ---- http://rp-online.de/
> ----
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings


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

Предыдущее
От: Thomas Pundt
Дата:
Сообщение: Re: Programmatically changing passwords
Следующее
От: Sun Sun
Дата:
Сообщение: unsubscribe