On Tue, Dec 8, 2009 at 1:44 PM, Gauthier, Dave <dave.gauthier@intel.com> wrote:
> It comes back...
>
> role "joetheplumber" does not exist
>
> The user is a sys uid on linux.
You're confusing linux users with postgresql users. They aren't
mapped one to the other. First you need to create a pgsql role /
user:
psql postgres
create user joetheplumber superuser;
then you'll have the account for joetheplumber as a superuser.