How to securely isolate databases/users in a multi-tenant Postgresql?

Поиск
Список
Период
Сортировка
От Alex Lee
Тема How to securely isolate databases/users in a multi-tenant Postgresql?
Дата
Msg-id CAL2iA8j=pQ3w-foNqFSpQqawuBauRHXTtqqZRk6Ggg9grAAdUg@mail.gmail.com
обсуждение исходный текст
Ответы Re: How to securely isolate databases/users in a multi-tenant Postgresql?
Список pgsql-general
I want to make a service that gives each of my users their own PG user and database. I want to keep them isolated from each other. There are no special extensions installed, it's a pretty vanilla PG cluster.

Are there any considerations beyond making each person their own user and owner of their own database like this, and letting them connect to the database?

```
create user u2745;
create database d2745 owner u2745;
-- etc.
```

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

Предыдущее
От: Rama Krishnan
Дата:
Сообщение: How to store query result into another table using stored procedure
Следующее
От: Alban Hertroys
Дата:
Сообщение: Re: How To: A large [2D] matrix, 100,000+ rows/columns