The task manager sees multiple Java.exe, modifies the name of the process, and manages the process better

Source: Internet
Author: User

1.web Server

When multiple tomcat is started on the same server, we see multiple java.exe in Task Manager, and how to modify the process name when we need to monitor a tomcat without distinguishing between the Tomcat process.

Open the Tomcat_home\bin\setclasspath.bat file and locate the set _runjava= "%jre_home%\bin\java" line.

Comment out the line (change to REM set _runjava= "%jre_home%\bin\java")

Then add the following two lines below the line and save:

Copy "%java_home%\bin\java.exe" "%java_home%\bin\java_liaotiangongju.exe"
Set _runjava= "%java_home%\bin\java_liaotiangongju"

Note: Liaotangongju is the name of the process you want to see (that is, the image name in Task Manager)

2.java batch process,. sh or. bat

For example: Open the Rename bat file, as follows:

@echo off
Copy "%java_home%\bin\java.exe" "%java_home%\bin\java_liaotiangongju.exe"
Start "Chat Business handler" "%java_home%\bin\java_liaotiangongju.exe"-classpath./; /serviceconsolelib/yyc.jar; Serviceconsole. Startgo

View process: Process name is Java_liaotiangongju.exe instead of Java.exe.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.