Re: PostgreSQL - How to login with my Linux user account

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Amn Ojee Uw <amnojeeuw(at)gmail(dot)com>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: PostgreSQL - How to login with my Linux user account
Date: 2023-07-28 00:31:54
Message-ID: 943ea752-bf4a-bcba-d2c5-95cfd31e2733@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 7/27/23 17:19, Amn Ojee Uw wrote:
> I'd like to log into my newly installed PostgreSQL [ PostgreSQL 12.15
> (Debian 12.15-1.pgdg120+1) ] using my linux account.
> In trying to do that this web page
> <https://alvinalexander.com/blog/post/postgresql/log-in-postgresql-database/>suggest that I enter :
>
> psql -d mydb -U myuser -W
>
> However, that command requires a database_name (mydb), and PosgreSQL 12.15 being so freshly installed does not yet
> have any database created by me.
>
> How would you suggest I circumvent this challenge?

The tutorial

https://www.postgresql.org/docs/current/tutorial.html

would be a good place to start.

From said tutorial:

https://www.postgresql.org/docs/current/tutorial-createdb.html

createdb mydb

Which in turn leads to:

https://www.postgresql.org/docs/current/app-createdb.html

>
> Mind you that, using the postgres account I have created other accounts.
>
>
> Role name | Attributes | Member of
> -----------+------------------------------------------------------------+-----------
> chispa | Superuser | {}
> pedro | Superuser | {}
> postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
>
>
> Thanks in advance.
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Priess Stefan 2023-07-28 10:23:07 Compile static postgres.lib for postgres 15.3 on Windows
Previous Message David G. Johnston 2023-07-28 00:23:13 Re: PostgreSQL - How to login with my Linux user account