Re: (Default) Group permissions

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: (Default) Group permissions
Date: 2013-06-30 23:06:04
Message-ID: 51D0B9DC.4080704@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 6/30/2013 12:46 PM, Michael Orlitzky wrote:
> We use Postgres for shared hosting; i.e. what most people use MySQL for.
> The biggest headache for us so far has been that we're unable to get
> group permissions set up effectively so that different groups of
> customers, admins, apaches, etc. can access/modify the data they need,
> without manual intervention from someone with root and a relatively deep
> knowledge of the permissions system.

90% of shared hosting is one user one database, right?

CREATE USER username PASSWORD 'somepassword';
CREATE DATABASE username OWNER username;

done.

--
john r pierce 37N 122W
somewhere on the middle of the left coast

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message David Johnston 2013-07-01 00:45:47 Re: (Default) Group permissions
Previous Message Michael Orlitzky 2013-06-30 19:46:38 (Default) Group permissions