Re: postgres database user account

Поиск
Список
Период
Сортировка
От Maria L. Wilson
Тема Re: postgres database user account
Дата
Msg-id 4C2BA5F0.1020908@nasa.gov
обсуждение исходный текст
Ответ на Re: postgres database user account  ("Plugge, Joe R." <JRPlugge@west.com>)
Ответы Re: postgres database user account
Re: postgres database user account
Список pgsql-admin
that sounds similar to what we are trying to accomplish.  Looks like
what we need to do is use the sudo at the OS level - and remove the
postgres db user account altogether....  giving specific users the privs
(or create roles) that accomplish what they need.

Plugge, Joe R. wrote:
> If the user is allowed to become (sudo - postgres) they can stop, start, the database and then change the
pg_hba.conf,created unrestricted access into the database, even from remote machines.  Typically on our systems, we do
notallow users to log into the actual machine, rather create roles in the database according to their needs and then
havethem come in from another machine.  This keeps all sorts of undesirable behavior (zcat, grep, cut, awk, programs
runningetc) off of your database machine. 
>
> -----Original Message-----
> From: Maria L. Wilson [mailto:Maria.L.Wilson-1@nasa.gov]
> Sent: Wednesday, June 30, 2010 3:03 PM
> To: Plugge, Joe R.
> Cc: Wilson, Maria Louise (LARC-E301)[SCIENCE SYSTEMS APPLICATIONS]; pgsql-admin@postgresql.org
> Subject: Re: [ADMIN] postgres database user account
>
> ok - thanks that makes sense....
>
> so what about the operating system account that is different?  What we
> are planning on doing with the OS acct (postgres) is only allowing users
> sudo ability to this account.  Nobody should be able to directly log
> into it.  Do you think that will cause problems?
>
> thanks again - Maria
>
> Plugge, Joe R. wrote:
>
>> Yes, you can create a role that is a superuser that should be able to do internal work:
>>
>> CREATE ROLE myuser;
>> ALTER ROLE myuser WITH SUPERUSER INHERIT CREATEROLE CREATEDB LOGIN PASSWORD 'mypassword' VALID UNTIL 'infinity';
>>
>> If you are talking about the operating system account named postgres, then this is a different question.
>>
>> -----Original Message-----
>> From: pgsql-admin-owner@postgresql.org [mailto:pgsql-admin-owner@postgresql.org] On Behalf Of Maria L. Wilson
>> Sent: Wednesday, June 30, 2010 2:15 PM
>> To: pgsql-admin@postgresql.org
>> Subject: [ADMIN] postgres database user account
>>
>> Hoping someone out there can answer this general question(s)....  I am
>> having to justify having access to the "postgres" database user account
>> to do DBA type work.....
>> Is there any specific items that require the postgres database user
>> account to run?
>>
>> Can any general user (with superuser permission) basically do what this
>> postgres account does?
>>
>> thanks,  Maria Wilson
>> Nasa/Langley Research Center
>> Hampton, Virginia 23681
>>
>>
>>

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

Предыдущее
От: "Plugge, Joe R."
Дата:
Сообщение: Re: postgres database user account
Следующее
От: Tom Lane
Дата:
Сообщение: Re: postgres database user account