Problem description
When you install Druva agents on your servers, the Druva agent creates a directory:
For 6.x Version: under/var/log/Phoenix/FS.
For 7.x Version: under/var/log/Druva/EnterpriseWorkloads/FSThe size of the metadata depends on the size of the data that is backed up or restored.
With each backup or restore, the metadata grows.
If the metadata consumes nearly all the free space on your volume, backups from the servers might fail. To avoid this issue, consider changing the default location of the agent metadata.
Solution
Change the agent metadata location
For Agent Version 6.x:
Stop the Phoenix service.
service Phoenix stopCopy the folder to the desired location.
cp -R /var/log/Phoenix/ /abc/xyz/PhoenixKeep a backup until the backup starts writing to the changed location.
mv /var/log/Phoenix /var/log/Phoenix_MovedCreate a link.
ln -s /abc/xyz/Phoenix /var/log/PhoenixStop the Phoenix service.
service Phoenix startStart the backup and you will see that the timestamp of the new location changes, this means metadata is written to the new location.
For Agent Version 7.x:
Stop the
Druva-EnterpriseWorkloadsservice.
service Druva-EnterpriseWorkloads stopCopy the folder to the desired location.
cp -R /var/log/Druva/ /abc/xyz/DruvaKeep a backup until the backup starts writing to the changed location.
mv /var/log/Druva/ /var/log/Druva_MovedCreate a link.
ln -s /abc/xyz/Druva /var/log/DruvaStop the Phoenix service.
service Druva-EnterpriseWorkloads startStart the backup and you will see that the timestamp of the new location changes, this means metadata is written to the new location.
