标签:epel gre res 数据库 and type lis rhel hat
更新yum源
CentOS7默认yum源的PostgreSQL版本过低,不适合在本版本上使用。在https://yum.postgresql.org/repopackages.php上找到适合CentOS7的RPM源,复制其url地址,使用yum安装。
同时安装epel(Extra Packages for Enterprise Linux 7),为了稳定性,CentOS7的默认yum源缺少很多组件,这些组件可以在epel上找到。
命令:
yum install -y https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm
yum -y install epel-release
yum search postgre
命令可以看到多个版本的PostgreSQL,这里我选择了PostgreSQL10。yum install -y postgresql10-server postgresql10-contrib
/usr/pgsql-10/bin/postgresql10-setup initdb
systemctl enable postgresql-10
systemctl start postgresql-10
/var/lib/pgsql/10/data/postgresql.conf
,找到listen_addresses,如果想对所有IP开放,把listen_addresses的值改为‘*’,如果只对部分IP开放,多个IP之间用,
(逗号加空格)隔开。/var/lib/pgsql/10/data/pg_hba.conf
,文件分为5列,分别是TYPE、DATABASE、USER、ADDRESS、METHOD,可以对不同IP地址的用户设置不同数据库的访问权限。最后一列METHOD的解析如下:host all all 0.0.0.0/0 md5
。yum search postgis
命令可以看到多个版本的PostGIS,这里我选择postgis25,yum install -y postgis25_10
,安装完毕后切换为postgres用户,开启扩展。// 开启插件
# su postgres
# psql
// 开启pgsql的插件
postgres=# create extension postgis;
postgres=# create extension postgis_topology;
postgres=# create extension fuzzystrmatch;
postgres=# create extension address_standardizer;
postgres=# create extension address_standardizer_data_us;
postgres=# create extension postgis_tiger_geocoder;
至此,PostgreSQL和PostGIS安装完毕。
http://postgis.net/install/
https://blog.csdn.net/weixin_34150830/article/details/92529479
https://www.cnblogs.com/xulingjie/p/9605472.html
https://www.cnblogs.com/EasonJim/p/9023607.html
CentOS7使用yum安装PostgreSQL和PostGIS
标签:epel gre res 数据库 and type lis rhel hat
原文地址:https://www.cnblogs.com/sunnyeveryday/p/11442332.html