How to get top processes with highest CPU usage - Prador

  [ Rocketeers ](/)   

[Login](https://app.rocketeersapp.com) 

 On this page

 Knowledge
---------

How to get top processes with highest CPU usage
===============================================

### [\#Hosting](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/hosting)

Want to know what's causing your server to slow down or what's keeping all these resources for itself. This command shows you which processes take it all.

 Published by [Mark van Eijk](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/author/mark-van-eijk) on August 12, 2022 · 1 minute read

Run this commando to show top 10 processes that are using the most CPU on your server:

 ```
ps -eo cmd,%cpu --sort=-%cpu | head -n 11

```

To find memory hogs instead, use [top processes by memory](/top-processes-memory); and when a process is holding a port, here's [how to kill it](/kill-process-on-port-linux).

### Subscribe to our newsletter

Do you want to receive regular updates with fresh and exclusive content to learn more about web development, hosting, security and performance? Subscribe now!

  Fill in your email address to receive updates  Subscribe 

#### More in [\#Hosting](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/hosting)

- [How to get top processes with highest memory usage](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/top-processes-memory)
- [How to add Swap Space on Ubuntu servers](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/add-swap-space-on-ubuntu)
- [Reclaim disk space on Ubuntu server](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/reclaim-diskspace-on-ubuntu)
- [Disable unnecessary and unused PHP versions (FPM pools)](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/disable-unused-php-fpm-pools)
- [How to check Ubuntu version](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/ubuntu-version)
- [Zero downtime deployments using PHP-FPM and nginx](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/zero-downtime-php-deployments)

 [View all 16 articles →](https://3c80d338-d724-4b4e-9f6d-145bb1e3d26e.rocketeers.cloud/hosting)
