• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

How can I get a backup schedule for all domains?

S

Spazholio@

Guest
I would like to get a list of all my domains, when the domains are scheduled to be backed up, and (optionally) a list of successes/failures. I'll be happy with just the listing of schedules. Does anyone know how to do this?
 
Hello

It can be done by MySQL query in the database. The domain list is defined in the table "domains", the scheduled backup options are stored in the table BackupsScheduled. See the query to get the listing of all domains with scheduled backups:
mysql> select domains.name, domains.id, BackupsScheduled.obj_id, BackupsScheduled.last from domains, BackupsScheduled where domains.id=BackupsScheduled.obj_id;
Also, it is possible to run it at once from command line:
mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa -e"select domains.name, domains.id, BackupsScheduled.obj_id, BackupsScheduled.last from domains, BackupsScheduled where domains.id=BackupsScheduled.obj_id;"
 
I would like to get a list of all my domains, when the domains are scheduled to be backed up, and (optionally) a list of successes/failures. I'll be happy with just the listing of schedules. Does anyone know how to do this?

Hello Spazholio,

Please look at the Plesk online documentation

• Plesk for Unix
http://download1.swsoft.com/Plesk/Plesk8.4/Doc/en-US/plesk-8.4-unix-administrators-guide.pdf - Scheduling Backups, page 225
http://download1.swsoft.com/Plesk/Plesk8.4/Doc/en-US/plesk-8.4-unix-clients-guide.pdf - scheduling Backups, page 108
http://download1.swsoft.com/Plesk/Plesk8.4/Doc/en-US/plesk-8.4-unix-domain-administrators-guide.pdf - Scheduling Backups, page 96
• Plesk for Windows
http://download1.swsoft.com/Plesk/Plesk8.4/Doc/en-US/plesk-8.4-win-administrators-guide.pdf - Scheduling Backups, page 257
http://download1.swsoft.com/Plesk/Plesk8.4/Doc/en-US/plesk-8.4-win-backup-restore-guide.pdf - Scheduling Plesk Data Backups, page 17
 
sergius: while I appreciate the reply, none of these links have anything to do with my request. I know how to schedule a site to back up (which is what these show), but there is no way to run a report of when each site is scheduled and/or the last successful backup time (which these docs do not discuss). Monica's answer did the trick.
 
Back
Top