PostGIS 13.5 主从搭建

2024-05-25 22:32
文章标签 搭建 主从 postgis 13.5

本文主要是介绍PostGIS 13.5 主从搭建,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

PostGIS 主从搭建

适用版本

  • postgresql 13.5
  • PostGIS 3.1.4

服务器规划

服务器IP用途
postgis01172.88.0.181主库
postgis02172.88.0.182从库

主库 PostGIS 数据库安装

  • 安装 postgresql
[root@postgis01 ~]# yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm && yum install -y postgresql13 postgresql13-server
  • 安装 PostGIS 插件
[root@postgis01 ~]# yum -y install postgis31_13
  • 创建数据目录
[root@postgis01 ~]# mkdir -p /deploy/postgis/data && chown -R postgres:postgres /deploy/postgis/data
  • 修改配置(添加以下两行内容)
[root@postgis01 ~]# systemctl edit postgresql-13.service
[Service]
Environment=PGDATA=/deploy/postgis/data
  • 重新加载系统
[root@postgis01 ~]# systemctl daemon-reload
  • 初始化数据库
[root@postgis01 ~]# /usr/pgsql-13/bin/postgresql-13-setup initdb
  • 修改配置文件
[root@postgis01 ~]# vim /deploy/postgis/data/postgresql.conf
listen_addresses = '*'
[root@postgis01 ~]# vim /deploy/postgis/data/pg_hba.conf
host    all             all             0.0.0.0/0               trust
  • 启动
[root@postgis01 ~]# systemctl enable postgresql-13 && systemctl start postgresql-13
  • 修改密码
[root@postgis01 ~]# su - postgres
-bash-4.2$ psql
postgres=# alter user postgres with password '123456';
ALTER ROLE
postgres=# \q
-bash-4.2$ exit
登出

配置主从日志同步

  • 修改主节点配置
[root@postgis01 ~]# vim /deploy/postgis/data/postgresql.conf
synchronous_standby_names = '*'
[root@postgis01 ~]# vim /deploy/postgis/data/pg_hba.conf
host    replication     all             172.88.0.182/32         trust
  • 主库创建同步用户
[root@postgis01 ~]# su - postgres
-bash-4.2$ psql
postgres=# create role rpl login replication encrypted password '123456';
CREATE ROLE
postgres=# 
  • 创建用于从库复制的slot
postgres=# select * from pg_create_physical_replication_slot('stand_slot');slot_name  | lsn 
------------+-----stand_slot | 
(1 行记录)
postgres=# \q
-bash-4.2$ exit
  • 重启数据库
[root@postgis01 ~]# systemctl restart postgresql-13

从库 PostGIS 数据库安装

  • 安装 postgresql
[root@postgis02 ~]# yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm && yum install -y postgresql13 postgresql13-server
  • 安装 PostGIS 插件
[root@postgis02 ~]# yum -y install postgis31_13
  • 创建数据目录
[root@postgis02 ~]# mkdir -p /deploy/postgis/data
[root@postgis02 ~]# chown -R postgres:postgres /deploy/postgis/data
[root@postgis02 ~]# chmod 0700 /deploy/postgis/data
  • 修改配置
[root@postgis02 ~]# vim /usr/lib/systemd/system/postgresql-13.service
Environment=PGDATA=/deploy/postgis/data
  • 重新加载系统
[root@postgis02 ~]# systemctl daemon-reload
  • 备份主库数据
[root@postgis02 ~]# pg_basebackup --pgdata=/deploy/postgis/data --format=p --write-recovery-conf --checkpoint=fast --label=mffb --progress --host=172.88.0.181 --port=5432 --username=rpl
  • 修改从库配置
[root@postgis02 ~]# vim /deploy/postgis/data/postgresql.conf
listen_addresses = '*'
primary_conninfo = 'host=172.88.0.181 port=5432 user=rpl password=123456'
primary_slot_name = 'stand_slot'
[root@postgis02 ~]# vim /deploy/postgis/data/pg_hba.conf
host    all             all             0.0.0.0/0               trust
  • 重启从库
[root@postgis02 ~]# systemctl restart postgresql-13

添加 PostGIS 插件支持

-- 在对应的库下运行以下sql
create extension postgis;

完成主从同步!

这篇关于PostGIS 13.5 主从搭建的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1002802

相关文章

搭建Kafka+zookeeper集群调度

前言 硬件环境 172.18.0.5        kafkazk1        Kafka+zookeeper                Kafka Broker集群 172.18.0.6        kafkazk2        Kafka+zookeeper                Kafka Broker集群 172.18.0.7        kafkazk3

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联

pico2 开发环境搭建-基于ubuntu

pico2 开发环境搭建-基于ubuntu 安装编译工具链下载sdk 和example编译example 安装编译工具链 sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib 注意cmake的版本,需要在3.17 以上 下载sdk 和ex

MySQL主从同步延迟原理及解决方案

概述 MySQL的主从同步是一个很成熟的架构,优点为: ①在从服务器可以执行查询工作(即我们常说的读功能),降低主服务器压力; ②在从主服务器进行备份,避免备份期间影响主服务器服务; ③当主服务器出现问题时,可以切换到从服务器。 相信大家对于这些好处已经非常了解了,在项目的部署中也采用这种方案。但是MySQL的主从同步一直有从库延迟的问题,那么为什么会有这种问题。这种问题如何解决呢? MyS

JavaFX环境的搭建和一个简单的例子

之前在网上搜了很多与javaFX相关的资料,都说要在Eclepse上要安装sdk插件什么的,反正就是乱七八糟的一大片,最后还是没搞成功,所以我在这里写下我搭建javaFX成功的环境给大家做一个参考吧。希望能帮助到你们! 1.首先要保证你的jdk版本能够支持JavaFX的开发,jdk-7u25版本以上的都能支持,最好安装jdk8吧,因为jdk8对支持JavaFX有新的特性了,比如:3D等;

springboot+maven搭建的项目,集成单元测试

springboot+maven搭建的项目,集成单元测试 1.在pom.xml文件中引入单元测试的依赖包 <!--单元测试依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></depen

CentOS 7 SVN的搭建和使用

https://subversion.apache.org/packages.html#centos 阿里云的ECS貌似已经自带了SVN [root@xxx ~]# svn --versionsvn, version 1.7.14 (r1542130)compiled Aug 23 2017, 20:43:38Copyright (C) 2013 The Apache Software Fo

2021-08-14 react笔记-1 安装、环境搭建、创建项目

1、环境 1、安装nodejs 2.安装react脚手架工具 //  cnpm install -g create-react-app 全局安装 2、创建项目 create-react-app [项目名称] 3、运行项目 npm strat  //cd到项目文件夹    进入这个页面  代表运行成功  4、打包 npm run build

Redis-主从集群

主从架构 单节点Redis的并发能力是有上限的,要进一步提高Redis的并发能力,就需要搭建主从集群,实现读写分离。 主从数据同步原理 全量同步 主从第一次建立连接时,会执行全量同步,将master节点的所有数据都拷贝给slave节点,流程: 判断是否是第一次同步,如果是,返回版本信息(replication id 和offset),将salve节点的版本信息变为master的

搭建H1veCTF平台

An Easy / Quick / Cheap Integrated Platform H1ve是一款自研CTF平台,同时具备解题、攻防对抗模式。其中,解题赛部分对Web和Pwn题型,支持独立题目容器及动态Flag防作弊。攻防对抗赛部分支持AWD一键部署,并配备炫酷地可视化战况界面。 项目地址:https://github.com/D0g3-Lab/H1ve 更多请打开。。。