在过程11中,当我试图创建Postgis扩展时,我会遇到这个错误。
我的环境是CentOS 8,具有Postgress11 11-server、postgis25_11和gdal-3.0.4-5.el8.x86_64
GTIFGetGCSInfoEx错误:无法加载库"/usr/pgsql-11/lib/rtpostgis-2.5.so":/usr/gdal31 31/lib/libgdal.so.27:未定义符号:
发布于 2020-11-06 03:05:25
默认情况下,Centos 8将安装libgeotiff15,它不会公开该符号--您需要使用libgeotiff16。
只是花了一整天的时间来做同样的事情。希望你能成功!
快速而肮脏的:
sudo dnf --enablerepo=PowerTools install -y postgresql11-server postgresql11-contrib postgresql11-devel libgeotiff16 postgis25_11
https://stackoverflow.com/questions/64701098
复制相似问题