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

2023-07-28 Thread Adrian Klaver
On 7/28/23 07:00, Amn Ojee Uw wrote: First of all, my gratitude to Adrian and David for taking the time to reply to my call for help; a 1k  thanks to you kids. Having stated the above, PostgreSQL provides a default database namely 'postgres'. Taking advantage of this service, I have change

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

2023-07-28 Thread Ron
On 7/28/23 09:00, Amn Ojee Uw wrote: First of all, my gratitude to Adrian and David for taking the time to reply to my call for help; a 1k  thanks to you kids. Having stated the above, PostgreSQL provides a default database namely 'postgres'. Taking advantage of this service, I have change

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

2023-07-28 Thread Amn Ojee Uw
First of all, my gratitude to Adrian and David for taking the time to reply to my call for help; a 1k  thanks to you kids. Having stated the above, PostgreSQL provides a default database namely 'postgres'. Taking advantage of this service, I have change the 'psql' statement to 'psql -d

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

2023-07-27 Thread Adrian Klaver
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 suggest that I enter :

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

2023-07-27 Thread David G. Johnston
On Thu, Jul 27, 2023 at 5:19 PM Amn Ojee Uw wrote: > 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. > > So create some. Otherwise the only useful database name to specify would be

PostgreSQL - How to login with my Linux user account

2023-07-27 Thread Amn Ojee Uw
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 suggest that I enter : psql -d mydb -U myuser -W However,