Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between pgAdmin and Postgres.app?

After reading official websites as well as conducting Google research I still do not clearly understand how pgAdmin and Postgres.app relate to one another?

For example, I can simultaneously run two different local postgres servers on different ports from both pgAdmin and Postgres.app, which is confusing. I thought that those application depend on one another, but it does not seem so.

like image 387
CapedHero Avatar asked Jan 03 '23 11:01

CapedHero


1 Answers

  • Postgres.app is a full-featured PostgreSQL installation packaged as a standard Mac app. It sets up a PostgreSQL database server on your computer when you install it.
  • PgAdmin is graphical user interface administration tool for PostgreSQL. It is a client tool for working with existing local or remote PostgreSQL servers. It does not include a PostgreSQL database server.
like image 160
jq170727 Avatar answered Jan 16 '23 08:01

jq170727