Document the natgw flag and how this changes the output of "ctdb
[metze/ctdb/wip.git] / doc / ctdb.1.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
3 <refentry id="ctdb.1">
4
5 <refmeta>
6         <refentrytitle>ctdb</refentrytitle>
7         <manvolnum>1</manvolnum>
8 </refmeta>
9
10
11 <refnamediv>
12         <refname>ctdb</refname>
13         <refpurpose>clustered tdb database management utility</refpurpose>
14 </refnamediv>
15
16 <refsynopsisdiv>
17         <cmdsynopsis>
18                 <command>ctdb [ OPTIONS ] COMMAND ...</command>
19         </cmdsynopsis>
20         
21         <cmdsynopsis>
22                 <command>ctdb</command>
23                 <arg choice="opt">-n &lt;node&gt;</arg>
24                 <arg choice="opt">-Y</arg>
25                 <arg choice="opt">-t &lt;timeout&gt;</arg>
26                 <arg choice="opt">-T &lt;timelimit&gt;</arg>
27                 <arg choice="opt">-? --help</arg>
28                 <arg choice="opt">--usage</arg>
29                 <arg choice="opt">-d --debug=&lt;INTEGER&gt;</arg>
30                 <arg choice="opt">--socket=&lt;filename&gt;</arg>
31         </cmdsynopsis>
32         
33 </refsynopsisdiv>
34
35   <refsect1><title>DESCRIPTION</title>
36     <para>
37       ctdb is a utility to view and manage a ctdb cluster.
38     </para>
39   </refsect1>
40
41
42   <refsect1>
43     <title>OPTIONS</title>
44
45     <variablelist>
46       <varlistentry><term>-n &lt;pnn&gt;</term>
47         <listitem>
48           <para>
49             This specifies the physical node number on which to execute the 
50             command. Default is to run the command on the deamon running on 
51             the local host.
52           </para>
53           <para>
54             The physical node number is an integer that describes the node in the
55             cluster. The first node has physical node number 0.
56           </para>
57         </listitem>
58       </varlistentry>
59
60       <varlistentry><term>-Y</term>
61         <listitem>
62           <para>
63             Produce output in machine readable form for easier parsing by scripts. Not all commands support this option.
64           </para>
65         </listitem>
66       </varlistentry>
67
68       <varlistentry><term>-t &lt;timeout&gt;</term>
69         <listitem>
70           <para>
71             How long should ctdb wait for the local ctdb daemon to respond to a command before timing out. Default is 3 seconds.
72           </para>
73         </listitem>
74       </varlistentry>
75
76       <varlistentry><term>-T &lt;timelimit&gt;</term>
77         <listitem>
78           <para>
79             A limit on how long the ctdb command will run for before it will
80             be aborted. When this timelimit has been exceeded the ctdb command will
81             terminate.
82           </para>
83         </listitem>
84       </varlistentry>
85
86       <varlistentry><term>-? --help</term>
87         <listitem>
88           <para>
89             Print some help text to the screen.
90           </para>
91         </listitem>
92       </varlistentry>
93
94       <varlistentry><term>--usage</term>
95         <listitem>
96           <para>
97             Print useage information to the screen.
98           </para>
99         </listitem>
100       </varlistentry>
101
102       <varlistentry><term>-d --debug=&lt;debuglevel&gt;</term>
103         <listitem>
104           <para>
105             Change the debug level for the command. Default is 0.
106           </para>
107         </listitem>
108       </varlistentry>
109
110       <varlistentry><term>--socket=&lt;filename&gt;</term>
111         <listitem>
112           <para>
113             Specify the socketname to use when connecting to the local ctdb 
114             daemon. The default is /tmp/ctdb.socket .
115           </para>
116           <para>
117             You only need to specify this parameter if you run multiple ctdb 
118             daemons on the same physical host and thus can not use the default
119             name for the domain socket.
120           </para>
121         </listitem>
122       </varlistentry>
123
124     </variablelist>
125   </refsect1>
126
127
128   <refsect1><title>Administrative Commands</title>
129     <para>
130       These are commands used to monitor and administrate a CTDB cluster.
131     </para>
132
133     <refsect2><title>pnn</title>
134       <para>
135         This command displays the pnn of the current node.
136       </para>
137     </refsect2>
138
139     <refsect2><title>status</title>
140       <para>
141         This command shows the current status of the ctdb node.
142       </para>
143
144       <refsect3><title>node status</title>
145         <para>
146           Node status reflects the current status of the node. There are five possible states:
147         </para>
148         <para>
149           OK - This node is fully functional.
150         </para>
151         <para>
152           DISCONNECTED - This node could not be connected through the network and is currently not participating in the cluster. If there is a public IP address associated with this node it should have been taken over by a different node. No services are running on this node.
153         </para>
154         <para>
155           DISABLED - This node has been administratively disabled. This node is still functional and participates in the CTDB cluster but its IP addresses have been taken over by a different node and no services are currently being hosted.
156         </para>
157         <para>
158           UNHEALTHY - A service provided by this node is malfunctioning and should be investigated. The CTDB daemon itself is operational and participates in the cluster. Its public IP address has been taken over by a different node and no services are currnetly being hosted. All unhealthy nodes should be investigated and require an administrative action to rectify.
159         </para>
160         <para>
161           BANNED - This node failed too many recovery attempts and has been banned from participating in the cluster for a period of RecoveryBanPeriod seconds. Any public IP address has been taken over by other nodes. This node does not provide any services. All banned nodes should be investigated and require an administrative action to rectify. This node does not perticipate in the CTDB cluster but can still be communicated with. I.e. ctdb commands can be sent to it.
162         </para>
163         <para>
164       STOPPED - A node that is stopped does not host any public ip addresses,
165       nor is it part of the VNNMAP. A stopped node can not become LVSMASTER,
166       RECMASTER or NATGW.
167       This node does not perticipate in the CTDB cluster but can still be
168       communicated with. I.e. ctdb commands can be sent to it.
169         </para>
170       </refsect3>
171
172       <refsect3><title>generation</title>
173         <para>
174           The generation id is a number that indicates the current generation 
175           of a cluster instance. Each time a cluster goes through a 
176           reconfiguration or a recovery its generation id will be changed.
177           </para>
178           <para>
179           This number does not have any particular meaning other than to keep
180           track of when a cluster has gone through a recovery. It is a random
181           number that represents the current instance of a ctdb cluster
182           and its databases.
183           CTDBD uses this number internally to be able to tell when commands 
184           to operate on the cluster and the databases was issued in a different
185           generation of the cluster, to ensure that commands that operate
186           on the databases will not survive across a cluster database recovery.
187           After a recovery, all old outstanding commands will automatically
188           become invalid. 
189         </para>
190         <para>
191           Sometimes this number will be shown as "INVALID". This only means that
192           the ctdbd daemon has started but it has not yet merged with the cluster through a recovery.
193           All nodes start with generation "INVALID" and are not assigned a real
194           generation id until they have successfully been merged with a cluster
195           through a recovery.
196         </para>
197       </refsect3>
198
199       <refsect3><title>VNNMAP</title>
200         <para>
201           The list of Virtual Node Numbers. This is a list of all nodes that actively participates in the cluster and that share the workload of hosting the Clustered TDB database records.
202           Only nodes that are participating in the vnnmap can become lmaster or dmaster for a database record.
203         </para>
204       </refsect3>
205
206       <refsect3><title>Recovery mode</title>
207         <para>
208           This is the current recovery mode of the cluster. There are two possible modes:
209         </para>
210         <para>
211           NORMAL - The cluster is fully operational.
212         </para>
213         <para>
214           RECOVERY - The cluster databases have all been frozen, pausing all services while the cluster awaits a recovery process to complete. A recovery process should finish within seconds. If a cluster is stuck in the RECOVERY state this would indicate a cluster malfunction which needs to be investigated.
215         </para>
216         <para>
217         Once the recovery master detects an inconsistency, for example a node 
218         becomes disconnected/connected, the recovery daemon will trigger a 
219         cluster recovery process, where all databases are remerged across the
220         cluster. When this process starts, the recovery master will first
221         "freeze" all databases to prevent applications such as samba from 
222         accessing the databases and it will also mark the recovery mode as
223         RECOVERY.
224         </para>
225         <para>
226         When CTDBD starts up, it will start in RECOVERY mode.
227         Once the node has been merged into a cluster and all databases
228         have been recovered, the node mode will change into NORMAL mode
229         and the databases will be "thawed", allowing samba to access the
230         databases again.
231         </para>
232       </refsect3>
233
234       <refsect3><title>Recovery master</title>
235         <para>
236           This is the cluster node that is currently designated as the recovery master. This node is responsible of monitoring the consistency of the cluster and to perform the actual recovery process when reqired.
237         </para>
238         <para>
239         Only one node at a time can be the designated recovery master. Which
240         node is designated the recovery master is decided by an election
241         process in the recovery daemons running on each node.
242         </para>
243       </refsect3>
244
245       <para>
246         Example: ctdb status
247       </para>
248       <para>Example output:</para>
249       <screen format="linespecific">
250 Number of nodes:4
251 pnn:0 11.1.2.200       OK (THIS NODE)
252 pnn:1 11.1.2.201       OK
253 pnn:2 11.1.2.202       OK
254 pnn:3 11.1.2.203       OK
255 Generation:1362079228
256 Size:4
257 hash:0 lmaster:0
258 hash:1 lmaster:1
259 hash:2 lmaster:2
260 hash:3 lmaster:3
261 Recovery mode:NORMAL (0)
262 Recovery master:0
263       </screen>
264     </refsect2>
265
266     <refsect2><title>recmaster</title>
267       <para>
268         This command shows the pnn of the node which is currently the recmaster.
269       </para>
270     </refsect2>
271
272     <refsect2><title>uptime</title>
273       <para>
274         This command shows the uptime for the ctdb daemon. When the last recovery completed and how long the last recovery took. If the "duration" is shown as a negative number, this indicates that there is a recovery in progress and it started that many seconds ago.
275       </para>
276
277       <para>
278         Example: ctdb uptime
279       </para>
280       <para>Example output:</para>
281       <screen format="linespecific">
282 Current time of node  : Tue Mar 24 18:27:54 2009
283 Ctdbd start time      : (000 00:00:05) Tue Mar 24 18:27:49 2009
284 Time of last recovery : (000 00:00:05) Tue Mar 24 18:27:49 2009
285 Duration of last recovery : 0.000000 seconds
286       </screen>
287     </refsect2>
288
289     <refsect2><title>listnodes</title>
290       <para>
291         This command shows lists the ip addresses of all the nodes in the cluster.
292       </para>
293
294       <para>
295         Example: ctdb listnodes
296       </para>
297       <para>Example output:</para>
298       <screen format="linespecific">
299 10.0.0.71
300 10.0.0.72
301 10.0.0.73
302 10.0.0.74
303       </screen>
304     </refsect2>
305
306     <refsect2><title>ping</title>
307       <para>
308         This command will "ping" all CTDB daemons in the cluster to verify that they are processing commands correctly.
309       </para>
310       <para>
311         Example: ctdb ping
312       </para>
313       <para>
314         Example output:
315       </para>
316       <screen format="linespecific">
317 response from 0 time=0.000054 sec  (3 clients)
318 response from 1 time=0.000144 sec  (2 clients)
319 response from 2 time=0.000105 sec  (2 clients)
320 response from 3 time=0.000114 sec  (2 clients)
321       </screen>
322     </refsect2>
323
324     <refsect2><title>ip</title>
325       <para>
326         This command will display the list of public addresses that are provided by the cluster and which physical node is currently serving this ip. By default this command will ONLY show those public addresses that are known to the node itself. To see the full list of all public ips across the cluster you must use "ctdb ip -n all".
327       </para>
328       <para>
329         Example: ctdb ip
330       </para>
331       <para>
332         Example output:
333       </para>
334       <screen format="linespecific">
335 Number of addresses:4
336 12.1.1.1         0
337 12.1.1.2         1
338 12.1.1.3         2
339 12.1.1.4         3
340       </screen>
341     </refsect2>
342
343     <refsect2><title>scriptstatus</title>
344       <para>
345         This command displays which scripts where run in the previous monitoring cycle and the result of each script. If a script failed with an error, causing the node to become unhealthy, the output from that script is also shown.
346       </para>
347       <para>
348         Example: ctdb scriptstatus
349       </para>
350       <para>
351         Example output:
352       </para>
353       <screen format="linespecific">
354 7 scripts were executed last monitoring cycle
355 00.ctdb              Status:OK    Duration:0.056 Tue Mar 24 18:56:57 2009
356 10.interface         Status:OK    Duration:0.077 Tue Mar 24 18:56:57 2009
357 11.natgw             Status:OK    Duration:0.039 Tue Mar 24 18:56:57 2009
358 20.multipathd        Status:OK    Duration:0.038 Tue Mar 24 18:56:57 2009
359 40.vsftpd            Status:OK    Duration:0.045 Tue Mar 24 18:56:57 2009
360 41.httpd             Status:OK    Duration:0.039 Tue Mar 24 18:56:57 2009
361 50.samba             Status:ERROR    Duration:0.082 Tue Mar 24 18:56:57 2009
362    OUTPUT:ERROR: Samba tcp port 445 is not responding
363       </screen>
364     </refsect2>
365
366     <refsect2><title>getvar &lt;name&gt;</title>
367       <para>
368         Get the runtime value of a tuneable variable.
369       </para>
370       <para>
371         Example: ctdb getvar MaxRedirectCount
372       </para>
373       <para>
374         Example output:
375       </para>
376       <screen format="linespecific">
377 MaxRedirectCount    = 3
378       </screen>
379     </refsect2>
380
381     <refsect2><title>setvar &lt;name&gt; &lt;value&gt;</title>
382       <para>
383         Set the runtime value of a tuneable variable.
384       </para>
385       <para>
386         Example: ctdb setvar MaxRedirectCount 5
387       </para>
388     </refsect2>
389
390     <refsect2><title>listvars</title>
391       <para>
392         List all tuneable variables.
393       </para>
394       <para>
395         Example: ctdb listvars
396       </para>
397       <para>
398         Example output:
399       </para>
400       <screen format="linespecific">
401 MaxRedirectCount    = 5
402 SeqnumFrequency     = 1
403 ControlTimeout      = 60
404 TraverseTimeout     = 20
405 KeepaliveInterval   = 2
406 KeepaliveLimit      = 3
407 MaxLACount          = 7
408 RecoverTimeout      = 5
409 RecoverInterval     = 1
410 ElectionTimeout     = 3
411 TakeoverTimeout     = 5
412 MonitorInterval     = 15
413 EventScriptTimeout  = 20
414 RecoveryGracePeriod = 60
415 RecoveryBanPeriod   = 300
416       </screen>
417     </refsect2>
418
419     <refsect2><title>lvsmaster</title>
420       <para>
421       This command shows which node is currently the LVSMASTER. The
422       LVSMASTER is the node in the cluster which drives the LVS system and
423       which receives all incoming traffic from clients.
424       </para>
425       <para>
426       LVS is the mode where the entire CTDB/Samba cluster uses a single
427       ip address for the entire cluster. In this mode all clients connect to
428       one specific node which will then multiplex/loadbalance the clients
429       evenly onto the other nodes in the cluster. This is an alternative to using
430       public ip addresses. See the manpage for ctdbd for more information
431       about LVS.
432       </para>
433     </refsect2>
434
435     <refsect2><title>lvs</title>
436       <para>
437       This command shows which nodes in the cluster are currently active in the
438       LVS configuration. I.e. which nodes we are currently loadbalancing
439       the single ip address across.
440       </para>
441
442       <para>
443       LVS will by default only loadbalance across those nodes that are both
444       LVS capable and also HEALTHY. Except if all nodes are UNHEALTHY in which
445       case LVS will loadbalance across all UNHEALTHY nodes as well.
446       LVS will never use nodes that are DISCONNECTED, STOPPED, BANNED or
447       DISABLED.
448       </para>
449
450       <para>
451         Example output:
452       </para>
453       <screen format="linespecific">
454 2:10.0.0.13
455 3:10.0.0.14
456       </screen>
457
458     </refsect2>
459
460
461     <refsect2><title>getcapabilities</title>
462       <para>
463       This command shows the capabilities of the current node.
464       Please see manpage for ctdbd for a full list of all capabilities and
465       more detailed description.
466       </para>
467
468       <para>
469       RECMASTER and LMASTER capabilities are primarily used when CTDBD
470       is used to create a cluster spanning across WAN links. In which case
471       ctdbd acts as a WAN accelerator.
472       </para>
473
474       <para>
475       LVS capability means that the node is participating in LVS, a mode
476       where the entire CTDB cluster uses one single ip address for the
477       entire cluster instead of using public ip address failover.
478       This is an alternative to using a loadbalancing layer-4 switch.
479       </para>
480
481       <para>
482       NATGW capability means that the node participates in a NATGW group.
483       This flag can be modified using "ctdb setnatgwstate {on|off}"
484       </para>
485
486       <para>
487         Example output:
488       </para>
489       <screen format="linespecific">
490 RECMASTER: YES
491 LMASTER: YES
492 LVS: NO
493 NATGW: NO
494       </screen>
495
496     </refsect2>
497
498     <refsect2><title>statistics</title>
499       <para>
500         Collect statistics from the CTDB daemon about how many calls it has served.
501       </para>
502       <para>
503         Example: ctdb statistics
504       </para>
505       <para>
506         Example output:
507       </para>
508       <screen format="linespecific">
509 CTDB version 1
510  num_clients                        3
511  frozen                             0
512  recovering                         0
513  client_packets_sent           360489
514  client_packets_recv           360466
515  node_packets_sent             480931
516  node_packets_recv             240120
517  keepalive_packets_sent             4
518  keepalive_packets_recv             3
519  node
520      req_call                       2
521      reply_call                     2
522      req_dmaster                    0
523      reply_dmaster                  0
524      reply_error                    0
525      req_message                   42
526      req_control               120408
527      reply_control             360439
528  client
529      req_call                       2
530      req_message                   24
531      req_control               360440
532  timeouts
533      call                           0
534      control                        0
535      traverse                       0
536  total_calls                        2
537  pending_calls                      0
538  lockwait_calls                     0
539  pending_lockwait_calls             0
540  memory_used                     5040
541  max_hop_count                      0
542  max_call_latency                   4.948321 sec
543  max_lockwait_latency               0.000000 sec
544       </screen>
545     </refsect2>
546
547     <refsect2><title>statisticsreset</title>
548       <para>
549         This command is used to clear all statistics counters in a node.
550       </para>
551       <para>
552         Example: ctdb statisticsreset
553       </para>
554     </refsect2>
555
556     <refsect2><title>getreclock</title>
557       <para>
558         This command is used to show the filename of the reclock file that is used.
559       </para>
560
561       <para>
562         Example output:
563       </para>
564       <screen format="linespecific">
565 Reclock file:/gpfs/.ctdb/shared
566       </screen>
567
568     </refsect2>
569
570     <refsect2><title>setreclock [filename]</title>
571       <para>
572         This command is used to modify, or clear, the file that is used as the reclock file at runtime. When this command is used, the reclock file checks are disabled. To re-enable the checks the administrator needs to activate the "VerifyRecoveryLock" tunable using "ctdb setvar".
573       </para>
574
575       <para>
576         If run with no parameter this will remove the reclock file completely. If run with a parameter the parameter specifies the new filename to use for the recovery lock.
577       </para>
578
579       <para>
580         This command only affects the runtime settings of a ctdb node and will be lost when ctdb is restarted. For persistent changes to the reclock file setting you must edit /etc/sysconfig/ctdb.
581       </para>
582     </refsect2>
583
584
585
586     <refsect2><title>getdebug</title>
587       <para>
588         Get the current debug level for the node. the debug level controls what information is written to the log file.
589       </para>
590       <para>
591         The debug levels are mapped to the corresponding syslog levels.
592         When a debug level is set, only those messages at that level and higher
593         levels will be printed.
594       </para>
595       <para>
596         The list of debug levels from highest to lowest are :
597       </para>
598       <para>
599         EMERG ALERT CRIT ERR WARNING NOTICE INFO DEBUG
600       </para>
601     </refsect2>
602
603     <refsect2><title>setdebug &lt;debuglevel&gt;</title>
604       <para>
605         Set the debug level of a node. This controls what information will be logged.
606       </para>
607       <para>
608         The debuglevel is one of EMERG ALERT CRIT ERR WARNING NOTICE INFO DEBUG
609       </para>
610     </refsect2>
611
612     <refsect2><title>getpid</title>
613       <para>
614         This command will return the process id of the ctdb daemon.
615       </para>
616     </refsect2>
617
618     <refsect2><title>disable</title>
619       <para>
620         This command is used to administratively disable a node in the cluster.
621         A disabled node will still participate in the cluster and host
622         clustered TDB records but its public ip address has been taken over by
623         a different node and it no longer hosts any services.
624       </para>
625     </refsect2>
626
627     <refsect2><title>enable</title>
628       <para>
629         Re-enable a node that has been administratively disabled.
630       </para>
631     </refsect2>
632
633     <refsect2><title>stop</title>
634       <para>
635         This command is used to administratively STOP a node in the cluster.
636         A STOPPED node is connected to the cluster but will not host any
637         public ip addresse, nor does it participate in the VNNMAP.
638         The difference between a DISABLED node and a STOPPED node is that
639         a STOPPED node does not host any parts of the database which means
640         that a recovery is required to stop/continue nodes.
641       </para>
642     </refsect2>
643
644     <refsect2><title>continue</title>
645       <para>
646         Re-start a node that has been administratively stopped.
647       </para>
648     </refsect2>
649
650     <refsect2><title>addip &lt;public_ip/mask&gt; &lt;iface&gt;</title>
651       <para>
652         This command is used to add a new public ip to a node during runtime.
653         This allows public addresses to be added to a cluster without having
654         to restart the ctdb daemons.
655       </para>
656       <para>
657         Note that this only updates the runtime instance of ctdb. Any changes will be lost next time ctdb is restarted and the public addresses file is re-read.
658  If you want this change to be permanent you must also update the public addresses file manually.
659       </para>
660     </refsect2>
661
662     <refsect2><title>delip &lt;public_ip&gt;</title>
663       <para>
664         This command is used to remove a public ip from a node during runtime.
665         If this public ip is currently hosted by the node it being removed from, the ip will first be failed over to another node, if possible, before it is removed.
666       </para>
667       <para>
668         Note that this only updates the runtime instance of ctdb. Any changes will be lost next time ctdb is restarted and the public addresses file is re-read.
669  If you want this change to be permanent you must also update the public addresses file manually.
670       </para>
671     </refsect2>
672
673     <refsect2><title>moveip &lt;public_ip&gt; &lt;node&gt;</title>
674       <para>
675       This command can be used to manually fail a public ip address to a
676       specific node.
677       </para>
678       <para>
679       In order to manually override the "automatic" distribution of public 
680       ip addresses that ctdb normally provides, this command only works
681       when you have changed the tunables for the daemon to:
682       </para>
683       <para>
684       DeterministicIPs = 0
685       </para>
686       <para>
687       NoIPFailback = 1
688       </para>
689     </refsect2>
690
691     <refsect2><title>shutdown</title>
692       <para>
693         This command will shutdown a specific CTDB daemon.
694       </para>
695     </refsect2>
696
697     <refsect2><title>recover</title>
698       <para>
699         This command will trigger the recovery daemon to do a cluster
700         recovery.
701       </para>
702     </refsect2>
703
704     <refsect2><title>ipreallocate</title>
705       <para>
706         This command will force the recovery master to perform a full ip reallocation process and redistribute all ip addresses. This is useful to "reset" the allocations back to its default state if they have been changed using the "moveip" command. While a "recover" will also perform this reallocation, a recovery is much more hevyweight since it will also rebuild all the databases.
707       </para>
708     </refsect2>
709
710     <refsect2><title>killtcp &lt;srcip:port&gt; &lt;dstip:port&gt;</title>
711       <para>
712         This command will kill the specified TCP connection by issuing a
713         TCP RST to the srcip:port endpoint. This is a command used by the 
714         ctdb eventscripts.
715       </para>
716     </refsect2>
717
718     <refsect2><title>gratiousarp &lt;ip&gt; &lt;interface&gt;</title>
719       <para>
720         This command will send out a gratious arp for the specified interface
721         through the specified interface. This command is mainly used by the
722         ctdb eventscripts.
723       </para>
724     </refsect2>
725
726     <refsect2><title>reloadnodes</title>
727       <para>
728       This command is used when adding new nodes, or removing existing nodes from an existing cluster.
729       </para>
730       <para>
731       Procedure to add a node:
732       </para>
733       <para>
734       1, To expand an existing cluster, first ensure with 'ctdb status' that
735       all nodes are up and running and that they are all healthy.
736       Do not try to expand a cluster unless it is completely healthy!
737       </para>
738       <para>
739       2, On all nodes, edit /etc/ctdb/nodes and add the new node as the last
740       entry to the file. The new node MUST be added to the end of this file!
741       </para>
742       <para>
743       3, Verify that all the nodes have identical /etc/ctdb/nodes files after you edited them and added the new node!
744       </para>
745       <para>
746       4, Run 'ctdb reloadnodes' to force all nodes to reload the nodesfile.
747       </para>
748       <para>
749       5, Use 'ctdb status' on all nodes and verify that they now show the additional node.
750       </para>
751       <para>
752       6, Install and configure the new node and bring it online.
753       </para>
754       <para>
755       Procedure to remove a node:
756       </para>
757       <para>
758       1, To remove a node from an existing cluster, first ensure with 'ctdb status' that
759       all nodes, except the node to be deleted, are up and running and that they are all healthy.
760       Do not try to remove a node from a cluster unless the cluster is completely healthy!
761       </para>
762       <para>
763       2, Shutdown and poerwoff the node to be removed.
764       </para>
765       <para>
766       3, On all other nodes, edit the /etc/ctdb/nodes file and comment out the node to be removed. Do not delete the line for that node, just comment it out by adding a '#' at the beginning of the line.
767       </para>
768       <para>
769       4, Run 'ctdb reloadnodes' to force all nodes to reload the nodesfile.
770       </para>
771       <para>
772       5, Use 'ctdb status' on all nodes and verify that the deleted node no longer shows up in the list..
773       </para>
774       <para>
775       </para>
776       
777     </refsect2>
778
779     <refsect2><title>tickle &lt;srcip:port&gt; &lt;dstip:port&gt;</title>
780       <para>
781         This command will will send a TCP tickle to the source host for the
782         specified TCP connection.
783         A TCP tickle is a TCP ACK packet with an invalid sequence and 
784         acknowledge number and will when received by the source host result
785         in it sending an immediate correct ACK back to the other end.
786       </para>
787       <para>
788         TCP tickles are useful to "tickle" clients after a IP failover has 
789         occured since this will make the client immediately recognize the 
790         TCP connection has been disrupted and that the client will need
791         to reestablish. This greatly speeds up the time it takes for a client
792         to detect and reestablish after an IP failover in the ctdb cluster.
793       </para>
794     </refsect2>
795
796     <refsect2><title>gettickles &lt;ip&gt;</title>
797       <para>
798         This command is used to show which TCP connections are registered with
799         CTDB to be "tickled" if there is a failover.
800       </para>
801     </refsect2>
802     <refsect2><title>repack [max_freelist]</title>
803       <para>
804         Over time, when records are created and deleted in a TDB, the TDB list of free space will become fragmented. This can lead to a slowdown in accessing TDB records.
805         This command is used to defragment a TDB database and pruning the freelist.
806       </para>
807  
808         <para>
809         If [max_freelist] is specified, then a database will only be repacked if it has more than this number of entries in the freelist.
810         </para>
811       <para>
812         During repacking of the database, the entire TDB database will be locked to prevent writes. If samba tries to write to a record in the database during a repack operation, samba will block until the repacking has completed.
813       </para>
814  
815       <para>
816         This command can be disruptive and can cause samba to block for the duration of the repack operation. In general, a repack operation will take less than one second to complete.
817       </para>
818  
819       <para>
820         A repack operation will only defragment the local TDB copy of the CTDB database. You need to run this command on all of the nodes to repack a CTDB database completely.
821         </para>
822
823       <para>
824         Example: ctdb repack 1000
825       </para>
826
827       <para>
828          By default, this operation is issued from the 00.ctdb event script every 5 minutes.
829       </para>
830  
831     </refsect2>
832
833     <refsect2><title>vacuum [max_records]</title>
834       <para>
835         Over time CTDB databases will fill up with empty deleted records which will lead to a progressive slow down of CTDB database access.
836         This command is used to prune all databases and delete all empty records from the cluster.
837       </para>
838  
839       <para>
840          By default, vacuum will delete all empty records from all databases.
841          If [max_records] is specified, the command will only delete the first
842          [max_records] empty records for each database.
843       </para>
844  
845       <para>
846          Vacuum only deletes records where the local node is the lmaster.
847          To delete all records from the entire cluster you need to run a vacuum from each node.
848
849          This command is not disruptive. Samba is unaffected and will still be able to read/write records normally while the database is being vacuumed.
850       </para>
851
852       <para>
853         Example: ctdb vacuum
854       </para>
855  
856       <para>
857          By default, this operation is issued from the 00.ctdb event script every 5 minutes.
858       </para>
859     </refsect2>
860
861     <refsect2><title>backupdb &lt;database&gt; &lt;file&gt;</title>
862       <para>
863         This command can be used to copy the entire content of a database out to a file. This file can later be read back into ctdb using the restoredb command.
864 This is mainly useful for backing up persistent databases such as secrets.tdb and similar.
865       </para>
866     </refsect2>
867
868     <refsect2><title>restoredb &lt;file&gt;</title>
869       <para>
870         This command restores a persistent database that was previously backed up using backupdb.
871       </para>
872     </refsect2>
873
874   </refsect1>
875
876
877   <refsect1><title>Debugging Commands</title>
878     <para>
879       These commands are primarily used for CTDB development and testing and
880       should not be used for normal administration.
881     </para>
882     <refsect2><title>process-exists &lt;pid&gt;</title>
883       <para>
884         This command checks if a specific process exists on the CTDB host. This is mainly used by Samba to check if remote instances of samba are still running or not.
885       </para>
886     </refsect2>
887
888     <refsect2><title>getdbmap</title>
889       <para>
890         This command lists all clustered TDB databases that the CTDB daemon has attached to. Some databases are flagged as PERSISTENT, this means that the database stores data persistently and the data will remain across reboots. One example of such a database is secrets.tdb where information about how the cluster was joined to the domain is stored.
891         </para>
892         <para>
893         Most databases are not persistent and only store the state information that the currently running samba daemons need. These databases are always wiped when ctdb/samba starts and when a node is rebooted.
894       </para>
895       <para>
896         Example: ctdb getdbmap
897       </para>
898       <para>
899         Example output:
900       </para>
901       <screen format="linespecific">
902 Number of databases:10
903 dbid:0x435d3410 name:notify.tdb path:/var/ctdb/notify.tdb.0 
904 dbid:0x42fe72c5 name:locking.tdb path:/var/ctdb/locking.tdb.0 dbid:0x1421fb78 name:brlock.tdb path:/var/ctdb/brlock.tdb.0 
905 dbid:0x17055d90 name:connections.tdb path:/var/ctdb/connections.tdb.0 
906 dbid:0xc0bdde6a name:sessionid.tdb path:/var/ctdb/sessionid.tdb.0 
907 dbid:0x122224da name:test.tdb path:/var/ctdb/test.tdb.0 
908 dbid:0x2672a57f name:idmap2.tdb path:/var/ctdb/persistent/idmap2.tdb.0 PERSISTENT
909 dbid:0xb775fff6 name:secrets.tdb path:/var/ctdb/persistent/secrets.tdb.0 PERSISTENT
910 dbid:0xe98e08b6 name:group_mapping.tdb path:/var/ctdb/persistent/group_mapping.tdb.0 PERSISTENT
911 dbid:0x7bbbd26c name:passdb.tdb path:/var/ctdb/persistent/passdb.tdb.0 PERSISTENT
912       </screen>
913     </refsect2>
914
915     <refsect2><title>catdb &lt;dbname&gt;</title>
916       <para>
917         This command will dump a clustered TDB database to the screen. This is a debugging command.
918       </para>
919     </refsect2>
920
921     <refsect2><title>getmonmode</title>
922       <para>
923         This command returns the monutoring mode of a node. The monitoring mode is either ACTIVE or DISABLED. Normally a node will continously monitor that all other nodes that are expected are in fact connected and that they respond to commands.
924       </para>
925       <para>
926         ACTIVE - This is the normal mode. The node is actively monitoring all other nodes, both that the transport is connected and also that the node responds to commands. If a node becomes unavailable, it will be marked as DISCONNECTED and a recovery is initiated to restore the cluster.
927       </para>
928       <para>
929         DISABLED - This node is not monitoring that other nodes are available. In this mode a node failure will not be detected and no recovery will be performed. This mode is useful when for debugging purposes one wants to attach GDB to a ctdb process but wants to prevent the rest of the cluster from marking this node as DISCONNECTED and do a recovery.
930       </para>
931     </refsect2>
932
933
934     <refsect2><title>setmonmode &lt;0|1&gt;</title>
935       <para>
936         This command can be used to explicitely disable/enable monitoring mode on a node. The main purpose is if one wants to attach GDB to a running ctdb daemon but wants to prevent the other nodes from marking it as DISCONNECTED and issuing a recovery. To do this, set monitoring mode to 0 on all nodes before attaching with GDB. Remember to set monitoring mode back to 1 afterwards.
937       </para>
938     </refsect2>
939
940     <refsect2><title>attach &lt;dbname&gt;</title>
941       <para>
942         This is a debugging command. This command will make the CTDB daemon create a new CTDB database and attach to it.
943       </para>
944     </refsect2>
945
946     <refsect2><title>dumpmemory</title>
947       <para>
948         This is a debugging command. This command will make the ctdb
949         daemon to write a fill memory allocation map to standard output.
950       </para>
951     </refsect2>
952
953     <refsect2><title>rddumpmemory</title>
954       <para>
955         This is a debugging command. This command will dump the talloc memory
956         allocation tree for the recovery daemon to standard output.
957       </para>
958     </refsect2>
959
960     <refsect2><title>freeze</title>
961       <para>
962         This command will lock all the local TDB databases causing clients 
963         that are accessing these TDBs such as samba3 to block until the
964         databases are thawed.
965       </para>
966       <para>
967         This is primarily used by the recovery daemon to stop all samba
968         daemons from accessing any databases while the database is recovered
969         and rebuilt.
970       </para>
971     </refsect2>
972
973     <refsect2><title>thaw</title>
974       <para>
975         Thaw a previously frozen node.
976       </para>
977     </refsect2>
978
979
980     <refsect2><title>eventscript &lt;arguments&gt;</title>
981       <para>
982         This is a debugging command. This command can be used to manually
983         invoke and run the eventscritps with arbitrary arguments.
984       </para>
985     </refsect2>
986
987     <refsect2><title>ban &lt;bantime|0&gt;</title>
988       <para>
989         Administratively ban a node for bantime seconds. A bantime of 0 means that the node should be permanently banned. 
990       </para>
991       <para>
992         A banned node does not participate in the cluster and does not host any records for the clustered TDB. Its ip address has been taken over by an other node and no services are hosted.
993       </para>
994       <para>
995         Nodes are automatically banned if they are the cause of too many
996         cluster recoveries.
997       </para>
998     </refsect2>
999
1000     <refsect2><title>unban</title>
1001       <para>
1002         This command is used to unban a node that has either been 
1003         administratively banned using the ban command or has been automatically
1004         banned by the recovery daemon.
1005       </para>
1006     </refsect2>
1007
1008
1009   </refsect1>
1010
1011   <refsect1><title>SEE ALSO</title>
1012     <para>
1013       ctdbd(1), onnode(1)
1014       <ulink url="http://ctdb.samba.org/"/>
1015     </para>
1016   </refsect1>
1017   <refsect1><title>COPYRIGHT/LICENSE</title>
1018 <literallayout>
1019 Copyright (C) Andrew Tridgell 2007
1020 Copyright (C) Ronnie sahlberg 2007
1021
1022 This program is free software; you can redistribute it and/or modify
1023 it under the terms of the GNU General Public License as published by
1024 the Free Software Foundation; either version 3 of the License, or (at
1025 your option) any later version.
1026
1027 This program is distributed in the hope that it will be useful, but
1028 WITHOUT ANY WARRANTY; without even the implied warranty of
1029 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1030 General Public License for more details.
1031
1032 You should have received a copy of the GNU General Public License
1033 along with this program; if not, see http://www.gnu.org/licenses/.
1034 </literallayout>
1035   </refsect1>
1036 </refentry>