點(diǎn)擊上方“IT那活兒”公眾號(hào),關(guān)注后了解更多內(nèi)容,不管IT什么活兒,干就完了!!!
邏輯復(fù)制特點(diǎn)
訂閱端可寫(xiě)。
邏輯復(fù)制配置步驟
vi postgresql.conf
wal_level = logical
isten_addresses = *
create user repuser replication login connection limit 10 encrypted password ‘123456’;
grant connect on database test to repuser;
grant select on test2 to repuser;
dp+ test2
create publication pub2 for table test2;
--查看已經(jīng)創(chuàng)建的所有發(fā)布:
select * from pg_publication;
create table test2 (id int);
create subscription sub2 connection ‘host=192.168.168.123 port=1921 dbname=test user=repuser’ publication pub2;
select * from pg_subscription;
select (1) from test2;
發(fā)布訂閱新表操作
grant select on test3 to repuser;
alter publication pub2 add table test3;
create table test3 (id int);
alter subscription sub2 refresh publication;
其他參考語(yǔ)句
SELECT * FROM pg_publication_tables;
alter subscription sub2 disable;
alter subscription sub2 enable;
select * from pg_subscription;
select * from pg_stat_replication;
select * from pg_stat_subscription;
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/129381.html
postgresql 10主備流復(fù)制測(cè)試 img{ display:block; margin:0 auto !important; width:100%; } body{ width:75%; ...
摘要:在技術(shù)探索中,選擇了更適合云數(shù)據(jù)庫(kù)場(chǎng)景的架構(gòu)和引擎設(shè)計(jì)。目前,巨杉數(shù)據(jù)庫(kù)付費(fèi)企業(yè)級(jí)客戶(hù)與社區(qū)用戶(hù)總數(shù)超過(guò)家,并已在超過(guò)家強(qiáng)級(jí)別的銀行保險(xiǎn)證券等大型金融機(jī)構(gòu)核心生產(chǎn)業(yè)務(wù)上線。這一整體架構(gòu)設(shè)計(jì)相信是云數(shù)據(jù)發(fā)展的主流架構(gòu)設(shè)計(jì)。 分布式數(shù)據(jù)庫(kù)技術(shù)發(fā)展多年,但是在應(yīng)用、業(yè)務(wù)的驅(qū)動(dòng)下,分布式數(shù)據(jù)庫(kù)的架構(gòu)一直在不斷發(fā)展和演進(jìn)。 開(kāi)源金融級(jí)分布式數(shù)據(jù)庫(kù)SequoiaDB,經(jīng)過(guò)6年的研發(fā),堅(jiān)持從零開(kāi)始打...
postgresql10主備流復(fù)制測(cè)試 img{ display:block; margin:0 auto !important; width:100%; } body{ width:75%; ...
摘要:第三章安裝和安裝安裝下載創(chuàng)建用戶(hù)初始化數(shù)據(jù)庫(kù)記錄初始化數(shù)據(jù)庫(kù)的用戶(hù)密碼也可以使用下面的命令,兩者的區(qū)別就是一個(gè)有初始化密碼,一個(gè)沒(méi)有配置啟動(dòng)信息修改配置如下圖所示保存退出嘗試啟 第三章:mysql安裝和postgresql安裝 mysql安裝 下載mysql cd /usr/local/src wget https://dev.mysql.com/get/Downloads/MySQL...
閱讀 1346·2023-01-11 13:20
閱讀 1684·2023-01-11 13:20
閱讀 1132·2023-01-11 13:20
閱讀 1858·2023-01-11 13:20
閱讀 4100·2023-01-11 13:20
閱讀 2704·2023-01-11 13:20
閱讀 1385·2023-01-11 13:20
閱讀 3597·2023-01-11 13:20