Questions tagged [postgresapp]

Postgres.app is the easiest way to get started with PostgreSQL on the Mac. Open the app, and you have a PostgreSQL server ready and awaiting new connections. Close the app, and the server shuts down.

Postgres.app is the easiest way to get started with PostgreSQL on the Mac. Open the app, and you have a PostgreSQL server ready and awaiting new connections. Close the app, and the server shuts down.

Postgres.app contains a full-featured PostgreSQL installation in a single package:

  1. PostgreSQL
  2. PostGIS
  3. Procedural languages: PL/pgSQL, PL/Perl, PL/Python, and PLV8 (Javascript)
  4. Popular extensions, including hstore and uuid-ossp, and more
  5. A number of command-line utilities for managing PostgreSQL and working with GIS data
16 questions
0
votes
2 answers

psql -h localhost won't connect on Mac OS X

Per Postgresapp.com psql is the PostgreSQL command-line interface to your database. Mac OS 10.7 ships with an older version of PostgreSQL, which can be started with the following command: $ psql -h localhost So I run psql -h localhost and…
djechlin
  • 59,258
  • 35
  • 162
  • 290
1
2