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 have a standalone Java application which will run continuously post start-up (e.g. java com.<mycompany>.FooServer) on a Windows EC2 instance.

Currently I have started this from a command shell. How do I make sure that it runs on a re-boot, should I be wrapping this into a Windows service? What is the easiest way to handle start/stop of my standalone server?

share|improve this question
check out stackoverflow.com/questions/68113/… - Is this not a duplicate? – Michael Wiles Nov 28 '11 at 12:01

1 Answer

Create a .bat file to hold your Java command and create a Windows service using

sc create FooServerService binPath= C:\path\to\start.bat start= auto DisplayName= "My Foo Service"

share|improve this answer
Is the space between start= and auto correct? – Aaron Digulla Nov 28 '11 at 10:42
1  
Yes. Unfortunately, sc requires them. I have tested the above command. – adarshr Nov 28 '11 at 10:47

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.