• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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