安装postgresql 主从是否一定需要分两台机器,主从必须要同一个版本,不然启动会报错。 3. 配置Master数据库 su – postgres /usr/local/pgsql/bin/pg_ctl –D /data/pgsql9.1 start #启动数据库 #进入数据库创建repl用户 ...
分类:
数据库 时间:
2016-08-31 18:25:56
阅读次数:
219
postgres 主备切换 主备查看 方法 ps -ef | grep wal (主库 sender)postgres 27873 27864 0 5月06 ? 00:00:10 postgres: wal sender process postgres 10.2.0.13(47582) strea ...
分类:
数据库 时间:
2016-05-13 18:39:37
阅读次数:
234
主库配置 pg_hba.conf postgresql.conf 重启主库 从库配置 安装使用yum安装 (找源 http://yum.postgresql.org/) 生成基础备份(主数据库IP 10.2.0.14) 查看生成文件(注意文件的权限,用户组) 修改 postgresql.conf(否 ...
分类:
数据库 时间:
2016-05-06 14:46:02
阅读次数:
359
PostgreSQL安装 安装使用yum安装 (找源 http://yum.postgresql.org/) yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-7-x86_64/pgdg-centos9 ...
分类:
数据库 时间:
2016-05-05 19:19:53
阅读次数:
238
1. 大小差异 在主库上执行 select
????????application_name,
????????pg_size_pretty(pg_xlog_location_diff(pg_current_xlog_location(),?replay_location))?as?diff
from
????????...
分类:
数据库 时间:
2015-08-01 19:17:19
阅读次数:
894
Ubuntu下搭建postgresql主从服务器(方法1)安装略postgresql主服务器:$vi/etc/postgresql/9.1/main/postgresql.conf按a或i进入编辑模式listen_addresses=‘*’(默认为注释的,此处不改从postgresql同步时会报连接拒绝)wal_level=hot_standby(默认为注释的)max_wal_sender..
分类:
数据库 时间:
2015-06-25 17:46:08
阅读次数:
204
postgresql+slony-i安装配置主从slon软件下载地址:slony1-1.2.6http://slony.info/downloads/1.2/source/postgresql下载地址:http://www.postgresql.org/download/http://www.postgresql.org/ftp/source/v8.1.23/一、postgresql安装方法1.rpm包安装postfresql:所需软件包:p..
分类:
数据库 时间:
2015-05-19 14:58:12
阅读次数:
228
Ubuntu下搭建postgresql主从服务器安装略postgresql主服务器:$vi/home/postgresql/data/postgresql.conf按a或i进入编辑模式listen_addresses=‘*’wal_level=hot_standby(默认为注释的)max_wal_senders=5(默认为注释,这个参数是控制主库最多可以有多少个并发的standby数据..
分类:
数据库 时间:
2015-01-15 01:57:02
阅读次数:
226