Question
-
Where temporary backup files are stored?
-
Where backup files are stored?
Answer
In Linux
The actual paths can be found in the /etc/psa/psa.conf file:
# cat /etc/psa/psa.conf | grep DUMP | grep -v '#'
DUMP_D /var/lib/psa/dumps
DUMP_TMP_D /tmp
where:
-
DUMP_TMP_Dis the temporary backup files folder; -
DUMP_Dis the backup files folder.
In Windows
The actual paths can be found in the registry branch HKEY_LOCAL_MACHINESOFTWAREWOW6432NodePLESKPSA ConfigConfig,
where
-
key
DumpTempDircorresponds to the temporary backup files folder; -
key
DUMP_Dcorresponds to the backup files folder.
To check the respective key, connect to the server via RDP, start Command Prompt and run the following command:
C:> reg query "HKEY_LOCAL_MACHINESOFTWAREWow6432NodePLESKPSA ConfigConfig" /s | findstr DumpTempDir