• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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