I had the worst nightmare when installing Postgis 2.X on SLES 12 SP1. which does not have a compatible package in zypper repo
Here is how it is allowed on my Postgres server instance from 9.4.X
Prerequsite packages that I installed before PostGis based on errors
Proj 4 Download source cold, Build --> make install install Gdal andjibson by adding zypper repo zypper addrepo http:
Postgis Installation
Download postgis source code (http://download.osgeo.org/postgis/source/postgis-2.3.0rc1.tar.gz) Go to Postgis folder ./configure --with-pgconfig=/usr/lib/postgresql94/bin/pg_config --with-geosconfig=/usr/local/bin/geos-config make make install
now if you got postgress DB and created postgis extension; he will work
Important for configuration, you must specify the pg-config path and the geo-network path, and you SHOULD NOT include "no raster", since RASTER plays a major role in creating the postgis extension
Pradeep B Sep 21 '16 at 5:36 2016-09-21 05:36
source share