AlloyDB Omni 不包含 PostGIS 扩展,但您可以按照本页中的说明将其手动添加到现有的 AlloyDB Omni 安装。
准备工作
确保您满足以下系统要求:
您已在系统上安装 AlloyDB Omni。
您已在系统上安装 AlloyDB Omni CLI。
将 PostGIS 添加到 AlloyDB Omni 安装
如需将 PostGIS 扩展程序添加到 AlloyDB Omni 安装,请按以下步骤操作:
- 查找已安装的 AlloyDB Omni 版本标签:
sudo alloydb version
输出类似于以下内容:
AlloyDB Omni CLI version: 1.0 AlloyDB Omni database server version: 15.2.0
记下数据库服务器版本号,您需要在下一步中用到它。
- 设置
OMNI_VERSION
环境变量:OMNI_VERSION=VERSION
将 VERSION 替换为上一步中的完整数据库服务器版本,例如
15.2.0
。 - 创建一个包含 PostGIS 的新 AlloyDB Omni 容器:
mkdir ~/alloydb-omni-postgis
tee -a ~/alloydb-omni-postgis/Dockerfile << EOF ARG OMNI_VERSION FROM postgres:15-bookworm as postgres RUN apt-get update && \ apt-get install -y --no-install-recommends \ postgresql-15-postgis-3 && \ apt-get purge -y --auto-remove && \ rm -rf /var/lib/apt/lists/* FROM gcr.io/alloydb-omni/pg-service:${OMNI_VERSION} COPY --from=postgres /usr/lib/postgresql/15/lib/postgis-3.so /lib/postgis-3.so COPY --from=postgres /usr/lib/postgresql/15/lib/postgis_sfcgal-3.so /lib/postgis_sfcgal-3.so COPY --from=postgres /usr/lib/postgresql/15/lib/postgis_raster-3.so /lib/postgis_raster-3.so COPY --from=postgres /usr/lib/postgresql/15/lib/postgis_topology-3.so /lib/postgis_topology-3.so COPY --from=postgres /usr/lib/postgresql/15/lib/address_standardizer-3.so /lib/address_standardizer-3.so COPY --from=postgres /usr/share/postgresql/15/extension/address_standardizer* /share/extension/ COPY --from=postgres /usr/share/postgresql/15/extension/postgis* /share/extension/ COPY --from=postgres /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/ COPY --from=postgres /lib/x86_64-linux-gnu/ /lib/x86_64-linux-gnu/ COPY --from=postgres /usr/lib/x86_64-linux-gnu/liblapack.so.3 /usr/lib/ COPY --from=postgres /usr/lib/x86_64-linux-gnu/libblas.so.3 /usr/lib/ COPY --from=postgres /usr/lib/libarmadillo.so.11 /usr/lib/ COPY --from=postgres /usr/lib/libmfhdfalt.so.0 /usr/lib/ COPY --from=postgres /usr/lib/libmfhdfalt.so.0 /usr/lib/ COPY --from=postgres /usr/lib/libdfalt.so.0 /usr/lib/ COPY --from=postgres /usr/lib/libogdi.so.4.1 /usr/lib/ COPY --from=postgres /usr/share/proj/proj.db /usr/share/proj/proj.db EOF
cd ~/alloydb-omni-postgis
sudo docker build --build-arg OMNI_VERSION=$OMNI_VERSION --tag gcr.io/alloydb-omni/pg-service-with-postgis:$OMNI_VERSION .
- 停止数据库服务器:
sudo alloydb database-server stop
- 使用文本编辑器打开
/var/alloydb/config/dataplane.conf
。 - 修改用于定义
PG_IMAGE
变量的行,使其引用您在上一步中构建的容器:PG_IMAGE=gcr.io/alloydb-omni/pg-service-with-postgis
- 启动 AlloyDB Omni:
sudo alloydb database-server start
- 连接到数据库:
sudo docker exec -it pg-service psql -h localhost -U postgres
- 启用 PostGIS:
CREATE EXTENSION IF NOT EXISTS POSTGIS; SELECT postgis_full_version();