Skip to content
  • Solutions
    By Role
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    • For Developers
    • For Content Managers
    • For Agencies
    • For IT Admins
    • For Web Hosters
    By Infrastructure
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Overview
    • AWS
    • Microsoft Azure
    • Alibaba Cloud
    • Google Cloud Platform
    • Vultr
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
    • Digital Ocean
    • Linode
    • Upcloud
    • Oracle
    • OVH
  • Product
    • Plesk Features
    • Plesk Editions
    • What’s new
    • Pricing
    • Roadmap
    • Lifecycle Policy
    • Extensions Catalogue
  • Pricing
  • Extensions
    Featured Extensions
    • SocialBee
    • WP Toolkit
    • WP Guardian
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Premium Email
    • Email Security
    • SocialBee
    • WP Toolkit
    • WP Guardian
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Premium Email
    • Email Security
    Bundles and packs:
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack
    • Business and Collaboration Edition
    • WP pack
    • Hosting pack
    • Power pack
    • Language pack

    See all Extensions

  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • WP Guardian
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
  • Pricing
  • Solutions
    • By Role
      • For Developers
      • For Content Managers
      • For Agencies
      • For IT Admins
      • For Web Hosters
    • By Infrastructure
      • Overview
      • Plesk on Amazon Web Services (AWS & Lightsail)
      • Microsoft Azure
      • Alibaba Cloud
      • Google Cloud Platform
      • Vultr
      • DigitalOcean
      • Linode
      • UpCloud
      • Oracle
      • OVH
  • Products
  • Pricing
  • Extensions
    • Featured Extensions
      • SocialBee
      • WP Toolkit
      • Sitejet Builder for Plesk
      • SEO Toolkit
      • WP Guardian
      • Premium Email
      • Email Security
    • Bundles and packs:
      • Business and Collaboration Edition
      • WP pack
      • Hosting pack
      • Power pack
      • Language pack
      • See all Extensions
  • For Partners
    • Plesk Contributor Program
    • Plesk Partner Program
    • Affiliate Program
    • Plesk University
  • Help Center
    • Documentation
    • Professional Services
    • Support
    • Contact Us
    • Wiki
    • Forum
  • Plesk 360 login
  • Free Trial
Plesk 360 login
Free Trial

Knowledge Base

Scheduled Plesk backups do not run at the scheduled time

 
backupbackup restore migrationcloudcloud storagecron

Symptoms

  • Plesk scheduled backups (local, FTP, cloud storage) do not run at a scheduled time.

  • Cron job is executed correctly:

    # grep backupmng /var/log/syslog | tail -n3
    CRON[1329826]: (root) CMD ([ -x /opt/psa/admin/sbin/backupmng ] && /opt/psa/admin/sbin/backupmng >/dev/null 2>&1)

    Note: On RedHat based OS it can be seen in the /var/log/cron file while, on Debian based OS can be seen in /var/log/syslog

Cause

A new scheduled backup task does not start because of other stuck backup processes which are stuck (in this case, - from June, 20):

# ps auxfw | grep backupmng | grep -v grep
root 15212 0.0 0.0 4268 96 ? Ss jun20 0:00 _ /bin/sh -c [ -x /opt/psa/admin/sbin/backupmng ] && /opt/psa/admin/sbin/backupmng >/dev/null 2>&1
psaadm 15213 0.0 0.0 45064 596 ? S jun20 0:00 _ /opt/psa/admin/sbin/backupmng
psaadm 15216 0.0 0.0 45064 568 ? S jun20 2:07 _ /opt/psa/admin/sbin/backupmng
psaadm 15217 0.0 0.4 301544 19624 ? S jun20 0:01 _ /usr/bin/sw-engine -c /opt/psa/admin/conf/php.ini /opt/psa/admin/plib/backup/scheduled_backup.php --dump 12
root 15523 0.0 0.0 0 0 ? Z jun20 0:00 _ [pmmcli] <defunct>
root 15526 0.0 0.3 121476 13096 ? S jun20 0:00 _ /usr/bin/python -Estt /opt/psa/admin/sbin/pmmcli --pmmras-exec /opt/psa/tmp/prevIOHp2 --get-ftp-dump-list
root 15527 0.0 0.0 113852 1188 ? S jun20 0:00 _ /opt/psa/admin/bin/pmm-ras --get-ftp-dump-list --dump-storage=ext://one-drive-backup/subscription/23/
root 15822 0.0 0.4 375080 16904 ? S jun20 2:38 _ /usr/bin/sw-engine -c /opt/psa/admin/conf/php.ini /opt/psa/admin/sbin/backup_restore_helper --exte

Resolution

Debian-based OS

  1. Connect to the Plesk server via SSH

  2. Stop cron service:

    # systemctl stop cron

  3. Kill these processes by their PID:

    # kill -9 `ps auxfw | grep backupmng | grep -v grep | awk {'print $2'}`

  4. Start cron sercive:

    # systemctl start cron

  5. Either wait until the next scheduled backup is launched or launch the process manually through the following command:

    # /opt/psa/admin/sbin/backupmng

    Warning: If the tasks are launched manually through the command above, all the pending scheduled backups will be launched at the same time. Consider this for resource usage.

RHeL-based OS

  1. Connect to the Plesk server via SSH

  2. Stop cron service:

    # systemctl stop crond

  3. Kill these processes by their PID:

    # kill -9 `ps auxfw | grep backupmng | grep -v grep | awk {'print $2'}`

  4. Start cron sercive:

    # systemctl start crond

  5. Either wait until the next scheduled backup is launched or launch the process manually through the following command:

    # /usr/local/psa/admin/sbin/backupmng

    Warning: If the tasks are launched manually through the command above, all the pending scheduled backups will be launched at the same time. Consider this for resource usage.

Read the full article
Related Posts

Cron Jobs: All You Need To Know

Read More »

WebPros at CloudFest 2023

Read More »

You Are Always Safe When You Have an Up-To-Date Plesk Backup

Read More »
Knowledge Base

Plesk Obsidian 18.0.41 Backup process can be stuck indefinitely when uploading to remote FTP storage

Read More »

How to reinstall phpMyAdmin in Plesk for Linux

Read More »

Is it possible to restore files from a remote Plesk backup without downloading the whole archive

Read More »

Is it possible to export local dump created in Plesk to a remote storage?

Read More »

Hosting Wiki

  • Cross Site Request Forgery (CSRF)
  • Cross-Origin Resource Sharing (CORS)
  • Server Redundancy
  • Vertical Cloud
  • Cloud Management
  • Cloud Service Architecture
  • Postfix
  • Cloud Computing
  • Amazon CloudFront
  • Google Cloud CDN
  • Cloudflare
  • PostgreSQL
  • AMP
  • DDoS
  • Bare Metal Server
  • Backup
  • PhpMyAdmin
  • phpPgAdmin
  • Oracle VM Server
  • Server Virtualization Software
  • Windows Server
  • Linux
  • Python
  • PHP
  • Hosting Control Panel
  • Plesk
  • NoSQL Database
  • Web Server
  • DNS Server
  • SSH
  • Cron Jobs
  • Colocation Hosting
  • Reseller Hosting
  • Cloud Hosting
  • VPS Hosting
  • Dedicated Hosting
  • Shared Hosting
  • Free Hosting
  • Managed Hosting
X-twitter Linkedin Youtube Reddit Github
  • Product
  • Login
  • Pricing
  • Editions
  • For Partners
  • Partner Program
  • Contributor Program
  • Affiliate Program
  • Plesk University
  • Company
  • Blog
  • Careers
  • Events
  • About Plesk
  • Our Brand
  • Resources
  • User and Admin guides
  • Help Center
  • Migrate to Plesk
  • Contact Us
  • Hosting Wiki
  • Forum
  • Legal
  • Legal
  • Privacy Policy
  • Imprint

© 2025 WebPros International GmbH

Part of the WebPros®  Family