How to tell if a process is running?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to tell if a process is running?
# 15  
Old 10-28-2011
In which case the test would be if it returns nothing, restart your application...
# 16  
Old 10-28-2011
Strange, that reports an illegal option.
# 17  
Old 10-28-2011
I just tested with grep "ntp.pid -f" with success, what did you type and what is the output?
# 18  
Old 10-28-2011
Keeping fmxdbc running

Quote:
Originally Posted by AusS2000
That gives:

When running
Code:
  501 60992 60974   0   0:00.00 ??         0:00.00 (fmxdbc_listener)
  501 76383   273   0   0:55.56 ??         6:12.40 /Applications/FileMaker Pro 11 Advanced/Extensions/xDBC Support/fmxdbc_listener.bundle/Contents/MacOS/fmxdbc_listener -psn_0_126703822

When not running
Code:
  501 60992 60974   0   0:00.00 ??         0:00.00 (fmxdbc_listener)


I see what you're getting at. With careful parsing of the ps output, you could know if you have
a working listener running or not. I would probably work that out, especially with command
line trial and error, as suggested earlier. That's in addition to my suggestion below.

More importantly, though, a dead listener waiting on a script to check it, is a problem with robustness.
A noticeable amount of time could pass before the problem is automatically corrected, and users could
see failures.

As the listener failure was said to happen in a week or two under current load (if I remember correctly),
I would schedule a cron job nightly to kill *all* fmxdbc_listener processes, zombies or otherwise, and then
start a fresh one. The brief lapse in FileMaker service would be extremely limited and therefore more
likely go completely unnoticed.
# 19  
Old 10-28-2011
I agree with you but this "zombie" process to me not standard in the I way I see defunct procs ( It still has a parent...) therefor I would look to see what is the parent etc...
I agree with you but if you know there is an issue and you are likely to see it happen again, I would start by stopping on the processes that are running, kill what is left, then search for that UID with ipcs command and do some cleaning using ipcrm if needed, I had oracle issues solved that way...
# 20  
Old 10-29-2011
Quote:
Originally Posted by AusS2000
When I run the code (without redirect) with fmxdbc_listener running I get:

Code:
211   ??  S      2:23.14 ./fmxdbc_listener

If I run it without fmxdbc_listener running I get:

Code:
211   ??  Z      0:00.00 (fmxdbc_listener)

I guess the occurence of 'fmxdbc_listener' in both responses is what is confusing it.
Ok, so going back to this post, I assume the grep statement is comparing a string to the output and matching 'fmxdbc_listener' in both, hence the problem. Should I instead search for './fmxdbc_lister' which only occurs in the first example?

But if I do that do I have to escape the . and /?
# 21  
Old 10-29-2011
You do not need to escape those characters if you just use single quotes around the string.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command to get exact tomcat process I am running ignoring other java process

Team, I have multiple batchjobs running in VM, if I do ps -ef |grep java or tomcat I am getting multiple process list. How do I get my exact tomcat process running and that is unique? via shell script? (4 Replies)
Discussion started by: Ghanshyam Ratho
4 Replies

2. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (6 Replies)
Discussion started by: naveeng
6 Replies

3. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (1 Reply)
Discussion started by: naveeng
1 Replies

4. BSD

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (0 Replies)
Discussion started by: naveeng
0 Replies

5. UNIX for Dummies Questions & Answers

Need help in running a process

Hello All, We are running a process in unix box. This is how we will do 1.our process name is Runprojectprocess <ID> configuration 2.We will be running upto 500 id at once. So we are populating a text file as Runprojectprocess 1 configuration to Runprojectprocess 500 configuration 3.... (2 Replies)
Discussion started by: arunkumar_mca
2 Replies

6. UNIX for Dummies Questions & Answers

How a process can check if a particular process is running on different machine?

I have process1 running on one machine and generating some log file. Now another process which can be launched on any machine wants to know if process1 is running or not and also in case it is running it wants to stream the logs file generated by process1 on terminal from which process2 is... (2 Replies)
Discussion started by: saurabhnsit2001
2 Replies

7. UNIX for Dummies Questions & Answers

Running different process from current process?

I have been having some trouble trying to get some code working, so I was wondering...what system calls are required to execute a different program from an already running process? (1 Reply)
Discussion started by: Midwest Product
1 Replies

8. UNIX for Advanced & Expert Users

How to know process is running or not?

please suggest me a way to write c program that takes pattern of the process and returns true or false my case is i need to keep track of dhcpcd dhcpcd -d eth1 so i tried popen("ps -ef | grep dhcpcd | grep eth1 | wc -l", "r"); but pipe is storing 1 or 2 when not running and 2 or 3... (7 Replies)
Discussion started by: Gopi Krishna P
7 Replies

9. Shell Programming and Scripting

script to monitor process running on server and posting a mail if any process is dead

Hello all, I would be happy if any one could help me with a shell script that would determine all the processes running on a Unix server and post a mail if any of the process is not running or aborted. Thanks in advance Regards, pradeep kulkarni. :mad: (13 Replies)
Discussion started by: pradeepmacha
13 Replies

10. UNIX for Advanced & Expert Users

How to create a dummy process of a process already running?

Hi Everybody, I want to create a shell script named as say "jip" and it is runned. And i want that when i do ps + grep for the process than this jip should be shown as process. Infact there might be process with name jip which is already running. (3 Replies)
Discussion started by: shambhu
3 Replies
Login or Register to Ask a Question