Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
05-11-2012, 01:39 AM
|
#1
|
Member
Registered: Sep 2011
Posts: 646
Rep: 
|
Which is the java application pid?
Dear All,
I got a java application where I run it as a daemon using this yajsw tool. So when I run this command I get as below. Now I would like to know what is 3109 and 3132 is pointing to?
Code:
ps -ef | grep java
root 3109 1 0 Apr06 ? 00:04:35 /usr/java/jdk1.6.0_18/bin/java -Dwrapper.pidfile=/var/run/wrapper.commServer.pid -Dwrapper.service=true -Dwrapper.visible=false -jar /usr/local/yajsw-beta-10.2/wrapper.jar -c /usr/local/yajsw-beta-10.2/conf/wrapper.conf
root 3132 3109 0 Apr06 ? 00:25:26 /usr/java/jdk1.6.0_18/bin/java -classpath /usr/local/yajsw-beta-10.2/./wrapperApp.jar:/usr/local -Xrs -Dwrapper.service=true -Dwrapper.console.visible=false -Dwrapper.visible=false -Dwrapper.pidfile=/var/run/wrapper.commServer.pid -Dwrapper.config=/usr/local/yajsw-beta-10.2/conf/wrapper.conf -Dwrapper.port=15003 -Dwrapper.key=4276015160565963367 -Dwrapper.teeName=4276015160565963367$1333699547154 -Dwrapper.tmpPath=/tmp org.rzo.yajsw.app.WrapperJVMMain
root 23986 23945 0 16:53 pts/0 00:00:00 grep java
pidof java
3132 3109
|
|
|
05-11-2012, 01:51 AM
|
#2
|
LQ Guru
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
|
Hi,
The first number is the process ID (PID) and the second one the parent process ID (PPID). So when you started '3109' (apparently a wrapper) it got started by the init process (PPID 1) and launched a child process with ID 3112. The second process has the first one as parent.
Kind regards,
Eric
|
|
|
05-11-2012, 01:53 AM
|
#3
|
Member
Registered: Apr 2012
Location: /root
Distribution: Ubuntu, Redhat, Fedora, CentOS
Posts: 190
Rep:
|
i guess, 3109 is process of java, which parent process is (INIT) PID is 1. and 3132 is a child process of java PID 3109.
|
|
|
05-11-2012, 01:58 AM
|
#4
|
Member
Registered: Sep 2011
Posts: 646
Original Poster
Rep: 
|
Dear Eric,
What is the reason to have two pid actually? So If I would setup a monit to monitor my java process what do you suggest then which pid to take on ?
|
|
|
05-11-2012, 02:17 AM
|
#5
|
LQ Guru
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
|
Hi,
I'm not much into Java but here's some explanation on Java wrappers and why they're used. On the other hand you can also have TCP wrappers, which are explained a bit on this page. Hope this clears it up a bit.
Kind regards,
Eric
|
|
|
05-11-2012, 03:36 AM
|
#6
|
Member
Registered: Sep 2011
Posts: 646
Original Poster
Rep: 
|
Dear Eric,
In order to find out the status of the my java app which pid should I focus the parent or child? Thank you.
|
|
|
05-11-2012, 04:48 AM
|
#7
|
Member
Registered: Apr 2012
Location: /root
Distribution: Ubuntu, Redhat, Fedora, CentOS
Posts: 190
Rep:
|
i guess, it is normal behavior of the process , like if a running process start a new child process than that running process become parent process of child process. child and parent concepts are most common into thread process and also JAVA is multi-thread process.
|
|
|
05-11-2012, 09:55 AM
|
#8
|
Member
Registered: Sep 2011
Posts: 646
Original Poster
Rep: 
|
Dear Amit,
Thank you I will look into for further details.
|
|
|
All times are GMT -5. The time now is 01:28 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|