I am new to Postgresql, I've found a tool named Barman for taking incremental backup of database. But the few tutorials aren't helping that much as they're not for naive users.
Can someone help explaining the steps simply how to backup data with Barman? That would be a great help ! I'm using Postgres 10.4 in Ubuntu 18.04.
I found this great tutorial later explaining step by step process. This one is by far the most helpful one. I am including the content in case link becomes invalid if the page changes.
Barman (backup and recovery manager) is an administration tool for disaster recovery of PostgreSQL servers written in Python. Barman can perform remote backups of multiple servers in business critical environments, and helps DBAs during the recovery phase. Barman’s most wanted features include: backup catalogues, incremental backup, retention policies, remote recovery, archiving and compression of WAL files and of backups.
Steps To Setup pgbarman:
Step 1 : Install PostgreSQL-9.4 or 9.5.
Download PostgreSQL from below link
https://ftp.postgresql.org/pub/source/v9.5.1/postgresql-9.5.1.tar.bz2
Step 2 : Download pgbarman from below link.
https://sourceforge.net/projects/pgbarman/files/1.5.1/barman-1.5.1.tar.gz/download
Step3: Install prerequisite before installing pgbarman below are necessary prerequisite.
Python 2.6 or 2.7 Python modules:
PostgreSQL >= 8.3 rsync >= 3.0.4
Step4: untar the pgbarman file and install it as given below
Step5: copy barman.conf from doc to /etc/
Step6: create user barman and change the owner of /etc/barman.conf
Step7: Make password less authentication between barman server and postgres server .
Repeat above steps for postgres user.
Step8: Edit barman.conf and edit below parameters in config file
Step9: Edit the postgresql.conf and enable the archiving .
There is one last configuration to be made on the main, to switch on backup (or archive) mode. First, we need to locate the value of the incoming backup directory from the barman, switch to the user barman:
Run below command to locate the incoming backup directory:
Now switch to the user postgres on postgres server.
Step10: Restart postgres server or instance .
Step11: Now loging to the barman (su – barman) and check wether barman can connect to postgres or not .
Note : here 'main' is name for postgres instance which is declared in barman.conf.
Step12 : Below command gives the information of the postgres server
Step13 : Take first full backup of main using barman
Step14 : login to postgres and create database and tables, insert data into tables then take incremental backup of main using barman(login to barman).
Adding data to postgres :
Note : --reuse= link is used to link the main full backup . This will backup only modified or changed files from main(postgres) .
Step15: To list out the backus follow below command
Step16: Now lets recover from backup
Backup is restored at location /tmp/data and while recovering user have to give latest backup ID
Step17: Now change owner of /tmp/data as 'postgres' and start the recovered instance.
psql to new instance which is recovered using barman at location /tmp/data.