Re: Programmatically changing passwords

Поиск
Список
Период
Сортировка
От Thomas Pundt
Тема Re: Programmatically changing passwords
Дата
Msg-id 200608100736.36463.mlists@rp-online.de
обсуждение исходный текст
Ответ на Re: Programmatically changing passwords  (David Leangen <postgres@leangen.net>)
Ответы Re: Programmatically changing passwords  (David Leangen <postgres@leangen.net>)
Список pgsql-admin
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/ ----

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Programmatically changing passwords
Следующее
От: David Leangen
Дата:
Сообщение: Re: Programmatically changing passwords