• 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!
  • 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.

Reducing Downtime During Backups

Eric Pretorious

Regular Pleskian
I've noticed that enabling the "Suspend domains until backup task is completed" feature causes lots of downtime during backups and that affects our SLA.

[Aside from the obvious impact on availability] What are the advantages and disadvantages to suspending the domains during backups? Are there any good reasons to leave this setting enabled?
 
The fear of not suspending is that you might miss out some data in the backups (especially if the changes took place during or after backup task). Thus suspending the domain, creates a full backup of the site as was before suspending.

I personally don't recommend enabling the suspend domain option...(The difference in data if it's there is really negligible, compared to the downtime)
 
Is there some way to make the site unavailable by [temporarily] redirecting visitors to a different URL during the backup (instead of canceling DNS for the entire domain)? This would be much better for the SLA than completely shutting off all services for the domain...
 
Last edited:
Is there some way to make the site unavailable by [temporarily] redirecting visitors to a different URL during the backup (instead of canceling DNS for the entire domain)? This would be much better for the SLA than completely shutting off all services for the domain...

Sure, just add the code below to your index.php file of that domain name ...

Code:
<?php

   header( 'Location: http://www.yoursite.com/new_page.html' ) ;

?>

Change http://www.yoursite.com/new_page.html to the new URL you want to redirect to!

How would I configure Plesk to do that as part of the backup process, Abdi?
 
From plesk you can use URL redirector ...
You can also use mod_rewrite (.htaccess) to redirect ...
You can also use DNS (CNAME) records ...

If it's just temporary, then DO NOT USE PLESK's URL forwarder ...You might cause un-necessary problems if you already have data on your domain name ..
 
Back
Top