CentOS 7 yum 安装 postgis 和使用简单查询
本文安装环境是 CentOS7.6。安装版本是 postgresql-11 。推荐关闭SELinux和防火墙打开相应端口。 安装 postgresql-server。postgesql-server 官方安装 教程 。 #设置安装源 [root@promote ~]# yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-ppc64le/pgdg-centos11-11-2.noarch.rpm #安装postgresql11-server [root@promote ~]# yum install postgresql11-server postgresql11-client postgresql11-libs postgresql11-contrib postgresql11-devel #初始化数据库 [root@promote ~]# /usr/pgsql-11/bin/postgresql-11-setup initdb #添加开机启动 [root@promote ~]# systemctl enable postgresql-11 安装 postgis 。参考postgis 官方安装 教程 Red Hat / Centos / Scientific Linux 选项。