2008-09-25 19:55:00 +00:00
=head1 B<NAME>
B<sinv> - Checks the software configuration of the nodes in the cluster.
=head1 B<SYNOPSIS>
2008-10-24 18:39:43 +00:00
B<sinv> [B<-o> I<output>] [B<-p> I<template path>] [B<-t> I<template count>] [B<-s> I<seed node>] [B<-i>] [B<-e>] [B<-r>] [B<-V>] [[B<-f> I<command file>] | [B<-c> I<command>]]
2008-09-25 19:55:00 +00:00
B<sinv> [B<-h> | B<-v>]
=head1 B<DESCRIPTION>
The B<sinv> command is designed to check the configuration of the nodes in a cluster.
The command takes as input command line flags, and one or more templates which will be compared against the output of the xdsh command, designated to be run by the -c or -f flag, on the nodes in the noderange.
2008-11-07 17:00:35 +00:00
The nodes will then be grouped according to the template they match and a report returned to the administrator in the output file designated by the -o flag, or to stdout.
2008-10-24 18:39:43 +00:00
B<sinv> supports checking the output from the B<rinv> or B<xdsh> command.
2008-09-25 19:55:00 +00:00
The B<sinv> command is an xCAT Distributed Shell Utility.
B<COMMAND> B<SPECIFICATION>:
2008-10-24 18:39:43 +00:00
The xdsh or rinv command to execute on the remote targets is specified by the
2008-09-25 19:55:00 +00:00
B<-c> flag, or by the B<-f> flag
which is followed by the fully qualified path to a file containing the command.
2008-11-03 15:33:42 +00:00
2009-04-20 13:19:56 +00:00
Note: do not add | xdshcoll to the command on the command line or in the
2008-09-25 19:55:00 +00:00
command file, it is automatically added by sinv.
The syntax for the B<-c> B<sinv> parameter is as follows:
"I<command>[; I<command>]..."
where I<command> is the command to run on the remote
target. Quotation marks are required to ensure that all commands in the
list are executed remotely, and that any special characters are interpreted
correctly on the remote target.
The B<sinv> command does not work with any interactive commands, including
those that read from standard input.
B<REMOTE> B<SHELL> B<COMMAND>:
2008-10-24 18:39:43 +00:00
For xdsh, support is explicitly provided
2008-09-25 19:55:00 +00:00
for AIX Remote Shell and OpenSSH, but any secure remote command that
conforms to the IETF (Internet Engineering Task Force) Secure Remote
Command Protocol can be used. See man B<xdsh> for more details.
=head1 B<OPTIONS>
=over 5
=item B<-o>|B<--output> I<report output file>
2008-11-07 17:00:35 +00:00
Optional output file. This is the location of the file that will contain the report of the nodes that match, and do not match, the input templates.
2008-11-07 16:58:20 +00:00
If the flag is not used, the output will go to stdout.
2008-09-25 19:55:00 +00:00
=item B<-p>|B<--tp> I<template path>
This is the path to the template file. The template contains the output
of xdsh command, that has been run against a "seed" node, a node
that contains the configuration that you would like
all nodes in your noderange to match.
The admin can create the template by running the xdsh command on
2009-04-20 13:19:56 +00:00
the seed node, pipe to xdshcoll ( required) and store the output
2008-09-25 19:55:00 +00:00
in the template path. See examples.
B<Note:> The admin can also edit the
template to remove any lines that they do not want checked.
An alternative method is to use the [B<-s> I<seed node>] parameter,
which will automatically build the template for you from the
seed node named.
2008-10-28 16:22:05 +00:00
If a template path file does not exist, and a seed node is not input,
2012-05-08 16:24:42 +00:00
then sinv will automatically use the one node in the noderange as
2008-10-28 16:22:05 +00:00
the seed node and build the template.
2008-09-25 19:55:00 +00:00
=item B<-t>|B<--tc> I<template count>
This count is the number of templates that the command will use
to check for nodes matches. If the template in the template path does not
match a node, the B<sinv> will check additional templates up
to the template count.
For each node, it will compare the node against each template to see if
there is a match.
If there is no match, and we are not over the template count,
then a new template will be created from the node output.
This will result in having all nodes that match a given template reported in
their group at the end of the run in the output file.
If no template count is specified, 0 is the default, and all nodes will
be compared against the first template.
=item B<-s>|B<--seed> I<seed node>
This is the node that will be used to build the first template
that is stored in template path. You can use this parameter instead of running
2008-10-24 18:39:43 +00:00
the command yourself to build the template.
2008-09-25 19:55:00 +00:00
2008-10-28 16:22:05 +00:00
B<Note:> If the template path file does not exists, and no seed node is
2012-05-08 16:24:42 +00:00
supplied, the seed node automatically is one node in the
2008-10-28 16:22:05 +00:00
noderange.
2008-09-25 19:55:00 +00:00
=item B<-i>|B<--ignorefirst>
This flag suppresses the reporting of the nodes matching the first
template. In very large systems, you may not want to show the nodes that
have the correct configuration, since the list could contain thousands of nodes.
This allows you to only report the nodes that do not match the required
configuration.
=item B<-e>|B<--exactmatch>
This requires the check of node output against template to be an exact match.
If this flag is not set, B<sinv> checks to see if the return from the
xdsh command to the nodes contain a match for each line in the input
2009-04-20 13:19:56 +00:00
template (except for xdshcoll header and comments). If not in exactmatch mode,
2008-09-25 19:55:00 +00:00
there can exist more lines in the xdsh return from the nodes.
For example, if running a "rpm -qa | grep xCAT" command, without exactmatch
set, if the node containes more xCAT rpms that listed in the template,
it would be considered a match, as long as all rpms listed in the template
were on the node. With exactmatch set, the output must be identical
to the template.
=item B<-c>|B<--command>
2008-10-24 18:39:43 +00:00
The xdsh or rinv command that will be run. The command should be enclosed in
2012-12-09 11:44:39 +00:00
double quotes to insure correct shell interpretation. This parameter must only contain, the node range or the image path (Linux) or spot name for AIX. It cannot be used to set additional input flags to xdsh or rinv (for example -s,-T,-e). See examples below.
2008-09-25 19:55:00 +00:00
2009-04-20 13:19:56 +00:00
B<Note:> do not add the | xdshcoll to the command,
2012-12-09 11:44:39 +00:00
it is automatically added by sinv. sinv also automatically sets the -v flag for xdsh.
2008-09-25 19:55:00 +00:00
=item B<-f>|B<--file>
2008-10-24 18:39:43 +00:00
The file containing the xdsh or rinv command that will be run.
2008-09-25 19:55:00 +00:00
This should be the fully qualified name of the file.
2009-04-20 13:19:56 +00:00
B<Note:> do not add the | xdshcoll to the command in the file,
2008-09-25 19:55:00 +00:00
it is automatically added by sinv.
=item B<-r>|B<--remove>
This flag indicates that generated templates should be removed at the
at the end of the B<sinv> command execution.
If the flag is input, then all templates that are generated by the B<sinv>
command, will be removed. If the first template is created by the admin,
it will not be removed.
If the flag is not input, no
templates will be removed. It is up to the admin to cleanup templates.
=item B<-h>|B<--help>
Displays usage information.
=item B<-v>|B<--version>
Displays xCAT release version.
=item B<-V>|B<--Verbose>
Verbose mode.
=back
=head1 B<Examples>
=over 3
=item *
2008-10-24 18:39:43 +00:00
To setup sinv.template (name optional) for input to the B<sinv> command , enter:
2008-09-25 19:55:00 +00:00
2010-06-02 19:24:21 +00:00
B<xdsh> I<node1,node2 "rpm -qa | grep ssh " | xdshcoll E<gt> /tmp/sinv.template>
2008-09-25 19:55:00 +00:00
Note: when setting up the template the output of xdsh must be piped
2009-04-20 13:19:56 +00:00
to xdshcoll, sinv processing depends on it.
2008-09-25 19:55:00 +00:00
=item *
2008-10-24 18:39:43 +00:00
To setup rinv.template for input to the B<sinv> command , enter:
2009-04-20 13:19:56 +00:00
B<rinv> I<node1-node2 serial | xdshcoll E<gt> /tmp/rinv.template>
2008-10-24 18:39:43 +00:00
Note: when setting up the template the output of rinv must be piped
2009-04-20 13:19:56 +00:00
to xdshcoll, sinv processing depends on it.
2008-10-24 18:39:43 +00:00
=item *
2008-09-25 19:55:00 +00:00
To execute B<sinv> using the sinv.template generated above
on the nodegroup, B<testnodes> ,possibly generating up to two
new templates, and removing all generated templates in the end, and writing
output report to /tmp/sinv.output, enter:
2010-06-02 19:29:38 +00:00
B<sinv> I< -c "xdsh testnodes rpm -qa | grep ssh" -p /tmp/sinv.template -t 2 -r -o /tmp/sinv.output>
2008-09-25 19:55:00 +00:00
2009-04-20 13:19:56 +00:00
Note: do not add the pipe to xdshcoll on the -c flag, it is automatically
2008-09-25 19:55:00 +00:00
added by the sinv routine.
=item *
To execute B<sinv> on noderange, node1-node4, using the seed node, node8,
to generate the first template, using the xdsh command (-c),
possibly generating up to two additional
templates and not removing any templates at the end, enter:
2008-10-29 17:53:24 +00:00
B<sinv> I<-c "xdsh node1-node4 lslpp -l | grep bos.adt" -s node8 -p /tmp/sinv.template -t 2 -o /tmp/sinv.output>
2008-10-24 18:39:43 +00:00
=item *
To execute B<sinv> on noderange, node1-node4, using the seed node, node8,
to generate the first template, using the rinv command (-c),
possibly generating up to two additional
templates and removing any generated templates at the end, enter:
2008-09-25 19:55:00 +00:00
2008-10-29 17:53:24 +00:00
B<sinv> I<-c "rinv node1-node4 serial" -s node8 -p /tmp/sinv.template -t 2 -r -o /tmp/rinv.output>
2008-10-28 13:27:37 +00:00
2008-09-25 19:55:00 +00:00
=item *
2008-10-28 13:27:37 +00:00
To execute B<sinv> on noderange, node1-node4, using node1 as
2008-09-25 19:55:00 +00:00
the seed node, to generate the sinv.template from the xdsh command (-c),
using the exact match option, generating no additional templates, enter:
2008-10-29 17:53:24 +00:00
B<sinv> I<-c "xdsh node1-node4 lslpp -l | grep bos.adt" -s node1 -e -p /tmp/sinv.template -o /tmp/sinv.output>
2008-09-25 19:55:00 +00:00
Note: the /tmp/sinv.template file must be empty, otherwise it will be used
as an admin generated template.
2012-12-09 11:44:39 +00:00
=item *
To execute B<sinv> on the Linux osimage defined for cn1. This uses cn1 as
the seed node, to generate the sinv.template,
using the exact match option, generating one additional template, enter:
B<sinv> I<-c "xdsh -i /install/netboot/rhels6/ppc64/test_ramdisk_statelite/rootimg cat /etc/hosts" -s cn1 -e -t1 -p /tmp/sinv.template -o /tmp/sinv.output>
=item *
To execute B<sinv> on the AIX NIM 611dskls spot and compare /etc/hosts to compute1 node, run the following:
B<sinv> I<-c "xdsh -i 611dskls cat /etc/hosts" -s compute1 -e -t1 -p /tmp/sinv.template -o /tmp/sinv.output>
2008-09-25 19:55:00 +00:00
=back
=head1 B<Files>
B</opt/xcat/bin/sinv/>
Location of the sinv command.
=head1 B<SEE ALSO>
2009-04-20 13:19:56 +00:00
L <xdsh(1)|xdsh.1>, L<noderange(3)|noderange.3>