Configuring Hot physical backup for PITR with continuous archiving: The hot backup with continuous archiving help us to allow to recover the database point in time(PITR) from the time of database backup. Make sure to complete the basic requirement before starting the backup configuration, like where to store the base backup, WAL archives etc. So, My environment contains the following, pg01 --> PostgreSQL database server pg03 --> Backup server PGDATA --> Path to postgresql data directory /u01/backups/base --> for storing the database base backup /u01/backups/archive --> for storing WAL archives. BACKUP_NAME--> Backup file name Steps to configure the backup as follows, 1.) Create the backup and archive directories on backup server, if not already created. Here /u01/backups/base and /u01/backups/archive. 2.) Configure the passwordless ssh connectivity between database and backup server. 3.) Configure the database server, set the below parameters in postgr...