HostSEO Blog

Stories and News from IT Industry, Reviews & Tips | Technology Blog


HOW TO SETUP REPLICATION FOR POSTGRESQL IN CENTOS 7

PostgreSQL is an open source object-relational database.  It is robust and can handle heavy workloads. PostgreSQL can be easily used on any OS family, such as Linux, BSD, Unix or Windows. In today’s post we will walk you through the setup of a replication system for PostgreSQL 9.6 in CentOS 7.

Replication is the process of copying data from one database server (master) to another database server (slave). This allows you to have a distributed database architecture across multiple machines, making a high-availability environment possible. Whenever the master server runs into problems, it is simply replaced with the slave server.

PREREQUISITES

  • 2 CentOS 7 servers – One will act as master and the other one as slave
  • Root privileges in both servers
  • PostgreSQL 9.6

 

POSTGRESQL INSTALLATION

Before we can set up the actual replication, we first need to install PostgreSQL. You can download and install the PostgreSQL 9.6 repository by using the command- yum -y install https://yum.postgresql.org/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm

Once the repo is has been installed successfully, you will see a success message on the console as shown below-

Now we can proceed to install PostgreSQL by using the command- yum -y install postgresql96-server postgresql96-contrib

This will take some time and on completion, you will see a similar console message to the one below-

Repeat the same procedure on both servers.

POSTGRESQL CONFIGURATION

As a first step, we need to initialize the database. To initialize, you need to go to the ‘/usr/pgsql-9.6/bin‘ directory. Use command- cd /usr/pgsql-9.6/bin and execute command ./postgresql96-setup initdb as shown below-

Once you’ve done that, start the postgres service by using the command- systemctl start postgresql-9.6

If you want to enable the service to start automatically on server startup, use the command- systemctl enable postgresql-9.6

By default, PostgreSQL runs on port 5432. You can check the status of this port by using the netstat command. If you do not have netstat , you can use the command yum install net-tools to install netstat.

Use the command- netstat -plntu, to check the status of port 5432. The port should be in LISTEN status.

Postgres has now been started. Now, we need to configure a password for the postgres user. Login as postgres user using- su – postgres and access postgres ‘psql‘ shell.

Use the commands shown below to set your new password.

Then type in the logout command to exit from the postgres user console. This completes our setup and configuration of a new password.

FIREWALLD CONFIGURATION

Firewalld is the default firewall management tool for CentOS 7. To ensure it works smoothly with Postgres, we need to start the service and open the port for Postgres connections. Use the command- systemctl start firewalld to start the firewall. To enable it to start automatically when the system boots use the command- systemctl enable firewalld

Now add the postgres service to firewalld using the commands- firewall-cmd –add-service=postgresql –permanent and firewall-cmd –reload

Check the open port of the service using- firewall-cmd –list-all

Once again, the same procedure must be followed for both the master and slave server.

MASTER SERVER CONFIGURATION

Here we will configure the master server for the replication.This will be the main server and will allow read and write. Postgres on the master server runs on the private IP 10.0.15.10 and should perform a streaming replication to the slave servers.

Change to path /var/lib/pgsql/9.6/data and edit the configuration file postgresql.conf.

Uncomment the line listener_address and change the value to 10.0.15.10.

Next, uncomment the line wal_level and change it to hot_standby.

To change synchronization level, use local sync. Uncomment and change it as shown below-

Turn on the archive_mode and archive_command= ‘cp %p /var/lib/pgsql/9.6/archive/%f’

To change the replication setting, uncomment the wal_sender line and set the value to 2 (since we have two servers, one master and one slave). Change wal_keep_segment to 10 as shown below-

Uncomment the line synchronous_standby_names and set the value to pgslave01

Save the file with all these changes. Since we have enabled the archive mode, we will create a new directory for archiving. Once the directory is created, we will allocate to it the required permissions and change the owner to the postgres user, as shown below-

Next, we will edit the pg_hba.conf file present at the directory /var/lib/pgsql/9.6/data. Use vim to edit this file. Add the below-mentioned lines to the file to configure the master and slave settings.

Save this file and restart postgres service using the command- systemctl restart postgresql-9.6. Now, let’s create a new user with replication privileges. Create a new user – replica as shown below. The password provided in this example is Test123.

This completes Master configuration and creation of user for replication.

SLAVE SERVER CONFIGURATION

In this section, we will configure the slave server to run on IP 10.0.15.11. We will allow only read without write on this server. Begin this process by stopping the postgres instance using the command- systemctl stop postgresql-9.6

Next, go to postgres’ directory and back up the data directory as shown below-

Create a new directory and change the ownership permissions of the directory to the postgres user as shown below-

Post this login as postgres user and copy all the data directory from Master to the Slave server as replica user using the command su – postgres and pg_basebackup -h 10.0.15.10 -U replica -D /var/lib/pgsql/9.6/data -P —xlog as shown below-

Type in the password when prompted. It might take some time to transfer all the data from the master to slave. Upon completion of the transfer, change the location using command – cd /var/lib/pgsql/9.6/data/ and open the file postgressql.conf with the command- vi postgresql.conf. 

Edit the following details in the postgresql.conf file, then save it-

  • listen_addresses = ‘10.0.15.11’
  • hot_standby = on

Now, it is time to create a recovery.conf file. Create the file using the command- vi recovery.conf. Paste the following configuration details in the file, then save it:

  • standby_mode = ‘on’
  • primary_conninfo = ‘host=10.0.15.10 port=5432 user=replica password=Test123 application_name=pgslave01’
  • trigger_file = ‘/tmp/postgresql.trigger.5432’

The primary conninfo file will contain your server details.

Change the ownership permissions of the recovery.conf file to that of postgres user using commands- chmod 600 recovery.conf and chown postgres:postgres recovery.conf. Once all changes have been saved, start the server using the command- systemctl start postgresql-9.6.

With this, we complete the slave configuration. You can use netstat to verify that the slave connection is working using the command- netstat -plntu

TESTING THE CONFIGURATION

Finally, let’s test that everything we’ve configured so far works as expected. Login to master and switch to postgres user using the command- su – postgres. Next, check the streaming state replication using the following commands:

  • psql -c “select application_name, state, sync_priority, sync_state from pg_stat_replication;”
  • psql -x -c “select * from pg_stat_replication;”

You should be able to see state value as ‘streaming‘ and sync_state as ‘sync‘.

We will now test the set up by inserting records into the master and ensuring that they’re replicated to the slave.

Login to Master and access postgresql shell using commands- su – postgres and psql. Create a table and insert some values using a couple of simple SQL queries:

  • CREATE TABLE test_table (test varchar(100));
  • INSERT INTO test_table VALUES (‘This is host SEO’);

Once the records have been inserted, login to the slave server using the commands- su – postgres and psql. Check that the data was replicated to slave using the following SQL queries:

  • SELECT * FROM test_table;

This should return the data that you inserted into the master server.

And that’s it! This completes the replication setup for PostgreSQL in CentOS 7 server. We hope you’ve found the tutorial useful ?

If you’re looking for affordable servers to test this configuration out, why not look at our cheap linux VPS deals? We provide the best prices on the market, while sacrificing none of the quality.

Subscribe Now

10,000 successful online businessmen like to have our content directly delivered to their inbox. Subscribe to our newsletter!

Archive Calendar

SatSunMonTueWedThuFri
 12345
6789101112
13141516171819
20212223242526
27282930 

Born in 2004 ... Trusted By Clients n' Experts

SEO Stars

They never made me feel silly for asking questions. Help me understand how to attract more people and improve my search engine ranking.

Read More

Emily Schneller Manager at Sabre Inc
SEO Stars

Took advantage of Hostseo's superb tech support and I must say, it is a very perfect one. It is very fast, servers reliability is incredible.

Read More

Leena Mäkinen Creative producer
SEO Stars

We're operating a worldwide network of servers with high quality standards requirements, we’ve choose hostseo to be our perfect partner.

Read More

Ziff Davis CEO at Mashable
SEO Stars

It’s very comfortable to know I can rely about all technical issues on Hostseo and mostly that my website and emails are safe and secured here.

Read More

Isaac H. Entrepreneur
SEO Stars

With hostseo as a hosting partner we are more flexible and save money due to the better packages with great pricing, free SEO n' free SSL too!

Read More

Madeline E. Internet Professional