PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Errore durante il tentativo di eseguire Crea estensione postgis

AGGIORNAMENTO:il TEAM ha appena rilasciato il pacchetto postgis.2.1.0-3 RPM che risolve il problema:ora è disponibile l'estensione:

/usr/pgsql-9.3/share/extension/postgis.control

FINE AGGIORNAMENTO.[...]

Ho risolto la compilazione di POSTGIS dal sorgente. Questo è il passo dopo passo per CentOS 6.4 a 64 bit:

wget http://download.osgeo.org/postgis/source/postgis-2.1.0.tar.gz
tar xvf postgis-2.1.0.tar.gz
cd postgis-2.1.0
./configure --with-pgconfig=/usr/pgsql-9.3/bin/pg_config --without-raster
make
make comments
make install
make install-comments
su - postgres 
cd /usr/pgsql-9.3/share/contrib/postgis-2.1/
psql -d postgres -f postgis.sql
psql -d postgres -f spatial_ref_sys.sql
psql -d postgres -f postgis_comments.sql
psql -d postgres -f topology.sql
psql -d postgres -f topology_comments.sql