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
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! Toolkit
    • Premium Email
    • Email Security
    • SocialBee
    • WP Toolkit
    • Sitejet Builder for Plesk
    • SEO Toolkit
    • Joomla! 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
      • Joomla! Toolkit
      • 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
      • Joomla! Toolkit
      • 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

A list of scripts from /etc/cron.hourly is sent hourly to the Plesk admin constantly

 
centoscroncron jobsdebianemail

Symptoms

  • Plesk Obsidian running on a Linux-based operating system
  • The Plesk administrator receives unusual email notifications related to the execution of the hourly cron jobs.
  • During the hourly task execution the following output is sent to the Plesk admin email as an email notification:

    Subject: Cron run-parts /etc/cron.hourly
    Body:
    /etc/cron.hourly/0anacron:
    /etc/cron.hourly/50plesk-hourly:
    /etc/cron.hourly/awstats:
    /etc/cron.hourly/plesk-phpp-cleanuper:

Cause

Corrupted or altered /usr/bin/run-parts script (most commonly as a result of interrupted operating system package updates).

Resolution

Note: Nothing on the side of Plesk edits or has ever edited the run-parts script of any Linux operating system, due to which the resolution of the issue involves the reinstallation of core operating system packages.

1. Connect to the server via SSH as the root user

2. Find the exact package that is responsible for the creation of the current run-parts file on your server and replace it by using the proper steps for your operating system:
Click on a section to expand

For Debian operating systems:

1. Find the exact package that creates this file:

# dpkg -S /bin/run-parts
debianutils: /bin/run-parts

2. Download the same package as a .deb file by executing the following command:
Note: This command needs sudo even if you are executing it as the root user

# sudo apt download debianutils

3. Force the overwriting of the currently used package files with the ones from the .deb file you just downloaded by executing a command that is similar to the following:
Note: Replace /root/debianutils_4.11.2_amd64.deb with the exact file that was downloaded while executing the previous command in your case

# dpkg --force-overwrite -i /root/debianutils_4.11.2_amd64.deb

For Ubuntu operating systems:

1. Find the exact package that creates this file:

# dpkg -S /usr/bin/run-parts
debianutils: /usr/bin/run-parts

2. Download the same package as a .deb file by executing the following command:
Note: This command needs sudo even if you are executing it as the root user

# sudo apt download debianutils

3. Force the overwriting of the currently used package files with the ones from the .deb file you just downloaded by executing the following command:

# dpkg --force-overwrite -i debianutils_5.5-1ubuntu2_amd64.deb

For RHEL-based operating systems:

1. Find the exact package that creates this file:

# rpm -qf /usr/bin/run-parts
crontabs-1.11-6.20121102git.el7.noarch

2. Remove the mentioned package without its dependencies by executing the following command:

# rpm -e --nodeps crontabs-1.11-6.20121102git.el7.noarch

3. Reinstall the package that was just removed by executing the following command:

Note: On June 30, 2024, CentOS Linux 7 reached End of Life (EOL), due to which you may have to obtain the relevant package from an unofficial repository and reinstall it entirely manually (without using an automatic installer).

# yum install crontabs-1.11-6.20121102git.el7.noarch

 

Tweet
Share
Share
Email
0 Shares
Read the full article
Related Posts

Cron Jobs: All You Need To Know

Read More »

Recommended OSs for Plesk

Read More »

Advanced Techniques for Building an Email List

Read More »
Knowledge Base

Mail accounts cannot log into Plesk web interface if password is encrypted

Read More »

Unable to start BIND DNS server in Plesk for Linux: “zone NS has no address records (A or AAAA)” or “zone has no NS records”

Read More »

Messages about failed logrotate task are received in Plesk on Ubuntu 18 or Debian 9: ‘Access denied for user ‘root’@’localhost’ (using password: NO)

Read More »

How to perform dist-upgrade procedure on Linux server with Plesk?

Read More »

Hosting Wiki

  • Server Redundancy
  • Linux Containers
  • Bare Metal Server
  • Oracle VM Server
  • Server Virtualization Software
  • Windows Server
  • Linux
  • Plesk
  • Web Server
  • DNS Server
  • SSH
  • Cron Jobs
  • Email Autoresponder
  • Email Alias
  • Email Virus Protection
  • Email Forwarding
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