I ran a mono-service with

mono-service2 -l:lockfile process.exe

It started the service and it was all fine but I had to change something in source. So I recompiled and deployed it. I killed the service by running

kill -9 <pid>

Now I tried to run the service again. But it doesn't start at all. What is the problem here ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

When mono starts a service, it creates a lock in /tmp based on the program name or given parameter. You should stop the service by sending the SIGTERM not SIGKILL signal - if you did so, the lock would be deleted. Now you should manually delete the lock. Read details here.

link|improve this answer
But I tried with SIGTERM and couldn't terminate it. – King Jan 27 at 3:45
the docs say kill `cat <lock file>` – IanNorton Jan 27 at 7:08
@lanNorton that dint work too. – King Jan 27 at 8:57
@King Tell us more details. Was the pid in lock file? Did the program start after you have removed the lock file? (Cause the former problem was that the program does not start). – konrad.kruczynski Jan 28 at 9:59
It started after removing the lock file. But isn't it supposed to work when you kill it by SIGTERM. It dint shutdown the service. Killing by SIGKILL and then deleting the file and then starting the service looks meaningless. Deploying such applications, how can one do this flawlessly rather deleting a file and starting again. – King Jan 28 at 12:39
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.