0

我在我的 Amazon Linux 2 机器上安装了带有 geos-3.9.1 和 postgis-3.1.1 的 Postgres-XL 10。我的集群运行正常,但我无法将 postgis 安装到数据库中。我已经从源代码构建并安装了所有内容。

我运行时遇到的错误CREATE EXTENSION postgis;是:

ERROR:  could not load library "/usr/local/pgsql/lib/postgis-3.so": libgeos_c.so.1: cannot open shared object file: No such file or directory

使用其他在线帖子的解决方案,我尝试过:

  • 跑步sudo ldconfig
  • --enable-shared在安装 geos 和 postgis 时使用该选项
  • 确保/usr/local/libLD_LIBRARY_PATH环境变量中,我还添加/usr/local/pgsql/libLD_LIBRARY_PATH

这些解决方案都没有奏效。我无法使用 yum 安装 PostGIS 或 Geos,因为它会安装与我的 postgresql 版本冲突的 postgresql 12,后者是 Postgres-XL 的自定义版本。

还有什么我可以尝试解决这个错误的吗?任何帮助表示赞赏。

谢谢。

4

1 回答 1

0

看来您可能需要降级。Postgres-XL 目前只支持 2.0.x 版本的 postgis。至少根据他们的文档。

https://www.postgres-xl.org/faq/

Q. Is PostGIS supported?
Yes, PostGIS can be added to Postgres-XL. It has been tested with PostGIS 2.0.
于 2021-05-05T21:39:11.760 回答