Resolution
There are two ways to resolve the issue:
- Bind-mount the /tmp partition onto a larger partition:
# mkdir /vz/temp # mount --bind /vz/temp /tmp
In order to preserve such behavior after a server reboot, add the corresponding record to /etc/fstab, e.g.:# echo "/vz/temp /tmp none bind 0 0" >> /etc/fstab
- Change temporary storage location in PVA Agent backup plugin configuration (as of PVA 4.6.4 update 4 or 6.0):
- Edit
/opt/pva/agent/plugins/VZABackupLibClient/VZABackupLibClient.voc
- Append parameter/load/params section for
vzlin_backup_serializer11
withenvp
variables so the resulting section will look in a following way:<!-- vzlpl stuff --> <parameter> <id>vzlin_backup_serializer11</id> <category>plugins</category> <short>Virtuozzo Backup plugin</short> <load> <params xsi:type="plugin_params_externType"> <type>extern</type> <path>vzlpl</path> <arguments> <argv>VZABackupLibClient/VZABackupLibClient.so</argv> <argv>vzlin_backup_serializer11</argv> </arguments> <!-- Environment variables--> <envp> <item> <name>ACRONIS_TMP_PATH</name> <value>/vz/tmp</value> </item> </envp> </params> </load>
- Restart PVA Agent
- Edit
No comments:
Post a Comment