Please enter search query.
Search <book_title>...
Veritas InfoScale™ 7.3.1 Installation Guide - Linux
Last Published:
2017-12-04
Product(s):
InfoScale & Storage Foundation (7.3.1)
- Section I. Introduction to Veritas InfoScale
- Section II. Planning and preparation
- System requirements
- Preparing to install
- Setting up the private network
- Setting up shared storage
- Planning the installation setup for SF Oracle RAC and SF Sybase CE systems
- Section III. Installation of Veritas InfoScale
- Installing Veritas InfoScale using the installer
- Installing Veritas InfoScale using response files
- Installing Veritas Infoscale using operating system-specific methods
- Completing the post installation tasks
- Section IV. Uninstallation of Veritas InfoScale
- Uninstalling Veritas InfoScale using the installer
- Uninstalling Veritas InfoScale using response files
- Section V. Installation reference
- Appendix A. Installation scripts
- Appendix B. Tunable files for installation
- Appendix C. Troubleshooting installation issues
Sample Kickstart configuration file
The following is a sample RedHat Enterprise Linux 6 (RHEL6) Kickstart configuration file.
# The packages below are required and will be installed from OS installation media automatically during the automated installation of products in the DVD, if they have not been installed yet. %packages libudev.i686 device-mapper device-mapper-libs parted libgcc.i686 compat-libstdc++-33 ed ksh nss-softokn-freebl.i686 glibc.i686 libstdc++.i686 audit-libs.i686 cracklib.i686 db4.i686 libselinux.i686 pam.i686 libattr.i686 libacl.i686 %end %post --nochroot # Add necessary scripts or commands here to your need # This generated kickstart file is only for the automated installation of products in the DVD PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin export PATH # # Notice: # * Modify the BUILDSRC below according to your real environment # * The location specified with BUILDSRC should be NFS accessible # to the Kickstart Server # * Copy the whole directories of rpms from installation media # to the BUILDSRC # BUILDSRC="<hostname_or_ip>:/path/to/rpms" # # Notice: # * You do not have to change the following scripts # # define path varibles ROOT=/mnt/sysimage BUILDDIR="${ROOT}/build" RPMDIR="${BUILDDIR}/rpms" # define log path KSLOG="${ROOT}/var/tmp/kickstart.log" echo "==== Executing kickstart post section: ====" >> ${KSLOG} mkdir -p ${BUILDDIR} mount -t nfs -o nolock,vers=3 ${BUILDSRC} ${BUILDDIR} >> ${KSLOG} 2>&1 # install rpms one by one for RPM in VRTSperl VRTSvlic VRTSspt VRTSvxvm VRTSaslapm VRTSvxfs VRTSfsadv VRTSllt VRTSgab VRTSvxfen VRTSamf VRTSvcs VRTScps VRTSvcsag VRTSvcsea VRTSdbed VRTSglm VRTScavf VRTSgms VRTSodm VRTSdbac VRTSsfmh VRTSvbs VRTSsfcpi VRTSvcswiz do echo "Installing package -- $RPM" >> ${KSLOG} rpm -U -v --root ${ROOT} ${RPMDIR}/${RPM}-* >> ${KSLOG} 2>&1 done umount ${BUILDDIR} CALLED_BY=KICKSTART ${ROOT}/opt/VRTS/install/bin/UXRT731/ add_install_scripts >> ${KSLOG} 2>&1 echo "==== Completed kickstart file ====" >> ${KSLOG} exit 0 %end