Re: pg installation for dummies

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pg installation for dummies
Дата
Msg-id 14631.1174406835@sss.pgh.pa.us
обсуждение исходный текст
Ответ на pg installation for dummies  (Rick Schumeyer <rschumeyer@ieee.org>)
Список pgsql-general
Rick Schumeyer <rschumeyer@ieee.org> writes:
> 1) People often ask about the memory settings in postgresql.conf.

Aside from the ones you mentioned, checkpoint_segments is my favorite
bottleneck.  It doesn't matter for a read-mostly database, but under
any sort of write-intensive load you really got to bump it up.  Note
that this is a disk space tradeoff not a memory tradeoff.

> I now believe
> that the "right" thing to do is this (in pg_hba.conf)
>      # "local" is for Unix domain socket connections only
>      local   sameuser    all                               md5
>      local   all         postgres                          md5
> This seems to prevent a student from logging into anything other that
> his own database.  Is this the best way?

It's kinda hardwired --- if you want to grant specific exceptions to
let B use A's database, you end up editing pg_hba.conf a lot.  As of
8.2 I think the best way is to use GRANT/REVOKE CONNECT ON DATABASE.

            regards, tom lane

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

Предыдущее
От: Ron Johnson
Дата:
Сообщение: Re: pg installation for dummies
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: shell script to SQL statement: `pg_dump | psql -U`