Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Play Framework 2.0 application that I want to deploy (production) on Windows Server 2008 R2. How do I get it to run as a service?

share|improve this question

3 Answers

This worked for me on Windows 7:

  1. Create folder C:\my_app
  2. Go to your Play! app folder in command line and type

    play dist

  3. Copy generated "something-SNAPSHOT" folder to C:\my_app
  4. Download YAJSW and extract to C:\my_app
  5. In C:\my_app\something-SNAPSHOT\ make a new file start.bat and fill it with command like this:

    java -cp "C:\my_app\something-SNAPSHOT\lib*" play.core.server.NettyServer

  6. Save it and launch start.bat. Your play app must start and work as usual. Take a look at server's PID. You will use it in the next step.

  7. Now using command prompt go to C:\my_app\yajsw\bat and type

    genConfig.bat < PID from previous step >

  8. You generated C:\my_app\yajsw\conf\wrapper.conf. Edit this file and change these params like so:

    wrapper.ntservice.name=My App Name
    wrapper.ntservice.displayname=My App Name


    Save file.

  9. In C:\my_app\yajsw\bat launch

    runConsole.bat

    If app starts go further.

  10. To install service launch

    installService.bat

  11. To start service launch

    startService.bat

Now you can see your "My App Name" service in Windows services. To stop service you can use stopService.bat. To uninstall it uninstallService.bat.

share|improve this answer
Clear info, like it, additionally I suggest to rename RUNNING_PID file to something else to prevent startup problems after sudden server restart, (here's more informations in other answer) – biesior Feb 27 at 5:59

You should take a look at this question: Run Java application as a service

You'll have to use the play dist command and then adapt the start script in order to run on Windows.

share|improve this answer

Just a small clarification to step 10. in Mikhail's answer:

Make sure you Run as administrator when you open your DOS command window. I could not run the installService.bat script without being administrator when I was doing my deployment.

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.