JVM Process Name


 
Thread Tools Search this Thread
Operating Systems AIX JVM Process Name
# 1  
Old 02-08-2016
JVM Process Name

Hi -

In AIX, how do I find the Java Virtual Machine Process Name running on a particular machine?

I tried
Code:
ps -ef | grep java

but it does not return a process name.

Please help.
# 2  
Old 02-08-2016
then you have to explain what you mean with "Java Virtual Machine Process Name", because the command above does exactly, what you asked for.
# 3  
Old 02-09-2016
The command returns
Code:
../jre/bin/java -Djetty.home=.. -Djetty.port=xxxx -Djetty.ssl.port=yyyy -Xms100m -Xmx128m -cp ../lib/startAlt.jar org.mortbay.start.Main jettyBrowser.xml

Surely, the JVM process name is not called
Quote:
java
. That's what I meant by
Code:
ps -ef | grep java

not returning a process name.
# 4  
Old 02-09-2016
how should it be "called" from your point of view? and now I have one more question - what do you mean under "called" in this sentence?

I can read your sentence
Quote:
Surely, the JVM process name is not called
with at least 2 completely different meanings. If you say to me, what you suppose to find, I may be help you to find it.
# 5  
Old 02-09-2016
Hi,

how agent.kgb already said, it is not clear what are you looking for.

I guess You mean the output from the ps command. Have You tried ps -e | grep java or ps -eo comm,args | grep java?

Regards
This User Gave Thanks to -=XrAy=- For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

JVM Memory

Hi all, I am starting a JVM in unix and when I use ps command on the pid of process starting JVM the output is something like this :- java -Xms32M -Xmx64M -Xmx128M I need to know what would be the value of Xmx in this case. And how to check that this value be picked while starting JVM... (3 Replies)
Discussion started by: Raj999
3 Replies

2. Shell Programming and Scripting

What's my JVM bitness?

/apps/wls/bea10/jdk160_05/bin/java -d64 -version execve(): No such file or directory Error trying to exec /apps/wls/bea10/jdk160_05/bin/sparcv9/java. Check if file exists and permissions are set correctly. Failed to start a 64-bit JVM process from a 32-bit JVM. Verify all necessary J2SE... (8 Replies)
Discussion started by: mohtashims
8 Replies

3. Web Development

need help about jvm

hi all i want to install apache and tomcat in unix solaris 10 so i need to konw about heap and jvm memory architecture in jdk version 4 and 5 and 6 i want one help me i searched alot and i can't find something helo me (1 Reply)
Discussion started by: maxim42
1 Replies

4. AIX

JVM Invocation in AIX 6.1

Hi all, I'm trying to do JVM invocation from C++ in AIX 6.1. So inorder to do that, i'm loading libjvm.a. When i load the libjvm.a from the path where jre is installed (i.e /usr/java5/jre/bin/classic), it loads correctly and the program works correctly. But according to my requirement, the... (0 Replies)
Discussion started by: d_ccc
0 Replies

5. AIX

AIX JVM -32 or 64?

Friends, Can any one tell me what command should be used to check whether the JVM in AIX is 32 bit or 64 bit? Thanks, Govindh (2 Replies)
Discussion started by: Govindh.v
2 Replies

6. AIX

JVM Setting

What should be the idle JVM setting for the LPAR having 16 GB of memory? Currently the JVM setting is set to -Xms1024M -Xmx10240M (1 Reply)
Discussion started by: aajmani
1 Replies

7. UNIX for Advanced & Expert Users

inside the JVM

Hi, does anyone know how to find out what's happening inside a JVM on a unix system? Like what processes are running, which ports, memory usage etc. I'm using AIX 5.2 (1 Reply)
Discussion started by: rein
1 Replies

8. UNIX for Dummies Questions & Answers

Instaling JVM

Hi Everyone I`ve just started with unix can some please help me execute this command via webmin on avirtual server or how do you execute such .bin file this is the error ./j2sdk-1_3_1_15-linux-i586.bin: not found > ls -l total 69124 -rw------- 1 root wheel 8380 May 15 18:01... (2 Replies)
Discussion started by: J.Carlos MC05
2 Replies

9. Filesystems, Disks and Memory

heap size for JVM!

Hi all, Thanks 'thehoghunter' and 'hugo' for the comments! I've to increase the size of the heap size for AIX 4.3.3. Now what's the command that I've and also is it something similar to growing the file system in Solaris (growfs) (1 Reply)
Discussion started by: i2admin
1 Replies
Login or Register to Ask a Question