Roles and Superusers

From: Keith <keithcelt(at)yahoo(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Roles and Superusers
Date: 2006-07-07 02:44:53
Message-ID: 20060707024453.7668.qmail@web51012.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Greetings:

First, I apologize if this is not the correct list to
send to. I am having a problem with group roles, logon
roles, and inheritance. I am not sure if it is a
database problem or a pgIII problem. I am using
postgreSQL 8.1.4 and the bundled pgIII on WinXP Home
SP2.

It seems that the 'superuser' part of my 'leads' group
role is not functioning (code below). It appears that
the security settings are at least partially
transitive as I have one group role nested within the
other and I am able to access the appropriate
resources. The problem is that only a superuser or the
owner of a table can drop it and even though I am
supposed to be a superuser, I cannot drop the table! I
also lack the ability to create databases... The setup
is below.

I have setup two group roles

CREATE ROLE developers
NOSUPERUSER INHERIT CREATEDB NOCREATEROLE;

and

CREATE ROLE leads
SUPERUSER INHERIT CREATEDB CREATEROLE;
UPDATE pg_authid SET rolcatupdate=true WHERE
OID=23059::oid;
GRANT developers TO leads WITH ADMIN OPTION;

I also have a login role for myself

CREATE ROLE keith LOGIN
NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE;
GRANT leads TO keith WITH ADMIN OPTION;

Lastly I have a table to which only the owner and the
'developers' group role have access to. Public is not
listed. I can use this table freely, but not drop it.

CREATE TABLE test.files
(
...
)
WITHOUT OIDS;
ALTER TABLE test.files OWNER TO test;
GRANT ALL ON TABLE test.files TO test;
GRANT ALL ON TABLE test.files TO developers;

Thanks in advance for your help.

Sincerely,

Keith

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message manjula hettiarachchi 2006-07-07 04:17:25 Fwd: Re: pg_dump error
Previous Message adey 2006-07-07 00:25:36 PGAdmin "Jobs"