• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Find and Fuser high CPU load

Vincent86

New Pleskian
Hi,
after update Plesk 11.0.9 i have a strange CPU problem; with command "top" there are two new command (fuser and find) that cause an high cpu load.

How i can resolve this problem?

Thanks
 
fuser is a UNIX command used to show which processes are using a specified file, file system, or unix socket, while The find command is used to locate files on a Unix or Linux system.

As you can see these are just NOT Plesk commands, these are system commands ...You can kill them from your SHELL if they are consuming much CPU.

Alternatively use:

ulimit is a built in command in the shell. It will restrict any processes from exceeding the set criteria. You have the following options, memory included:

Code:
# ulimit -a
core file size (blocks)     0
data seg size (kbytes)      unlimited
file size (blocks)          unlimited
max locked memory (kbytes)  unlimited
max memory size (kbytes)    unlimited
open files                  1024
pipe size (512 bytes)       8
stack size (kbytes)         8192
cpu time (seconds)          unlimited
max user processes          1024
virtual memory (kbytes)     unlimited
 
Back
Top