DPA in an IDPA system - Alert: DPA Datastore export status. Database export maximum age period has expired. Consider creation a database backup
Summary: Process to resolve Data Protection Advisor (DPA) Datastore export status alert.
This article applies to
This article does not apply to
This article is not tied to any specific product.
Not all product versions are identified in this article.
Symptoms
In the DPA UI under Alerts, a DPA Datastore export status alert message displays.
In the description of the alert, the following appears:
-
DB export maximum age period has expired. Consider creation a DB backup, please.
Cause
DPA checks for the last time a DS export was run and generates this alert if the export was not run in the last 7 days.
Resolution
For IDPA DPA systems, set up the following script to run the DS export daily to keep this alert from triggering.
- Create a directory in /data01 called dbbkp with the following command:
mkdir /data01/dbbkp/
- Create a script in that directory, called dbbkp.sh with the following command:
vi /data01/dbbkp/dbbkp.sh
-
- Insert the following into that script file:
#!/bin/sh
#Take backup of DPA database
/opt/emc/dpa/services/bin/dpa.sh datastore export /data01/dbbkp/
#Delete the files older than 3 days
find /data01/dbbkp/datastore* -type d -mtime +2 | xargs rm -rf
- Press escape and then :x to save and exit vi.
- Run the following command to make that file executable:
chmod +x /data01/dbbkp/dbbkp.sh
- Edit the crontab so this runs daily.
- Run the following command:
crontab -e
- This opens the crontab in vi. Add the following line to this:
00 19 * * * /usr/bin/sh /data01/dbbkp/dbbkp.sh >> /tmp/dpabkp.log 2>&1
- Press escape and then :x to save and exit crontab.
- Run the script with the following command:
/data01/dbbkp/dbbkp.sh
If you check the /data01/dbbkp directory, you see a new export every day. Check this after 4 days and you should only see three datastore export files. If this does not delete files older than 3 days, contact support to address this, as it fills up your drive if the cleanup is not working properly.
Affected Products
Data Protection Advisor, PowerProtect Data Protection SoftwareArticle Properties
Article Number: 000182458
Article Type: Solution
Last Modified: 15 Apr 2025
Version: 5
Find answers to your questions from other Dell users
Support Services
Check if your device is covered by Support Services.