RE: How to revoke privileged from PostgreSQL's superuser

From: "Charles Clavadetscher" <clavadetscher(at)swisspug(dot)org>
To: <bejita0409(at)yahoo(dot)co(dot)jp>, <pgsql-admin(at)lists(dot)postgresql(dot)org>, <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: RE: How to revoke privileged from PostgreSQL's superuser
Date: 2018-08-06 10:33:02
Message-ID: 04b601d42d70$e1f9ab50$a5ed01f0$@swisspug.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

Hello

From: bejita0409(at)yahoo(dot)co(dot)jp [mailto:bejita0409(at)yahoo(dot)co(dot)jp]
Sent: Montag, 6. August 2018 11:49
To: pgsql-admin(at)lists(dot)postgresql(dot)org; pgsql-general(at)lists(dot)postgresql(dot)org
Subject: How to revoke privileged from PostgreSQL's superuser

Hello,

I am a newbie DBA.

I have a request for revoking the access to user's data from DBA-user.

I think the request is right because users should be the only ones can access their data.

But DBA-user also need full access to the other data? It means that DBA-user also needs to be a superuser.

So I conclude the request that how to revoke privileged from superuser in postgres.

As my knowledge, the superuser in PostgreSQL bypasses all the permission check.

So that, there is no way to do it in PostgreSQL, is that right?

Yes, superuser have access to everything. The main question is why should a superuser be restricted in her access to an object?

I think that this is more a question of designing your user and groups in a clean way.

In theory you could restrict access using a before trigger, but this is not a good idea and is quite expensive.

You could also use a policy for the superuser with the clause using(false), but this also is not really a good idea and may become
very confusing.

In either way, this would not be a good solution.

Maybe, if you clarify better what is your purpose, there might be more useful answers and approaches.

Regards

Charles

Is there some DBAs are faced with this before?

Thanks,

--

bejita

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message David G. Johnston 2018-08-06 13:19:55 Re: How to revoke privileged from PostgreSQL's superuser
Previous Message Jehan-Guillaume (ioguix) de Rorthais 2018-08-06 10:30:50 Re: PostgreSQL 11 global index

Browse pgsql-general by date

  From Date Subject
Next Message David G. Johnston 2018-08-06 13:19:55 Re: How to revoke privileged from PostgreSQL's superuser
Previous Message Vijaykumar Jain 2018-08-06 10:19:11 Re: [External] How to revoke privileged from PostgreSQL's superuser