0

if I want to connect to POSTGRESQL db with a Linux user that I've created, let's say "Joe", should I locate pgadmin folder within python environment under Joe's folder?

karel
  • 122,292
  • 133
  • 301
  • 332
glc78
  • 491

1 Answers1

0

Login using:

$ psql -U joe

List databases using:

joe=>\l

Connect to desired database using:

joe=>\c <database_name>
4mAstro
  • 66