VOOZH about

URL: https://dzone.com/articles/quickly-find-your-java-application-process-id

โ‡ฑ Quickly Find Your Java Application Process ID


Related

  1. DZone
  2. Coding
  3. Java
  4. Quickly Find Your Java Application Process ID

Quickly Find Your Java Application Process ID

We discuss how to find your Java application process ID quickly. For certain monitoring tools like yCrash, you need to pass your application process ID as input.

By Mar. 23, 21 ยท Tutorial
Likes
Comment
Save
27.2K Views

Join the DZone community and get the full member experience.

Join For Free

In this post, we are going to discuss how to find your Java application process ID quickly. For certain monitoring tools like yCrash, you need to pass your application process ID as input.

Finding Java Application Process ID in Linux

 On any Linux/Unix flavor of operating system, issue the command:

ps -ef | grep java


The above command will display all the Java processes running on this machine and their arguments, process ID, and the user who launched it. When I issued the above command following was the output in my AWS EC2 Linux instance:

Fig: 'ps' command displaying all Java processes running on Linux machine.

The red color highlight in the above figure indicates the process IDs of all Java processes running on this EC2 instance. From here, you can get hold of your application's process ID.

Finding Java application Process ID in Windows

 'jps' โ€” Java Virtual Machine Process Status Tool is packaged in JDK. This tool will display all the Java processes that are running on that machine. Below are the steps to invoke the 'jps' command:

 1. Open the command prompt.

 2. cd to 'bin' folder, where JDK is installed.

 3. Issue 'jps' command.

Example:

cd C:\Program Files\Java\jdk1.8.0_181\bin jps


When the above command was issued, the following was the output:

Fig: 'jps' command displaying all Java processes running on a windows machine.

The red color highlight in the above figure indicates the process IDs of all Java processes running on this windows instance. From here, you can get hold of your application's process ID.

Note: Unlike the 'ps' command in Linux (the example is given above), you will not see all the Java process arguments. One shortcoming in this approach is 'jps' will show only the Java process's first command. You can see all the Java process arguments, only when the 'ps' command is issued.

Java (programming language) application Command (computing)

Opinions expressed by DZone contributors are their own.

Related

  • A Spring Boot App With Half the Startup Time
  • Improving Java Application Reliability with Dynatrace AI Engine
  • A Systematic Approach for Java Software Upgrades
  • Building a Simple RAG Application With Java and Quarkus

Partner Resources

ร—

Comments

The likes didn't load as expected. Please refresh the page and try again.

Let's be friends: