R-J
Verified User
Yesterday the process 'run-parts' started to use a lot of system resources. Every hour it starts a new proces, which behaves the same way. Taking up twice as much resources.
If I don't kill the processes, within 12 hours the server goes down under heavy load.
From the PS command I understand it has something to do with Cron.
I'm not that familiar with linux, does someone have any suggestions on how to find out what's actually happening on my server or what's going wrong?
If I don't kill the processes, within 12 hours the server goes down under heavy load.
From the PS command I understand it has something to do with Cron.
Code:
ps -auxf
root 3974 0.0 0.0 1648 688 ? S Feb20 0:00 crond
root 9318 0.0 0.0 1648 684 ? S 13:01 0:00 \_ CROND
root 9319 97.7 0.0 2136 960 ? R 13:01 3:11 \_ /bin/bash /usr/bin/run-parts /etc/cron.hourly
I'm not that familiar with linux, does someone have any suggestions on how to find out what's actually happening on my server or what's going wrong?