2 .\" mono-service manual page.
3 .\" (C) 2005 Novell, Inc.
5 .\" Miguel de Icaza (miguel@gnu.org)
7 .de Sp \" Vertical space (when we can't use .PP)
13 mono-service, mono-service2 \- Mono ServiceProcess host
16 .B mono-service [options] program.exe
18 The \fImono-service\fP is a host to run services built with the
19 ServiceProcess assembly.
21 Use \fImono-service\fP to run services that use the 1.0 assemblies and
22 use \fImono-service2\fP to run services that use the 2.0 assemblies.
24 Services can be paused by sending the SIGUSR1 signal to the process,
25 and execution can be resumed by sending the SIGUSR2 signal. The
26 service can be cleanly shutdown by sending the SIGTERM signal to the
29 Mono programs started with mono-service run with the
31 variable set. This means that certain Mono features that depend on
32 it are not available to services.
34 The following options can be used to control the service:
37 Use this option to specify the working directory for the service. The
38 default is the current directory.
41 Specifies the file to use for locking, the default is a filename
42 constructed in /tmp based on the name of the program that hosts the
46 Name to show in the syslog.
49 Use this to specify the service to be launched (if the program
50 contains more than one service). The default is to run the first
54 Use this option to prevent mono-service from redirecting stdin and
55 stdout and prevent the program to be sent to the background.
56 Equivalent to --no-daemon
59 Use this option to prevent mono-service from redirecting stdin and
60 stdout and prevent the program to be sent to the background.
61 Equivalent to --debug.
63 You can control the service by sending signals to the process, you can
64 use the following commands:
68 kill -USR1 `cat <lock file>`
73 kill -USR2 `cat <lock file>`
78 kill `cat <lock file>`
81 Start the MyService.exe assembly, with a lock in /root/service-lock:
84 mono-service -l:/root/service-lock MyService.exe
88 Messages produced by the service are logged on syslog.
90 Visit http://lists.ximian.com/mailman/listinfo/mono-list for details.
92 Visit: http://www.mono-project.com for details
96 .BR N:System.ServiceProcess