2-Tier Systems
(1) - Taking a System Backup
Section titled “(1) - Taking a System Backup”- Login to the AIR Console Web UI using a Global Admin Account.
- Navigate to the Backup Management section by selecting the Gear Button and then “Backup History” from the drop-down list.
- Make a backup of the system by clicking the “Backup Now” button on the top right corner.
- Download the backup file by clicking the Vertical Ellipsis Button under the “Actions” column and clicking Download from the drop-down list.
- This will download a zip file with the ABF extension (AIR Backup File).
(2) - Stop AIR Systems
Section titled “(2) - Stop AIR Systems”NOTE: You must stop AIR System first.
- Use a terminal emulator, such as PuTTY to connect to the CLI of the AIR Server via SSH.
- Navigate to the AIR folder (/opt/binalyze-air by default) by executing the following command:
cd /opt/binalyze-air
- Stop containers by executing the following command:
docker compose down -v
(3) - Stop DB System
Section titled “(3) - Stop DB System”- Navigate to the AIR DB folder (/opt/binalyze-air-db by default) by executing the following command:
cd /opt/binalyze-air-db
- Stop containers by executing the following command:
docker compose down -v
(4) - Updating the DB System
Section titled “(4) - Updating the DB System”NOTE: You must upgrade DB first.
- Use a terminal emulator, such as PuTTY to connect to the CLI of the DB Server via SSH.
- Navigate to the AIR DB folder (/opt/binalyze-air-db by default) by executing the following command:
cd /opt/binalyze-air-db
- Pull the latest images by executing the following command:
docker compose pull
- Start containers by executing the following command:
docker compose up -d
(5) - Updating the AIR System
Section titled “(5) - Updating the AIR System”- Use a terminal emulator, such as PuTTY to connect to the CLI of the AIR Server via SSH.
- Navigate to the AIR folder (/opt/binalyze-air by default) by executing the following command:
cd /opt/binalyze-air
- Pull the latest images by executing the following command:
docker compose pull
- Start containers by executing the following command:
docker compose up -d