view running processes

  1. K

    Steps to view running processes of user in SSH

    You can use below command to check currently running process. From ps command you can check the list of processes and for currently running processes you can use below command: # ps –aufx For a particular user: # ps -aufx | grep username For particular service: # ps -aufx | grep service_name
Top