java application as daemon

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NagarajanS
    New Member
    • Dec 2006
    • 39

    #1

    java application as daemon

    Hi,
    I have a java application which will be running in Unix server.I want run this application as a daemon in that server.How i can do that?And another thing is how can i stop that daemon?

    Regards,
    Nags
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by NagarajanS
    Hi,
    I have a java application which will be running in Unix server.I want run this application as a daemon in that server.How i can do that?And another thing is how can i stop that daemon?

    Regards,
    Nags
    This is not a Java question, simply run the jvm (the 'java' command) using e.g.
    nohup (check your man pages). You can kill it using the kill command.

    kind regards,

    Jos

    Comment

    Working...