Mongrel as a Windows Service (not running Rails)

Hi, I hope you can help me with this. I have implemented a simple web
app on top of Mongrel and now I need to run it as a Windows Service. I
explored the mongrel_service gem and it looks like I will need an
executable (.exe) for this. Is there a way to use the existing
mongrel_service.exe to run my own script?

Thanks in advance,

Daniel

On Thu, Feb 19, 2009 at 3:24 PM, Daniel M. [email protected]
wrote:

Hi, I hope you can help me with this. I have implemented a simple web
app on top of Mongrel and now I need to run it as a Windows Service. I
explored the mongrel_service gem and it looks like I will need an
executable (.exe) for this. Is there a way to use the existing
mongrel_service.exe to run my own script?

mongrel_service gem was implemented to work with Rails.

Inside the gem there is mongrel_service.exe (inside bin), but that
only works with mongrel_rails script.

While your user case is a valid one, was not considered when developed.

You have a few options for your situation:

  1. check mongrel_service FreeBASIC code (which is the actual service)
    and implement your own variation.
    (willl take you some time)

  2. look into options like svrany or firedaemon, which let you run
    console applications as services.

Thanks in advance,

Hope this helps,

Luis L.
AREA 17

Perfection in design is achieved not when there is nothing more to add,
but rather when there is nothing more to take away.
Antoine de Saint-Exupéry

You have a few options for your situation:

  1. check mongrel_service FreeBASIC code (which is the actual service)
    and implement your own variation.
    (willl take you some time)

  2. look into options like svrany or firedaemon, which let you run
    console applications as services.

  1. GitHub - raggi/ruby_service_helper: A simple wrapper around win32-service to help with writing simple ruby based services, and I recommend you
    also use GitHub - raggi/rubyw_helper: A handy helper for when stdio may be closed (e.g. under rubyw.exe on win32), these work with win32-
    service-0.6.1. If you’re on a mingw build of ruby, you may need to gem
    install --platform=x86-mswin32-60 win32-service first, as gcc can’t
    deal with SEH.

The above provides something that’s relatively easy to prototype, but
also still mostly debuggable:

http://pastie.textmate.org/private/rsnvpy5eogjhicawttjgra (untested)

HTH

Thanks guys for your suggestions. I will give them both a shot.

Daniel