How to give process name for a java application in ubuntu -
this question has answer here:
i running 2 java
application in ubuntu
,i googled this,but not getting how give unique process name each java application.i running applications jar files (java -jar app.jar
).but when see process using shell command top .
it showing java,not applications name.any regarding this.
you can try ps -aef | grep java
terminal. list running java commands, can deduce application names looking @ command parameters.
Comments
Post a Comment