How can I find out the pid of a running equinox instance, is there a pid file?

Just execute the following command from CLI.

Up vote -2 down vote favorite share g+ share fb share tw.

UPDATE: to make it clear, I have a bunch of instances running, and they are configured roughly the same, so any user only looking for equinox will not know which instance is which java linux process osgi equinox link|improve this question edited Aug 18 '11 at 8:53 asked Aug 18 '11 at 8:23Mauli2,53732560 39% accept rate.

If so, for multiple instances you can recognize the one you are interested in basis on port to which it is bound: sudo netstat -npa |grep equinox.

This doesn't help me because there are several instances running, and a user doesn't see at a glance, which instance is which. – Mauli Aug 18 '11 at 8:56 please take a look at my edits – Piotrek De Aug 18 '11 at 9:15 it is a good idea, but I'd rather have a pid file to which I can point the user. – Mauli Aug 18 '11 at 10:06 So how do you start multiple instances on the same machine?

If you use different start scripts, you should use 'ps aux' because it contains whole name of command that was executed. If you use the same script, and magically equinox detects to which port bind the new instance, you should use 'netstat'. I do not see any other option to do so.

– Piotrek De Aug 18 '11 at 10:14 It is not so much that I for myself can't find out which instance is which, it is a matter that the actual administrator knows at once which instance he has to kill in case it is not working anymore. For other programs we run, we have a pid file for each one, only not for equinox. So if there is a way to tell equinox to put its/a pid file in the same directory I'm happy.

– Mauli Aug 18 '11 at 10:21.

No, Equinox does not create a PID file or report its PID. You could write a bundle that does this for you, but be aware that there is no standard way for a Java program to retrieve its PID (because some target operating systems don't even have the concept of "PID"). See this post for some ideas.

$ pidof equinox From the man page: PIDOF(8) Linux System Administrator's Manual PIDOF(8) NAME pidof -- find the process ID of a running program. SYNOPSIS pidof -s -c -x -o omitpid -o omitpid.. program program.. DESCRIPTION Pidof finds the process id's (pids) of the named programs. It prints those id's on the standard output.

This program is on some systems used in run-level change scripts, especially when the system has a System-V like rc structure. In that case these scripts are located in /etc/rc?. D, where?

Is the runlevel. If the system has a start-stop- daemon (8) program that should be used instead. OPTIONS -s Single shot - this instructs the program to only return one pid.

-c Only return process ids that are running with the same root directory. This option is ignored for non-root users, as they will be unable to check the current root directory of processes they do not own. -x Scripts too - this causes the program to also return process id's of shells running the named scripts.

-o omitpid Tells pidof to omit processes with that process id. The special pid %PPID can be used to name the parent process of the pidof program, in other words the calling shell or shell script. EXIT STATUS 0 At least one program was found with the requested name.

1 No program was found with the requested name.

This doesn't help me, 1. ) pidof is not installed, 2. ) I don't know which process is which.

– Mauli Aug 18 '11 at 8:52.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions