In preparation for deployments of vCenter and other management VMs, create a shared datastore for the management cluster:
If the LUN is not visible, verify the zoning configuration on the FC switches and the management host access in Unisphere storage management.
Block storage that is presented to vSphere hosts from the PowerMax system has the native Path Selection Policy (PSP) of round-robin (RR) applied by default. While RR is the recommended PSP to apply to PowerMax block storage, the default number of IOPS between the switching of paths is 1,000.
You can reduce the default number of IOPS for all PowerMax LUNs on each vSphere host so that all paths are used more efficiently by running the following CLI command:
for i in `esxcfg-scsidevs -c |awk '{print $1}' | grep naa.XXXX`; do esxcli storage nmp psp roundrobin deviceconfig set --type=iops --iops=# --device=$i; done
where XXXX is the first four digits of the PowerMax disk (or endpoint) devices found by running the following CLI command:
esxcli storage nmp device list
and # is the number of IOPS that you want between the switching of paths.
Additionally, you can create a claim rule to automatically set this value on LUNs that are later mapped to the host by running the following CLI command:
esxcli storage nmp satp rule add -s "VMW_SATP_ALUA_CX" -V "DGC" -P "VMW_PSP_RR"
-O "iops=1"