Skip to content

Latest commit

 

History

History
67 lines (48 loc) · 1.47 KB

ruby.md

File metadata and controls

67 lines (48 loc) · 1.47 KB

Ruby Examples

Inside the ruby directory you can find a simple web server example and a batch file that is used as a service wrapper.

Put svcbatch.exe into that directory and create the service by typing


> rbhttpserver.bat create

... you should see something like below ...

[SC] CreateService SUCCESS
[SC] ChangeServiceConfig SUCCESS

After that, start the service by typing


> sc start rbhttpserver

  SC should display something like this ...

SERVICE_NAME: rbhttpserver
        TYPE               : 10  WIN32_OWN_PROCESS
        STATE              : 2  START_PENDING
                                (NOT_STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
        WIN32_EXIT_CODE    : 0  (0x0)
        SERVICE_EXIT_CODE  : 0  (0x0)
        CHECKPOINT         : 0x1
        WAIT_HINT          : 0x1388
        PID                : 2368
        FLAGS              :

Get response from our web server by typing ...


# curl -v http://localhost:8088

... This is typical output

*   Trying ::1:8088...
* Connected to localhost (::1) port 8088 (#0)
> GET / HTTP/1.1
> Host: localhost:8088
> User-Agent: curl/7.73.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Server: WEBrick/1.6.0 (Ruby/2.7.2/2020-10-01)
< Date: Tue, 08 Dec 2020 15:06:58 GMT
< Content-Length: 67
< Connection: Keep-Alive
<
* Connection #0 to host localhost left intact
Service name=rbhttpserver uuid=01234567-89ab-cdef-0123-456789abcdef