Problem description
When you install Phoenix agents on your servers, the Phoenix folder is created under
/var/Phoenix/FS
.The 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
Stop the Phoenix service.
service Phoenix stop
Copy the folder to the desired location.
cp -R /var/Phoenix /abc/xyz/Phoenix
Keep a backup until the backup starts writing to the changed location.
mv /var/Phoenix /var/Phoenix_Moved
Create a link.
ln -s /abc/xyz/Phoenix /var/Phoenix
Stop the Phoenix service.
service Phoenix start
Start the backup and you will see that the timestamp of the new location changes, this means metadata is written to the new location.