We will start by looking at Barman's main configuration file:
- As root on malcolm, open the /etc/barman.conf file for editing. This file contains global options for Barman. Once you are familiar with the main configuration options, I recommend that you set the default compression method by uncommenting the following line:
compression = gzip
- Add the configuration file for the angus server. Drop the angus.conf file, containing the following lines, into the /etc/barman.d directory:
[angus] description = "PostgreSQL Database on angus" active = off archiver = on backup_method = rsync ssh_command = ssh postgres@angus conninfo = host=angus user=barman dbname=postgres
- You have just added the angus server to the list ...