source: MondoRescue/branches/3.0/mindi/README.ProLiant@ 2997

Last change on this file since 2997 was 2997, checked in by Bruno Cornec, 12 years ago
File size: 5.1 KB
Line 
1$Id$
2
3MondoRescue provides enhanced HP ProLiant support.
4
5HP ProLiant provides the possibility to be configured from a HW perspective at BIOS, Smart Arry (Raid) and iLO (management board) level from a Linux system.
6
7The information is stored in the EEPROM of each HW component (BIOS, SA and iLO), retrieved through the below mentioned HP tools, and stored on the disk with XML files. These files are available at restore time, to be used by the same tools, also available, to reconfigure the HW in a similar way to what it was at backup time.
8
9Only if you add FirmWare components under /usr/local/bin (CPxxx.scexe files) then these files will also be launched at restore time to force a specific FW version to be installed. As long as FirmWare files are not stored under /usr/local/bin, they won't be applied.
10At restore time, MondoRescue will ask a question (if not in unattended mode) in order to know if you want to restore the HW *configuration* (not HW FirmWare) content. It will then re-apply what was stored in the XML files to configure the platform exactly as it was at backup time, from a HW confiuration perspective.
11
12-------------------------------------------------------------------------------------
13
14If you have a ProLiant system you first need to get the hp-scripting-tools, hponcfg and hpacucli packages. Due to licenses issues, mindi cannot provide those tools itself. You need to get them from http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack/
15
16Example for a RHEL6 OS:
17
18wget http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack/RedHat/6Server/x86_64/8.72/hpacucli-8.70-8.0.noarch.rpm
19yum install -y (or worst case rpm -Uvh) hpacucli-8.70-8.0.noarch.rpm
20(will install hpacuscripting under /usr/sbin)
21wget http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack/RedHat/6Server/x86_64/8.72/hponcfg-3.1.1-0.noarch.rpm
22yum install -y (or worst case rpm -Uvh) hponcfg-3.1.1-0.noarch.rpm
23(will install hponcfg under /usr/sbin)
24wget http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack/RedHat/6Server/i386/8.72/hp-scripting-tools-8.70-52.rhel6.i386.rpm
25yum install -y (or worst case rpm -Uvh) hp-scripting-tools-8.70-52.rhel6.i386.rpm
26(will install hp-conrep under /sbin)
27
28You're now ready to check your configuration by running:
29mindi-bkphw /var/cache/mindi /etc/mindi
30[First parameter is the directory where files will be generated,
31 Second parameter is the configuration directory of the file deplist.d/ProLiant.conf is located]
32
33-------------------------------------------------------------------------------------
34Some of these tools are also provided as part of the Smart Start Scripting Toolkit. You can get it from http://www.hp.com/servers/sstoolkit and use the following:
35cd /tmp
36wget ftp://ftp.hp.com/pub/softlib2/software1/pubsw-linux/p1221080004/v63551/ss-scripting-toolkit-linux-8.70.tar.gz
37mkdir ssstk
38cd ssstk
39tar xvfz ../ss-scripting-toolkit-linux-8.70.tar.gz
40cp -a utilities/conrep /usr/sbin
41cp -a utilities/conrep.xml /usr/share/conrep/conrep.xml
42cp -a utilities/hponcfg /usr/sbin
43cp -a utilities/hpacucli/hpacuscripting /usr/sbin
44cp -a utilities/hpacucli/.hpacuscripting /usr/sbin
45
46# For versions <= 1.90
47cp -a utilities/cpqacuxe/cpqacuxe /usr/local/bin
48cp -a utilities/cpqacuxe/bld /usr/local/bin
49mv /usr/local/bin/bld/*.so /usr/local/lib
50echo /usr/local/lib >> /etc/ld.so.conf
51ldconfig
52
53-------------------------------------------------------------------------------------
54Older URL:
55wget ftp://ftp.hp.com/pub/softlib2/software1/pubsw-linux/p308169895/v40154/ss-scripting-toolkit-linux-1.70.tar.gz
56wget ftp://ftp.hp.com/pub/softlib2/software1/pubsw-linux/p308169895/v43548/ss-scripting-toolkit-linux-1.81.tar.gz
57wget ftp://ftp.hp.com/pub/softlib2/software1/pubsw-linux/p308169895/v44247/ss-scripting-toolkit-linux-1.90.tar.gz
58-------------------------------------------------------------------------------------
59If you're making a backup with mondoarchive on a ProLiant system that you want to be able to restore using the Virtual Media function of ProLiants, then you have to ensure that the required drivers will be available at restore time.
60In order to ensure that, you may want to do on 2.2.x (x < 5) versions:
61- Edit your /usr/sbin/mindi script
62- Look for declaration of the variable FORCE_MODS.
63- Change it to FORCE_MODS="usb-storage sr_mod"
64
65Those drivers will then be available at restore time, and your virtual media thus detected and supported.
66As the CD-ROM emulated is a USB one, it will be a slower restore than using a real CD, or the network, but can be an easy way to load the mindi boot image e.g. and launch the rest of the restore through the network.
67
68With latest versions of mindi, those modules are already included and you don't have to do anything to have it work.
Note: See TracBrowser for help on using the repository browser.