Re: createuser permssion for group

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: createuser permssion for group
Дата
Msg-id 19774.1140975680@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: createuser permssion for group  ("chris smith" <dmagick@gmail.com>)
Список pgsql-general
"chris smith" <dmagick@gmail.com> writes:
> On 2/26/06, Jebus <lordjebus@gmail.com> wrote:
>> Is it possible to give a group the the createuser permission ? This
>> way if a user in the group they can create users.

> Version 8.1.x does..

Note that even in 8.1, the special privileges like CREATEROLE aren't
implicitly inherited via group membership.  You can use them but you
have to explicitly SET ROLE to the group that has 'em.
Example:

regression=# create group admin createrole;
CREATE ROLE
regression=# create user tgl in group admin;
CREATE ROLE
regression=# \c - tgl
You are now connected as new user "tgl".
regression=> create user foo;
ERROR:  permission denied to create role
regression=> set role admin;
SET
regression=> create user foo;
CREATE ROLE

For more info see
http://www.postgresql.org/docs/8.1/static/role-membership.html

            regards, tom lane

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

Предыдущее
От: Karsten Hilbert
Дата:
Сообщение: Re: Wish: remove ancient constructs from Postgres
Следующее
От: "Hanan Bentaleb"
Дата:
Сообщение: Management of Concurrent Clients