Added zVM specific options to chhypervisor man page.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@14430 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2012-11-26 17:53:30 +00:00
parent a1e1afdb9e
commit 31323d58fa

View File

@ -42,7 +42,7 @@ B<chhypervisor> I<noderange> [B<--removezfcpfrompool> I<pool> I<lun>]
B<chhypervisor> I<noderange> [B<--resetsmapi>]
B<chhypervisor> I<noderange> [B<--smapi> I<function> I<arguments>]
B<chhypervisor> I<noderange> [B<--smcli> I<function> I<arguments>]
B<chhypervisor> I<noderange> [B<--zfcppoolnames>]
@ -151,7 +151,7 @@ Display usage message.
=over 2
=item B<chhypervisor> I<noderange> [B<--adddisk2pool> I<function> I<region> I<volume> I<group>]
=item B<--adddisk2pool> I<function> I<region> I<volume> I<group>
Add a disk to a disk pool defined in the EXTENT CONTROL. Function type can be
either: (4) Define region as full volume and add to group OR (5) Add existing
@ -159,45 +159,49 @@ region to group. If the volume already exists in the EXTENT CONTROL, use
function 5. If the volume does not exist in the EXTENT CONTROL, but is attached
to SYSTEM, use function 4.
=item B<chhypervisor> I<noderange> [B<--addzfcp2pool> I<pool> I<status> I<wwpn> I<lun> I<size> I<owner>]
=item B<--addzfcp2pool> I<pool> I<status> I<wwpn> I<lun> I<size> I<owner>
Add a zFCP device to a device pool defined in xCAT. The device must have been
carved up in the storage controller and configured with a WWPN/LUN before it
can be added to the xCAT storage pool. z/VM does not have the ability to
communicate directly with the storage controller to carve up disks dynamically.
=item B<chhypervisor> I<noderange> [B<--diskpoolnames>]
=item B<--diskpool> I<name>
List the configuration for a given disk pool.
=item B<--diskpoolnames>
List the disk pool names available.
=item B<chhypervisor> I<noderange> [B<--fcpchannels> I<state>]
=item B<--fcpchannels> I<state>
List the state of real FCP adapter devices.
=item B<chhypervisor> I<noderange> [B<--getnetworknames>]
=item B<--getnetworknames>
List the defined network names available for a given host.
=item B<chhypervisor> I<noderange> [B<--getnetwork> I<name>]
=item B<--getnetwork> I<name>
List the configuration for a given network.
=item B<chhypervisor> I<noderange> [B<--removediskfrompool> I<function> I<region> I<group>]
=item B<--removediskfrompool> I<function> I<region> I<group>
Remove a disk from a disk pool defined in the EXTENT CONTROL. Function type can
be either: (1) Remove region, (2) Remove region from group, (3) Remove region
from all groups, OR (7) Remove entire group .
=item B<chhypervisor> I<noderange> [B<--removezfcpfrompool> I<pool> I<lun>]
=item B<--removezfcpfrompool> I<pool> I<lun>
Remove a zFCP device from a device pool defined in xCAT.
=item B<chhypervisor> I<noderange> [B<--resetsmapi>]
=item B<--resetsmapi>
Reset z/VM SMAPI, assuming the SMAPI worker machines to reset are: VSMWORK1,
VSMWORK2, VSMWORK3, VSMREQIN, and VSMREQIU.
=item B<chhypervisor> I<noderange> [B<--smcli> I<function> I<arguments>]
=item B<--smcli> I<function> I<arguments>
Execute a SMAPI function. A list of APIs supported can be found by using the
help flag, e.g. chhypervisor pokdev61 --smcli -h. Specific arguments associated
@ -206,11 +210,11 @@ e.g. chhypervisor pokdev61 --smcli Image_Query_DM -h. Only z/VM 5.4 SMAPI
functions are supported at this time. Additional SMAPI functions will be added
in subsequent zHCP versions.
=item B<chhypervisor> I<noderange> [B<--zfcppoolnames>]
=item B<--zfcppoolnames>
List the zFCP device pool names available.
=item B<chhypervisor> I<noderange> [B<--zfcppool> I<pool> I<space>]
=item B<--zfcppool> I<pool> I<space>
List the devices in a given zFCP device pool. Space can be either: free or used.
@ -270,59 +274,59 @@ To add a zFCP device to a device pool defined in xCAT, enter:
chhypervisor pokdev61 --addzfcp2pool zfcp1 free 500501234567C890 4012345600000000 8G
=item 3.
To remove a region from a group in the EXTENT CONTROL, enter:
To list the free disks in a given disk pool, enter:
chhypervisor pokdev61 --removediskfrompool 2 DM1234 POOL1
chhypervisor pokdev61 --diskpool POOL1 free
=item 4.
To remove a zFCP device from a device pool defined in xCAT, enter:
chhypervisor pokdev61 --removezfcpfrompool zfcp1 4012345600000000
=item 5.
To reset z/VM SMAPI, enter:
chhypervisor pokdev61 --resetsmapi
=item 6.
To list the disk pool names available, enter:
chhypervisor pokdev61 --diskpoolnames
=item 7.
To list the configuration for a given disk pool, enter:
chhypervisor pokdev61 --diskpool POOL1 free
=item 8.
To list the zFCP device pool names available, enter:
chhypervisor pokdev61 --zfcppoolnames
=item 9.
To list the devices in a given zFCP device pool, enter:
chhypervisor pokdev61 --zfcppool zfcp1
=item 10.
=item 5.
To list the state of real FCP adapter devices, enter:
chhypervisor pokdev61 --fcpchannels free
=item 11.
To list the defined network names available for a given node, enter:
chhypervisor pokdev61 --getnetworknames
=item 12.
=item 6.
To list the configuration for a given network, enter:
chhypervisor pokdev61 --getnetwork GLAN1
=item 13.
=item 7.
To list the defined network names available for a given node, enter:
chhypervisor pokdev61 --getnetworknames
=item 8.
To remove a region from a group in the EXTENT CONTROL, enter:
chhypervisor pokdev61 --removediskfrompool 2 DM1234 POOL1
=item 9.
To remove a zFCP device from a device pool defined in xCAT, enter:
chhypervisor pokdev61 --removezfcpfrompool zfcp1 4012345600000000
=item 10.
To reset z/VM SMAPI, enter:
chhypervisor pokdev61 --resetsmapi
=item 11.
To execute a SMAPI function (Image_Query_DM), enter:
chhypervisor pokdev61 --smcli Image_Query_DM -T LNX3
=item 12.
To list the zFCP device pool names available, enter:
chhypervisor pokdev61 --zfcppoolnames
=item 13.
To list the devices in a given zFCP device pool, enter:
chhypervisor pokdev61 --zfcppool zfcp1
=back