Veritas InfoScale™ 7.4.2 Installation Guide - Linux
- Section I. Planning and preparation
- Introducing Veritas InfoScale
- Licensing Veritas InfoScale
- 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 II. 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 III. Uninstallation of Veritas InfoScale
- Section IV. Installation reference
- Appendix A. Installation scripts
- Appendix B. Tunable files for installation
- Appendix C. Troubleshooting installation issues
Installing Veritas InfoScale using yum
You can install Veritas InfoScale using yum. yum is supported for Red Hat Enterprise operating system.
To install Veritas InfoScale using yum
Configure a yum repository on a client system.
Create a
.repo
file under/etc/yum.repos.d/
. An example of this.repo
file for Veritas InfoScale is:# cat /etc/yum.repos.d/veritas_infoscale7.repo [repo-Veritas InfoScale] name=Repository for Veritas InfoScale baseurl=file:///path/to/repository/ enabled=1 gpgcheck=1 gpgkey=file:///path/to/repository/RPM-GPG-KEY-veritas-infoscale7
The values for the
baseurl
attribute can start with http://, ftp://, or file:///. The URL you choose needs to be able to access therepodata
directory. It also needs to access all the Veritas InfoScale RPMs in the repository that you create or update.Run the following commands to get the yum repository updated:
# yum repolist
# yum updateinfo
Check the yum group information:
# yum grouplist | grep 7.4.2 AVAILABILITY7.4.2 ENTERPRISE7.4.2 FOUNDATION7.4.2 STORAGE7.4.2
# yum groupinfo AVAILABILITY7.4.2
# yum groupinfo FOUNDATION7.4.2
# yum groupinfo STORAGE7.4.2
# yum groupinfo ENTERPRISE7.4.2
Check the yum configuration. List Veritas InfoScale RPMs.
# yum list 'VRTS*' Available Packages VRTSperl.x86_64 5.16.1.4-RHEL5.2 VRTSsfcpi.noarch 7.4.2.0.000-GENERIC VRTSvlic.x86_64 3.02.7.4.2.010-0 ...
To eliminate the local cache of the repositories' metadata and get the latest information from the specifiedThe Veritas InfoScale RPMs may not be visible immediately if:
The repository was visited before the Veritas InfoScale RPMs were added, and
The local cache of its metadata has not expired.
baseurl
, run the following commands:# yum clean expire-cache # yum list 'VRTS*'
Refer to the Red Hat Enterpirse Linux Deployment Guide for more information on yum repository configuration.
Install the RPMs on the target systems.
To install all the RPMs
1.
Specify each RPM name as its yum equivalent. For example:
# yum install VRTSvlic VRTSperl ... VRTSsfcpi
2.
Specify all of the Veritas InfoScale RPMs using its RPM glob. For example:
# yum install 'VRTS*'
3.
Specify the group name if a group is configured for Veritas InfoScale's RPMs. This name should keep consistency with the one in xml file. In this example, the group name is ENTERPRISE7.4.2:
# yum install @ENTERPRISE7.4.2
Or
# yum groupinstall -y ENTERPRISE7.4.2
To install one RPM at a time
1.
Run the installer -allpkgs command to determine RPM installation order.
# ./installer -allpkgs InfoScale Foundation: PKGS: VRTSperl VRTSvlic VRTSspt VRTSveki VRTSvxvm VRTSaslapm VRTSvxfs VRTSsfmh VRTSsfcpi InfoScale Availability: PKGS: VRTSperl VRTSvlic VRTSspt VRTSveki VRTSllt VRTSgab VRTSvxfen VRTSamf VRTSvcs VRTScps VRTSvcsag VRTSvcsea VRTSsfmh VRTSvbs VRTSvcswiz VRTSsfcpi InfoScale Storage: PKGS: VRTSperl VRTSvlic VRTSspt VRTSveki VRTSvxvm VRTSaslapm VRTSvxfs VRTSfsadv VRTSllt VRTSgab VRTSvxfen VRTSamf VRTSvcs VRTScps VRTSvcsag VRTSdbed VRTSglm VRTScavf VRTSgms VRTSodm VRTSsfmh VRTSsfcpi InfoScale Enterprise: PKGS: VRTSperl VRTSvlic VRTSspt VRTSveki VRTSvxvm VRTSaslapm VRTSvxfs VRTSfsadv VRTSllt VRTSgab VRTSvxfen VRTSamf VRTSvcs VRTScps VRTSvcsag VRTSvcsea VRTSdbed VRTSglm VRTScavf VRTSgms VRTSodm VRTSdbac VRTSsfmh VRTSvbs VRTSvcswiz VRTSsfcpi
2.
Use the same order as the output from the installer -allpkgs command:
# yum install VRTSperl # yum install VRTSvlic ... # yum install VRTSsfcpi
- After you install all the RPMs, use the
/opt/VRTS/install/installer
command to license, configure, and start the product.If the
VRTSsfcpi
RPM is installed before you use yum to install Veritas InfoScale, the RPM is not upgraded or uninstalled. If the/opt/VRTS/install/installer
script is not created properly, use the/opt/VRTS/install/bin/UXRT7.4.2/add_install_scripts
script after all the other Veritas InfoScale RPMs are installed. For example, your output may be similar to the following, depending on the products you install:# /opt/VRTS/install/bin/UXRT7.4.2/add_install_scripts Creating install/uninstall scripts for installed products Creating /opt/VRTS/install/installer for UXRT7.4.2 Creating /opt/VRTS/install/showversion for UXRT7.4.2
To uninstall Veritas InfoScale using yum
- You can uninstall Veritas InfoScale using yum. Use one of the following commands depending on the product that you have installed:
# yum groupremove -y AVAILABILITY7.4.2
# yum groupremove -y FOUNDATION7.4.2
# yum groupremove -y STORAGE7.4.2
# yum groupremove -y ENTERPRISE7.4.2