mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-05-30 01:26:38 +00:00
Remove trailing spaces in file docs/source/guides/admin-guides/references/man1/snmove.1.rst
This commit is contained in:
parent
8d28bf1d15
commit
edd2a0b214
@ -62,7 +62,7 @@ When the \ **snmove**\ command is run it modifies the xCAT database to
|
||||
switch the primary server to the backup server.
|
||||
|
||||
It will also check the other services that are being used for the
|
||||
node (tftpserver, monserver, nfsserver, conserver), and if they were set
|
||||
node (tftpserver, monserver, nfsserver, conserver), and if they were set
|
||||
to the original service node they will be changed to point to the backup
|
||||
service node.
|
||||
|
||||
@ -88,65 +88,65 @@ OPTIONS
|
||||
|
||||
|
||||
|
||||
\ **-d|-**\ **-dest**\
|
||||
|
||||
\ **-d|-**\ **-dest**\
|
||||
|
||||
Specifies the hostname of the new destination service node as known by (facing) the management node.
|
||||
|
||||
|
||||
|
||||
\ **-D|-**\ **-destn**\
|
||||
|
||||
|
||||
\ **-D|-**\ **-destn**\
|
||||
|
||||
Specifies the hostname of the destination service node as known by (facing) the nodes.
|
||||
|
||||
|
||||
|
||||
\ **-h|-**\ **-help**\
|
||||
|
||||
|
||||
\ **-h|-**\ **-help**\
|
||||
|
||||
Display usage message.
|
||||
|
||||
|
||||
|
||||
\ **-i|-**\ **-ignorenodes**\
|
||||
|
||||
|
||||
\ **-i|-**\ **-ignorenodes**\
|
||||
|
||||
No modifications will be made on the nodes. If not specified, several xCAT postscripts will be run on the nodes to complete the switch to the new service node.
|
||||
|
||||
|
||||
|
||||
\ **-l|-**\ **-liteonly**\
|
||||
|
||||
|
||||
\ **-l|-**\ **-liteonly**\
|
||||
|
||||
Use this option to ONLY synchronize any AIX statelite files from the primary server to the backup server for the nodes. It will not do the actual moving of the nodes to the backup servers.
|
||||
|
||||
|
||||
|
||||
\ **-P|-**\ **-postscripts**\
|
||||
|
||||
|
||||
\ **-P|-**\ **-postscripts**\
|
||||
|
||||
Specifies a list of extra postscripts to be run on the nodes after the nodes are moved over to the new service node. If \ **all**\ is specified, all the postscripts defined in the postscripts table will be run for the nodes. The specified postscripts must be stored under /install/postscripts directory.
|
||||
|
||||
|
||||
|
||||
\ **-s|-**\ **-source**\
|
||||
|
||||
|
||||
\ **-s|-**\ **-source**\
|
||||
|
||||
Specifies the hostname of the current (source) service node sa known by (facing) the management node.
|
||||
|
||||
|
||||
|
||||
\ **-S|-**\ **-sourcen**\
|
||||
|
||||
|
||||
\ **-S|-**\ **-sourcen**\
|
||||
|
||||
Specifies the hostname of the current service node adapter as known by (facing)
|
||||
the nodes.
|
||||
|
||||
|
||||
|
||||
\ **-V|-**\ **-verbose**\
|
||||
|
||||
|
||||
\ **-V|-**\ **-verbose**\
|
||||
|
||||
Verbose mode.
|
||||
|
||||
|
||||
|
||||
\ **-v|-**\ **-version**\
|
||||
|
||||
|
||||
\ **-v|-**\ **-version**\
|
||||
|
||||
Command Version.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -157,99 +157,99 @@ EXAMPLES
|
||||
|
||||
|
||||
1.
|
||||
|
||||
|
||||
Move the nodes contained in group "group1" to the service node named "xcatsn02".
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove group1 -d xcatsn02 -D xcatsn02-eth1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2.
|
||||
|
||||
|
||||
Move all the nodes that use service node xcatsn01 to service node xcatsn02.
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove -s xcatsn01 -S xcatsn01-eth1 -d xcatsn02 -D xcatsn02-eth1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
3.
|
||||
|
||||
|
||||
Move any nodes that have sn1 as their primary server to the backup service node set in the xCAT node definition.
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove -s sn1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4.
|
||||
|
||||
|
||||
Move all the nodes in the xCAT group named "nodegroup1" to their backup SNs.
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove nodegroup1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
5.
|
||||
|
||||
|
||||
Move all the nodes in xCAT group "sngroup1" to the service node named "xcatsn2".
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove sngroup1 -d xcatsn2
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
6.
|
||||
|
||||
|
||||
Move all the nodes in xCAT group "sngroup1" to the SN named "xcatsn2" and run extra postscripts.
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove sngroup1 -d xcatsn2 -P test1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
7.
|
||||
|
||||
|
||||
Move all the nodes in xCAT group "sngroup1" to the SN named "xcatsn2" and do not run anything on the nodes.
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove sngroup1 -d xcatsn2 -i
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
8.
|
||||
|
||||
|
||||
Synchronize any AIX statelite files from the primary server for compute03 to the backup server. This will not actually move the node to it's backup service node.
|
||||
|
||||
|
||||
|
||||
|
||||
.. code-block:: perl
|
||||
|
||||
|
||||
snmove compute03 -l -V
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user