Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mono-service.1 « man - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84c37fdd01910e49cabb4819f52da512f272e3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.\" 
.\" mono-service manual page.
.\" (C) 2005 Novell, Inc. 
.\" Author:
.\"   Miguel de Icaza (miguel@gnu.org)
.\"
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.TH Mono "mono-service"
.SH NAME
mono-service, mono-service2 \- Mono ServiceProcess host
.SH SYNOPSIS
.PP
.B mono-service [options] program.exe
.SH DESCRIPTION
The \fImono-service\fP is a host to run services built with the
ServiceProcess assembly.
.PP
Use \fImono-service\fP to run services that use the 1.0 assemblies and
use \fImono-service2\fP to run services that use the 2.0 assemblies.
.PP
Services can be paused by sending the SIGUSR1 signal to the process,
and execution can be resumed by sending the SIGUSR2 signal.   The
service can be cleanly shutdown by sending the SIGTERM signal to the
process. 
.PP
The following options can be used to control the service:
.TP
.I "-d:DIRECTORY"
Use this option to specify the working directory for the service.  The
default is the current directory. 
.TP
.I "-l:LOCKFILE"
Specifies the file to use for locking, the default is a filename
constructed in /tmp based on the name of the program that hosts the
service. 
.TP
.I "-m:MESSAGE"
Name to show in the syslog.
.TP
.I "-n:NAME"
Use this to specify the service to be launched (if the program
contains more than one service).   The default is to run the first
defined service.
.TP
.I "--debug"
Use this option to prevent mono-service from redirecting stdin and
stdout and prevent the program to be sent to the background.
Equivalent to --no-daemon
.TP
.I "--no-daemon"
Use this option to prevent mono-service from redirecting stdin and
stdout and prevent the program to be sent to the background.
Equivalent to --debug.
.SH CONTROL
You can control the service by sending signals to the process, you can
use the following commands:
.TP
Pausing service:
.nf
	kill -USR1 `cat <lock file>`
.fi
.TP
Resuming service:
.nf
	kill -USR2 `cat <lock file>`
.fi
.TP
Stopping the service:
.nf
	kill `cat <lock file>`
.fi
.SH EXAMPLES
Start the MyService.exe assembly, with a lock in /root/service-lock:
.nf

	mono-service -l:/root/service-lock MyService.exe

.fi
.SH DEBUGGING
Messages produced by the service are logged on syslog.
.SH MAILING LISTS
Visit http://lists.ximian.com/mailman/listinfo/mono-list for details.
.SH WEB SITE
Visit: http://www.mono-project.com for details
.SH SEE ALSO
.BR mono(1)
.PP
.BR N:System.ServiceProcess