Installation and Configuring Standalone backup server

Backup server should be configured to only one webserver one.

MongoDB Primary Node IP = 192.168.101.155

Installation

The installation procedures are same as here

Configuration of standalone Backup server for HA

Most of the configuration steps are same as here

The only thing you needed to add is the changes in backupagent.php in the webserver node you prefer to take configure backup with.

// ... Server URL
define("BACKUPAGENT_ACCESS_KEY", "filecloudbackups" );

//Additional mongodump params
//Use this if you have additional params to be passed to mongodump command
define("BACKUPAGENT_MONGODUMP_PARAMS", "--host \"192.168.101.155\" --username filecloud --password filecloud2018 --authenticationDatabase admin" );
define("BACKUPAGENT_DBDATA_PATH","/var/lib/mongodb");