The topic, Example: Set Up SAN Storage for CA Enterprise Log Manager, includes the recommendation to disable the SAN drives (LUNs) before installing the operating system on the CA Enterprise Log Manager appliance.
An alternative is to leave the SAN drives enabled but to modify the kick-start file, ca-elm-ks.cfg, with an ISO editing tool, after starting the operating system installation. The modification helps ensure that the install and boot are done from the local hard disk, not from the SAN.
To boot from the local disk (not SAN)
list-hardrives
The list of available drives displays, where the list resembles the following:
cciss/c0d0 - 68GB RAID 1 (cciss is HP Smart Array) Sda - 500GB SAN (sda - h is the SAN Multipathed) Sdb - 500GB SAN Sdc - 500GB SAN Sdd - 500GB SAN Sde - 500GB SAN Sdf - 500GB SAN Sdg - 500GB SAN Sdh - 500GB SAN
bootloader --location=mbr --driveorder=sda,sdb
Change it to the following:
bootloader --location=mbr --driveorder=cciss/c0d0
This change specifies to boot from the local disk only.
clearpart --all --initlabel part /boot --fstype "ext3" --size=100 part pv.4 --size=0 -grow
Change these lines to the following:
part /boot --fstype "ext3" --size=100 --ondisk cciss/c0d0 part pv.4 --size=0 --grow --ondisk cciss/c0d0
This change to the partition definition lines helps ensure that the partitions are created on the cciss/c0d0 disk by name. Using --ondisk, replaces the existing $disk1 and $disk2 variables.
Copyright © 2011 CA. All rights reserved. | Email CA Technologies about this topic |