Daemon process


 
Thread Tools Search this Thread
Top Forums Programming Daemon process
# 1  
Old 09-26-2013
Daemon process

I wish to make a process run in the background, but only one instance of it, and not many,
so when the program is loaded, it has to check whether another instance of the same
program is running and if so to exit. How do I do this ?
# 2  
Old 09-26-2013
Quote:
Originally Posted by sundaresh
I wish to make a process run in the background, but only one instance of it, and not many,
so when the program is loaded, it has to check whether another instance of the same
program is running and if so to exit. How do I do this ?
If your system supports the semget() and semop() calls that are included in one of the optional features in the POSIX standards, you can use semget() to get access to a semaphore with a key that is known to your daemon. After getting the semaphore ID you can use semop() with an array of two operations at the start of your program. These operations are:
Code:
sem_num   sem_op   sem_flg
=======   ======   =======
   0         0     IPC_NOWAIT
   0         1     SEM_UNDO

If the semop() call fails with EAGAIN, another daemon is already running and owns the semaphore. If the semop() call succeeds, this daemon owns the semaphore until it terminates. (It doesn't matter if this daemon terminates due to receipt of an uncaught signal or terminates normally by calling exit, the SEM_UNDO flag will release ownership of the semaphore when the daemon terminates.)

If you don't have access to a similar set of semaphore operations, a common approach is to atomically create (with open flags O_CREAT | O_EXCL) a lock file and write the PID of the daemon that created the lock into the lock file. The daemon should then remove the lock file before it exits. (If the daemon is killed before it can remove the lock file, another daemon won't be able to start until you manually remove the lock file.)
This User Gave Thanks to Don Cragun For This Post:
# 3  
Old 09-26-2013
Hi Sundaresh,
I am not sure exactly if this helps...but let me give an idea...
I assume you have a script which you wanted to run on background, only one instance of it.

# inside the script, you will add these few lines to check if the script is already running
Code:
COUNT=`ps -ef SCRIPT_NAME | wc -l`
if [ "$COUNT" -eq 0 ]
then
  # run the script
 /full/path/SCRIPT_NAME &
else
  echo "Already an instance of the script is running"
fi
exit 0


Last edited by Franklin52; 09-26-2013 at 03:11 AM.. Reason: Please use code tags
# 4  
Old 09-26-2013
A correction
Code:
COUNT=`ps -ef | grep -wc '[S]CRIPT_NAME'`

or
Code:
COUNT=`pgrep 'SCRIPT_NAME'
| wc -l`

A comment for Don's pidfile proposal:
a standard pathname is /var/run/SCRIPT_NAME.pid
# 5  
Old 09-26-2013
Thanks Don, my daemon does use shared memory, but the semaphore seems to be the right way.
I did'nt think of it.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

run this script as a daemon process

Hi, HI , I have a simple script that moves files from one folder to another folder, I have already done the open-ssh server settings and the script is working fine and is able to transfer the files from one folder to another but right now I myself execute this script by using my creditianls to... (3 Replies)
Discussion started by: nks342
3 Replies

2. UNIX for Advanced & Expert Users

Needs help in launching a console application with the help of daemon process

Hi All, I am facing problem in launching a application with the help of a daemon process. Actually the application is based on command line that reads various commands for controlling the application from the console and accordingly executes those commands. The application always interact with... (3 Replies)
Discussion started by: gopallinux
3 Replies

3. Shell Programming and Scripting

Diff between Bg and daemon process

Dear Unix Gurus, Plz provide major diff between background process and daemon process. Is it control available for daemon process?. (3 Replies)
Discussion started by: kkl
3 Replies

4. Programming

How to find if a process a daemon ?

I have a scenario where I need to find if a process is a daemon process or not. This check needs to be done from within the process. I know there are no direct API's to do so. I have explored these options. 1. ctermid() - this can be unsuccessful as per the man pages 2. int devtty; if ((devtty... (7 Replies)
Discussion started by: vino
7 Replies

5. UNIX for Dummies Questions & Answers

How to write Pro*C daemon process using multithreading?

Hello, I am new to this forum and this is my first post here... I have never worked on either Pro*C or Multithreading..Now, i have to write a Pro*C, Multithreading daemon process.. I dont know where to start.. Can anybody help me with examples? 1. need to write a Pro*C multithreading... (0 Replies)
Discussion started by: kachiraju
0 Replies

6. Shell Programming and Scripting

How to starting process as daemon using ssh command?

Hello, I need to run a command on remote Linux using the ssh command from my local machine. I am able to execute the command on remote machine using ssh but it's behaving strangely. The command is supposed to start a daemon process on remote linux box and the control should return back to me... (5 Replies)
Discussion started by: nitinshukla
5 Replies

7. Linux

daemon process

how i will write the daemon process,if any body have sample daemon process send me. (1 Reply)
Discussion started by: suresh_rupineni
1 Replies

8. UNIX for Advanced & Expert Users

zombie daemon process!!

My daemon process is the child of init and init has the responsibility to remove it, once it turns zombie. But I want to ask why the daemon process which is child of init turns zombie in the first place. What measures I have to take to avoid this? rish (1 Reply)
Discussion started by: rish2005
1 Replies

9. Programming

What is a daemon process?

This is gonna seem really silly to almost evryone here - but I need to know : what is a daemon process? Thanks (6 Replies)
Discussion started by: Kanu77
6 Replies

10. Programming

Daemon process

Hi, I have to write a daemon process, which performs certain operations in the background. Now since it performs operations in the background, it should not display anything to the standard output. The problem is that it still displays, text on standard output. Can anyone tell me (it is... (2 Replies)
Discussion started by: s_chordia
2 Replies
Login or Register to Ask a Question