1just-man-pages/condor_on(1) General Commands Manualjust-man-pages/condor_on(1)
2
3
4
6 condor_on Start up HTCondor daemons
7
9 condor_on [ -help -version ]
10
11 condor_on [ -debug ] [ -pool centralmanagerhostname[:portnumber] ] [
12 -name hostname hostname -addr <a.b.c.d:port> <a.b.c.d:port> -constraint
13 expression -all ] [ -daemon daemonname ]
14
16 condor_on starts up a set of the HTCondor daemons on a set of machines.
17 This command assumes that the condor_master is already running on the
18 machine. If this is not the case, condor_on will fail complaining that
19 it cannot find the address of the master. The command condor_on with no
20 arguments or with the -daemon master option will tell the condor_master
21 to start up the HTCondor daemons specified in the configuration vari‐
22 able DAEMON_LIST . If a daemon other than the condor_master is speci‐
23 fied with the -daemon option, condor_on starts up only that daemon.
24
25 This command cannot be used to start up the condor_master daemon.
26
27 For security reasons of authentication and authorization, this command
28 requires ADMINISTRATOR level of access.
29
31 -help
32
33 Display usage information
34
35
36
37 -version
38
39 Display version information
40
41
42
43 -debug
44
45 Causes debugging information to be sent to stderr , based on the
46 value of the configuration variable TOOL_DEBUG .
47
48
49
50 -pool centralmanagerhostname[:portnumber]
51
52 Specify a pool by giving the central manager's host name and an
53 optional port number
54
55
56
57 -name hostname
58
59 Send the command to a machine identified by hostname
60
61
62
63 hostname
64
65 Send the command to a machine identified by hostname
66
67
68
69 -addr <a.b.c.d:port>
70
71 Send the command to a machine's master located at <a.b.c.d:port>
72
73
74
75 <a.b.c.d:port>
76
77 Send the command to a machine located at <a.b.c.d:port>
78
79
80
81 -constraint expression
82
83 Apply this command only to machines matching the given ClassAd
84 expression
85
86
87
88 -all
89
90 Send the command to all machines in the pool
91
92
93
94 -daemon daemonname
95
96 Send the command to the named daemon. Without this option, the com‐
97 mand is sent to the condor_master daemon.
98
99
100
102 condor_on will exit with a status value of 0 (zero) upon success, and
103 it will exit with the value 1 (one) upon failure.
104
106 To begin running all daemons (other than condor_master ) given in the
107 configuration variable DAEMON_LIST on the local host:
108
109 % condor_on
110
111 To start up only the condor_negotiator on two named machines:
112
113 % condor_on robin cardinal -daemon negotiator
114
115 To start up only a daemon within a pool of machines other than the
116 local pool, use the -pool option. The argument is the name of the cen‐
117 tral manager for the pool. Note that one or more machines within the
118 pool must be specified as the targets for the command. This command
119 starts up only the condor_schedd daemon on the single machine named
120 cae17 within the pool of machines that has condor.cae.wisc.edu as its
121 central manager:
122
123 % condor_on -pool condor.cae.wisc.edu -name cae17 -daemon schedd
124
126 Center for High Throughput Computing, University of Wisconsin-Madison
127
129 Copyright (C) 1990-2018 Center for High Throughput Computing, Computer
130 Sciences Department, University of Wisconsin-Madison, Madison, WI. All
131 Rights Reserved. Licensed under the Apache License, Version 2.0.
132
133
134
135 date just-man-pages/condor_on(1)