From f23b66a674cd630064542b9613ca4fa8661671ca Mon Sep 17 00:00:00 2001 From: hello Date: Wed, 21 Aug 2024 09:18:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E5=A4=8D=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/helloshop/postgresql-master-slave.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/helloshop/postgresql-master-slave.md b/notes/helloshop/postgresql-master-slave.md index 9fec4c3..fb4f7fd 100644 --- a/notes/helloshop/postgresql-master-slave.md +++ b/notes/helloshop/postgresql-master-slave.md @@ -68,7 +68,7 @@ docker run --name postgres2 -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 -v ${p CREATE ROLE replica LOGIN REPLICATION ENCRYPTED PASSWORD 'replica_password'; ``` -修改 `pg_hba.conf` 文件,允复制用户连接主服务器。 +修改 `pg_hba.conf` 文件,允许复制用户连接主服务器。 ```shell host replication replica all trust