ONNODE(1) | CTDB - clustered TDB database | ONNODE(1) |
onnode - run commands on CTDB cluster nodes
onnode [OPTION...] {NODES} {COMMAND}
onnode is a utility to run commands on a specific node of a CTDB cluster, or on all nodes.
NODES specifies which node(s) to run a command on. See section NODES SPECIFICATION for details.
COMMAND can be any shell command. The onnode utility uses ssh or rsh to connect to the remote nodes and run the command.
-c
-f FILENAME
-i
-n
-p
-P
-q
-v
-h, --help
Nodes can be specified via numeric node numbers (from 0 to N-1) or mnemonics. Multiple nodes are specified using lists of nodes, separated by commas, and ranges of numeric node numbers, separated by dashes. If nodes are specified multiple times then the command will be executed multiple times on those nodes. The order of nodes is significant.
The following mnemonics are available:
all
any
ok | healthy
con | connected
The following command would show the process ID of ctdbd on all nodes
onnode all ctdb getpid
The following command would show the last 5 lines of log on each node, preceded by the node's hostname
onnode all "hostname; tail -5 /var/log/ctdb/log.ctdb"
The following command would restart the ctdb service on all nodes, in parallel.
onnode -p all service ctdb restart
The following command would run ./foo in the current working directory, in parallel, on nodes 0, 2, 3 and 4.
onnode -c -p 0,2-4 ./foo
/etc/ctdb/nodes
As above, a file specified via the -f is given precedence. If a relative path is specified and no corresponding file exists relative to the current directory then the file is also searched for in the CTDB configuration directory.
Otherwise the default is /etc/ctdb/nodes.
/etc/ctdb/onnode.conf
ctdb(7), http://ctdb.samba.org/
This documentation was written by Andrew Tridgell, Martin Schwenke
Copyright © 2007 Andrew Tridgell, Ronnie Sahlberg
Copyright © 2008 Martin Schwenke
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, see http://www.gnu.org/licenses.
08/09/2022 | ctdb |