• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Cancel scheduled backup

A

asandros

Guest
Hello,

How can I cencel scheduled backup during backup creation if server is very high loaded at this time? I tried to kill backup process but it started again.

Thank you.
 
Scheduled backups are executed as a cron jobs, so you can try to stop the crond daemon with
/etc/init.d/crond stop
 
Stopping cron daemon will not terminate forked processes. To kill the scheduled backup you need to find whole tree of forked processes with 'ps axwwf' command. at the root of this tree is '/usr/local/psa/admin/sbin/backupmng' process. To stop backup completely you need to pass IPs of all members of the tree to 'kill -9' command:

kill -9 3453 3435 3254 ...
 
Back
Top