ps command

  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
  2. K

    Command to check all the running processes on server

    You can check the running processes from ps command (Processes status), as a system administrator this utility will help you to monitor all the running processes on server. This will get this information from virtual files /proc filesystem. You have to run below command ps –aux Here aux will...
Top