CentOS 安装postgis for Geodjango


前提

环境: 在之前的基础上,已经安装好了pg 9.6 ;

直接开启 postgis 失效:
CREATE EXTENSION postgis;

因此要手动安装postgis。

开始安装postgis 依赖

这篇文章已经说得很好:
https://www.cnblogs.com/ilifeilong/p/6979288.html

这篇文章把报错解决得很好:
http://blog.sina.com.cn/s/blog_8acf1be10101lbfc.html

这篇文章把安装完成后的报错解决很好:
https://ask.helplib.com/django/post_1817964

我要做的是什么呢?
修正了编译时候的参数。
(0)conf 文件可以自定义放置
echo ‘/path/share/postgresql/plugin/geos/lib’ > //pgsql/share/postgresql/plugin/geos/geos-3.6.1.conf

(1)postgis的编译参数应该是:
./configure
–prefix=/path/postgresql/plugin/postgis
–with-pgconfig=/path/pgsql/bin/pg_config
–with-geosconfig=/path/pgsql/share/postgresql/plugin/geos/bin/geos-config
–with-gdalconfig=/path/pgsql/share/postgresql/plugin/gdal/bin/gdal-config
–with-projdir=/path/pgsql/share/postgresql/plugin/

projdir 应该放入路径,而不是bin/下的文件。

(2) 依赖包安装
yum install -y libxml2 libxml2-devel

(3)启动postgis时候要用pg当前用户, 不一定是pg数据库的超级管理员。

结束

做完以上过程后,可以开始postgis了。

转载自:https://blog.csdn.net/Kohang/article/details/82972128

You may also like...