Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Jsvc to start a java program that implements the Daemon interface. However when I issue the command

/usr/bin/jsvc -user walikha -home $JAVE_HOME -outfile out.file -errfile '$1'   Jooist.Server.jar Main

However the command silently executes and displays the prompt. How can I detect if the daemon is running? In the Java executable the init, start, stop and destroy functions just print to a log file using Log4J. The log file is not created and there is absolutely no indication that the service is running. Am I missing something, or have I left out something when configuring and installing Jsvc?

share|improve this question

3 Answers

Modify your command to include options "-outfile" and "-errfile" and provide your own path to the log files.

/usr/bin/jsvc -outfile app.out -errfile app.err -user walikha -home $JAVE_HOME -outfile out.file -errfile '$1'   Jooist.Server.jar Main
share|improve this answer

You can start a service as daemon by adding your application in /etc/init.d/ start/stop scripts.

share|improve this answer
Would that give the option of gracefully shutdown a java service ? – Muhammad Gelbana Jul 24 '12 at 18:16

Try the -debug switch and see what's going on. However, it looks like you've missed including commons-daemon-1.0.10.jar in your classpath.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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