How to find a running Java process on UNIX?
Submitted by: AdministratorYou can use combination of 'ps' and 'grep' command to find any process running on UNIX machine. Suppose your Java process has a name or any text which you can use to match against just use following command.
ps -ef | grep "myJavaApp"
ps -e will list every process i.e. process from all user not just you and ps -f will give you full details including PID, which will be required if you want to investigate more or would like to kill this process using kill command.
Submitted by:
ps -ef | grep "myJavaApp"
ps -e will list every process i.e. process from all user not just you and ps -f will give you full details including PID, which will be required if you want to investigate more or would like to kill this process using kill command.
Submitted by:
Read Online Analyst Integration Job Interview Questions And Answers
Top Analyst Integration Questions
☺ | Explain recursive algorithm? |
☺ | How to find if a number is power of two, without using arithmetic operator? |
☺ | Explain stateless system? |
☺ | Explain about critical section? |
☺ | Explain regular expression? |
Top Analysis Categories
☺ | GIS Interview Questions. |
☺ | Statistics Interview Questions. |
☺ | Financial Analyst Interview Questions. |
☺ | Data Analyst Interview Questions. |
☺ | GIS Analysis Interview Questions. |