How to Setup PostgreSQL 11 Replication

28/12/2020
PostgreSQL is an open source relational database management system (RDBMS). It is one of the most advanced database out there.

In this article, I will show you how to setup PostgreSQL 11 replication. Let’s get started.

How Does Replication Works in PostgreSQL:

In a PostgreSQL replication setup, you have 2 types of servers. The Master server and the Slave server.

The database records of the Master server are duplicated to the Slave servers. You can read from the Slave servers using the IP addresses of the Slave servers. But you add new data only to the Master server. The servers are all synced up. So if any of the Master server fails, one of the Slave servers can take over and become a new Master. That’s how PostgreSQL can handle database request without any interruption even if some of the servers fail in a Master/Slave configuration.

Network Diagram:

This is the network diagram for the PostgreSQL Master/Slave replication setup. Here I have two servers, pg-master is the Master PostgreSQL server and pg-slave is the Slave PostgreSQL server. Of course, you can have more Slave server, but for the sake of simplicity I am going to have one Slave server.

My pg-master PostgreSQL Master server has the IP address 192.168.199.137 and the pg-slave PostgreSQL Slave server has the IP address 192.168.199.138. Remember these and make changes where necessary for your setup.

Installing PostgreSQL:

For the demonstration, I am using Ubuntu 18.04 LTS server. You can use any Linux distribution you want. Just the commands are a little bit different. That’s all.

You have to install PostgreSQL on all the servers that will be a part of the replication setup. In my case, the two servers pg-master, and pg-slave.

I will show you how to install PostgreSQL on pg-master machine. The steps are the same for the pg-slave machines as well.

On the pg-master server:

First you have to add the PostgreSQL package repository on your Ubuntu machine. To do that, run the following command:

$ echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main 11" |
sudo tee /etc/apt/sources.list.d/pgsql.list

The PostgreSQL package repository should be added.

Now run the following command to add the GPG key of the PostgreSQL package repository:

$ wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add

The GPG key should be added.

Now update the APT package repository cache with the following command:

$ sudo apt update

The APT package repository cache should be updated.

Now install PostgreSQL database server with the following command:

For PostgreSQL 10 (Latest Stable):

$ sudo apt install postgresql-10

For PostgreSQL 11 (Currently at Beta):

$ sudo apt install postgresql-11

Now press y and then press <Enter> to continue.

PostgreSQL should be installed.

Set password for the postgres user with the following command:

$ sudo passwd postgres

Now enter the password. It should be set.

Now remember to do the same to the pg-slave server before you continue.

Setting Up the Master PostgreSQL Server:

Now login as the postgres user:

$ su – postgres

Now create a new user replication:

$ psql -c "CREATE USER replication REPLICATION LOGIN CONNECTION LIMIT 1 ENCRYPTED
PASSWORD ‘YOUR_PASSWORD’;"

Now open /etc/postgresql/11/main/pg_hba.conf with nano:

$ nano /etc/postgresql/11/main/pg_hba.conf

Add the following line to the marked location:

host    replication     replication   192.168.199.138/24   md5

Now open the main PostgreSQL configuration file with nano:

$ nano /etc/postgresql/11/main/postgresql.conf

Now find and change the following settings. If any line is commented out, uncomment it (removing #) as necessary.

listen_addresses = ‘localhost,192.168.199.137’
wal_level = replica
max_wal_senders = 10
wal_keep_segments = 64

Now restart PostgreSQL server on your pg-master server:

$ systemctl restart postgresql

Configuring the Slave Server:

On the pg-slave server login as postgres user:

$ su – postgres

Stop the PostgreSQL service on the pg-slave server:

$ systemctl stop postgresql

Now open /etc/postgresql/11/main/pg_hba.conf with nano:

$ nano /etc/postgresql/11/main/pg_hba.conf

Add the following line as you did on the pg-master server:

host    replication     replication     192.168.199.137/24   md5

Now open the main PostgreSQL configuration file with nano:

$ nano /etc/postgresql/11/main/postgresql.conf

Now find and change the following settings. If any line is commented out, uncomment it (removing #) as necessary.

listen_addresses = ‘localhost,192.168.199.138’
wal_level = replica
max_wal_senders = 10
wal_keep_segments = 64
hot_standby = on

Now go to your data_directory:

$ cd /var/lib/postgresql/11/main

Remove everything from that directory:

$ rm -rfv *

Now copy the data from the pg-master server to the pg-slave server’s data_directory:

$ pg_basebackup -h 192.168.199.137 -D /var/lib/postgresql/11/main/ -P -U
replication –wal-method=fetch

Type in the password for the postgres user of the pg-master server and press <Enter>.

Now create a recovery.conf file in the data_directory with nano:

$ nano recovery.conf

Now add the following line to it:

standby_mode          = ‘on’
primary_conninfo      = ‘host=192.168.199.137 port=5432 user=replication password=123’
trigger_file = ‘/tmp/MasterNow’

Start the PostgreSQL Slave server:

$ systemctl start postgresql

Testing Replication:

Now on the pg-master server, you can see that the Slave server is detected.

SQL command for creating users table:

CREATE TABLE users (
name VARCHAR(30),
country VARCHAR(2)
);

SQL commands to insert dummy data into the users table:

INSERT INTO users VALUES(‘Shahriar’, ‘BD’);
INSERT INTO users VALUES(‘Shovon’, ‘BD’);
INSERT INTO users VALUES(‘Kelly’, ‘US’);
INSERT INTO users VALUES(‘Nina’, ‘IN’);
INSERT INTO users VALUES(‘Kesha’, ‘CA’);

As you can see, the data is correctly added to the Master server pg-master:

# x off
# select * from users;

Now from the Slave server pg-slave, login to the PostgreSQL console:

$ psql

Now try to select the data we just added:

$ select * from users;

As you can see the data is displayed in the Slave server. It means replication is working perfectly.

Generating SSH Keys:

You can login to the Master server from the Slave server and vice versa without password if you generate and copy SSH keys to opposite servers. This is useful for administration purposes.

I am only showing you how to do it on the Master server. The procedures are the same.

Generate SSH key on the Master and Slave servers while logged in as postgres user.

$ ssh-keygen

Keep pressing <Enter>. SSH key should be generated.

From the pg-master server, copy your SSH key to the pg-slave server:

$ ssh-copy-id 192.168.199.138

From the pg-slave server, copy your SSH key to the pg-master server:

$ ssh-copy-id 192.168.199.137

Type in yes and then press <Enter>.

Now type in the password for the server that you’re connecting to for the postgres user and press <Enter>.

That’s how you configure Master/Slave replication on PostgreSQL 11. Thanks for reading this article.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Installing PostgreSQL on CentOS 8

In this article, I am going to show you how to install PostgreSQL database and how to do basic PostgreSQL CRUD operations...
29/12/2020

5 Best GUI Clients for PostgreSQL on Ubuntu

Written in C, PostgreSQL which is also known as Postgres is one of the most popular relational database management systems....
29/12/2020

How to Setup PostgreSQL 11 Replication

PostgreSQL is an open source relational database management system (RDBMS). It is one of the most advanced database out...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

SỰ KHÁC BIỆT GIỮA RESIDENTIAL PROXY VÀ PROXY DATACENTER
17/02/2024

Mua Proxy v6 US Private chạy PRE, Face, Insta, Gmail
07/01/2024

Mua shadowsocks và hướng dẫn sữ dụng trên window
05/01/2024

Tại sao Proxy Socks lại được ưa chuộng hơn Proxy HTTP?
04/01/2024

Mua thuê proxy v4 nuôi zalo chất lượng cao, kinh nghiệm tránh quét tài khoản zalo
02/01/2024