Technical Tip: Unable to run backups in FortiNAC vF 7.6.5
| Description | This article describes a behavior where database backups no longer run. Symptoms include the backup task status displaying as Running in the following FortiNAC UI views: System -> Scheduler. System -> Settings -> System Management -> System Backups. System -> Settings -> System Management -> Database Backup/Restore.
Under normal conditions, the status of running should disappear once the backup has completed. In this scenario, it does not. | ||||||||||||
| Scope | FortiNAC vF 7.6.5. | ||||||||||||
| Solution | To be addressed in version vF 7.6.6. See below for workaround options (requires CLI access).
Workaround. Option 1. Manual backup:
execute enter-shell cd /bsc/backups/database
sudo ydb_dated_backup
Option 2. Automated backup leveraging a custom script:
execute enter-shell echo '#!/bin/bash' > /home/cm/scripts/simple_backup.sh echo '. /bsc/campusMgr/.profile' >> /home/cm/scripts/simple_backup.sh echo 'sudo ydb_dated_backup' >> /home/cm/scripts/simple_backup.sh chmod +x /home/cm/scripts/simple_backup.sh
Required fields:
cd /bsc/backups/database |