Is it possible to run a ruby application as a Windows Service? I see that there is a related question which discusses running a Java Application as a Windows Service, how can you do this with a Ruby application?
|
|
Check out the following library: Win32Utils. You can create a simple service that you can start/stop/restart at your leisure. I'm currently using it to manage a Mongrel instance for a Windows hosted Rails app and it works flawlessly. You can also use this example as a method of enabling your Ruby application to act as a Windows service: Running as a Windows Service . Good luck. |
||
|
|
|
You can write (or download) a wrapper service. The wrapper can call the ruby.exe to execute your program. Same trick works for Java, VB, etc. |
||
|
|
|
|
You should be able to accomplish this in IronRuby since you would have the .NET framework behind you. |
||
|
|
|
|
When trying the Win32Utils one really need to studie the doc and look over the net before finding some simple working example. This seems to work today 2008-10-02: gem install win32-service bar.rbcreate the application/daemon
bar.rb is the service but we must create and register first! this can be done with sc create some_service but if we are going to use ruby and win32utils we should do aregister_bar.rb
Note, there is a space between c:\tmp\ bar.rb in 'c:\usr\ruby\bin\rubyw.exe -C c:\tmp\ bar.rb' Run
and watch c:test.log be filled with Service is running Thu Oct 02 22:06:47 +0200 2008 For the simple of have something to work with it is easier to remove the service register and create a new one instead of modifying a existing oneunregister_bar.rb
Credits to the people http://rubypane.blogspot.com/2008/05/windows-service-using-win32-service-and_29.html |
||||||||||
|
