我如何在托管 postgresql 中安装 postgis

问题描述 投票:0回答:1

我在oci中有一个托管的postgresql,我想安装扩展(postgis)

我刚刚通过 psql cli 访问主数据库

 `postgres-> \dx
                 List of installed extensions
  Name   | Version |   Schema   |         Description          
---------+---------+------------+------------------------------
 plpgsql | 1.0     | pg_catalog | PL/pgSQL procedural language
(1 row)`

所有扩展名的列表..

我尝试这个命令:

 postgres=> CREATE EXTENSION IF NOT EXISTS postgis;

并给我那个错误:

ERROR:  could not open extension control file "/usr/lib/postgresql/share/extension/postgis.control": No such file or directory

还有别的办法吗?

谢谢你

postgresql postgis oracle-cloud-infrastructure postgresql-extensions postgis-raster
1个回答
0
投票

不幸的是,PostGIS 不在 OCI 支持的扩展列表中

© www.soinside.com 2019 - 2024. All rights reserved.