6

I can't connect to a local PostGIS database. My installation is with Mac OS X (10.8), Postgres.app (in doc it's said to have PostGIS included) and Quantum GIS 1.8.

When I want to add a connection to PostgreSQL, I'm specifying name, host (localhost), port (5432), database name, user name and password (service field left empty).

I can connect to a database with Navicat, so database server seems to run correctly.

With the exact information in QGIS used in Navicat, it can't connect... why?

PolyGeo
65.5k29 gold badges115 silver badges349 bronze badges
asked Oct 31, 2012 at 5:04
0

2 Answers 2

13

You should verify that you can connect using psql. Try psql -U username -h localhost dbname. It should prompt for a password then connect. Run SELECT postgis_version(); to verify that PostGIS is active in the database.

If you can connect but SELECT postgis_version() reports an error, PostGIS isn't installed in the database:

ERROR: function postgis_version() does not exist
LINE 1: SELECT postgis_version();

Other solution:

SELECT * FROM Postgis_lib_version();

If you want also to see the version of PostGIS and the version number of the libraries GEOS and Proj4 just change lib to Full.

If you get the above error, then presuming you're running PostGIS 2.0 on PostgreSQL 9.1 or above, connect as user postgres and run CREATE EXTENSION postgis;. Eg:

psql -U postgres -h localhost dbname -c 'CREATE EXTENSION postgis;'

You might also need to install some of the extras, like the PostGIS topology support:

CREATE EXTENSION postgis_topology;

or the legacy support script, which isn't packaged as an extension and must be sourced:

psql -U postgres -h localhost dbname -f /path/to/postgis-2.0/legacy.sql

See the PostGIS documentation.

If you can't connect to the DB, it's probably a pg_hba.conf issue, failure to create the DB or user, etc. Hard to say without error messages and log contents.

JJD
1,5513 gold badges18 silver badges31 bronze badges
answered Oct 31, 2012 at 11:53
3

Ok, in fact, the problem was PostGIS not activated in Postgres.app out of the box. And when we want to CREATE EXTENSION postgis, we have this error:

ERROR: could not load library "/Applications/Postgres.app/Contents/MacOS/lib/rtpostgis-2.0.so": dlopen(/Applications/Postgres.app/Contents/MacOS/lib/rtpostgis-2.0.so, 10): Library not loaded: /usr/local/lib/libjpeg.8.dylib Referenced from: /Applications/Postgres.app/Contents/MacOS/lib/libgdal.dylib Reason: image not found

It's because the file /usr/local/lib/libjpeg.8.dylib is not installed on Mac OS X 10.8 by default. We can install it with MacBrew using brew install libjpeg.

When it's done, we can successfully use the CREATE EXTENSION command, as the previous answer suggests:

psql -U postgres -h localhost dbname -c 'CREATE EXTENSION postgis;'

Note: with Postgres.app, the user postgres doesn't exist by default, you can use any user created with proper privileges, so replace it in previous command.

Et voilà! Quantum GIS can connect to PostgreSQL server.

Source: https://github.com/mattt/PostgresApp/issues/43

answered Nov 1, 2012 at 14:13

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.