Connect to a Plesk server via SSH as root. Delete temporary files that are older than 14 days:# find /tmp -type f -mtime +14 -exec rm {} \;# find /var/tmp -type f -mtime +14 -exec rm {} \;as well as Plesk temporary files:# rm -rf /usr/local/psa/PMM/tmp/* /usr/local/psa/tmp/* Check the size and clean package cache (cache of previously downloaded…
Creating a manual database backup Plesk Onyx plesk db dump > C:/path/to/.sql Plesk 12.5 and previous releases Note: MySQL admin password is required for this operation. "%plesk_dir%"\Mysql\bin\mysqldump.exe -uadmin -p -P8306 > C:/path/to/.sql Example The following command for Plesk Onyx creates a database dump of the Plesk 'psa' database…
Connect to the Plesk server via RDP. Start a command prompt as an Administrator. Connect to MySQL: Note: MySQL admin password is required for this operation. In Plesk Onyx 17.8 and later, retrieve the password with the command plesk sbin psadb --get-admin-password. "%plesk_dir%\Mysql\bin\mysql.exe" apsc -uadmin -p -P8306 Once connected, create…