• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Cleaning the backup manager

Noturns

Regular Pleskian
Plesk 12.5
CentOS 6.5
---------------

Today i have cleared my backup manager because there where some backup errors of subscriptions that where no longer listed. For some reason i cannot remove a task for the primairy default domain. Why is that?

I don't mind the server-wide backup. But i noticed something strange that the Server-wide Backup still shows backup tasks after everything was removed from the server.

See picture below:

plesk_backup_manager_strange_tasks.png

Because i had removed all my backups so there should not be any backups listed.
When you click on a backup it shows an error....


plesk_backup_manager_data_corrupt.png

I already looked in the terminal and could not find a file called backup_skel_1503270306.tgz

Does anyone know what these are?
How can i remove these backup tasks?

Reproduce steps:

> Scheduled Backups List
> Click Plesk Administrator
> Click Backup Manager
 
Hi,

You can check the list of backups in sqlite3 database file "/usr/local/psa/PMM/tasks/tasks.db"

~# ls -la /usr/local/psa/PMM/tasks/tasks.db
-rw-r--r-- 1 root root 20480 Aug 15 23:41 /usr/local/psa/PMM/tasks/tasks.db
~#
~#
~# sqlite3 /usr/local/psa/PMM/tasks/tasks.db
SQLite version 3.6.20
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
tasks
sqlite> select * from tasks;
5|Backup|a3f1fdde-0a6c-4bf5-85a5-00c0f4043cc4 ........................
..........................................................................................

I believe you will see these backup tasks there. You can create a backup of "/usr/local/psa/PMM/tasks/tasks.db" file

~# cp /usr/local/psa/PMM/tasks/tasks.db /usr/local/psa/PMM/tasks/tasks.db.orig

And then, try to clear `tables` table

sqlite> delete from tasks;
 
Back
Top