请输入搜索词进行查询
搜索 <book_title>...
Veritas Access 安装指南
Last Published:
2018-10-26
Product(s):
Access (7.4.2)
Platform: Linux
- Veritas Access 授权许可
- 系统要求
- 准备安装 Veritas Access
- 在 VMware ESXi 中部署用于安装 Veritas Access 的虚拟机
- 安装和配置群集
- 使用响应文件自动运行 Veritas Access 安装和配置
- 显示和添加群集节点
- 升级操作系统和 Veritas Access
- 执行滚动升级
- 卸载 Veritas Access
- 附录 A. 安装参考
- 附录 B. 配置安全 Shell 进行通信
- 附录 C. 手动部署 Veritas Access
Veritas Access 安装和配置的响应文件示例
以下示例显示用于安装和配置 Veritas Access 的响应文件。
####################################################
our %CFG;
#Installs Product packages.
$CFG{opt}{install}=1;
$CFG{opt}{installallpkgs}=1;
$CFG{opt}{comsetup}=1;
$CFG{opt}{noipc}=1;
$CFG{opt}{ssh}=1;
$CFG{prod}="SNAS73";
$CFG{opt}{licensefile}="<absolute_path_of_licfile>";
#Performs the configuration if the packages are already installed
$CFG{opt}{configure}=1;
#the PCI IDs of slave NICs
$CFG{bondpool}{bond0}=[ qw(0000:02:09.0 0000:02:07.0) ];
$CFG{bondpool}{bond1}=[ qw(0000:02:04.0 0000:02:08.0) ];
#mode of each bond
$CFG{bondmode}{bond0}=5;
$CFG{bondmode}{bond1}=6;
#names of bond
$CFG{bondname}=[ qw(bond0 bond1) ];
#the PCI IDs of excluded NICs
$CFG{exclusion}=[ qw(0000:02:03.0 0000:02:0a.0) ];
#the PCI IDs of all the bonded NICs
$CFG{publicbond}=[ qw(0000:02:03.0 0000:02:04.0 0000:02:07.0
0000:02:08.0) ];
#public IPs
$CFG{publiciparr}=[ qw(10.200.58.100 10.200.58.101 10.200.58.102
10.200.58.103 10.200.58.104 10.200.58.105 10.200.58.106 10.200.58.107) ];
#netmask for public IPs
$CFG{publicnetmaskarr}=[ qw(192.168.30.10 192.168.30.11 192.168.30.12
192.168.30.13 192.168.30.14 192.168.30.15 192.168.30.16 192.168.30.17) ];
#the user name to register with Red Hat subscription management
$CFG{redhat_subscription_username}="rhel_user";
#the password to register with Red Hat subscription management
$CFG{redhat_subscription_password}="rhel_password";
#clustername of SNAS
$CFG{snas_clustername}="testsnas";
#console IP of SNAS
$CFG{snas_consoleip}="192.168.30.40";
#default gateway of SNAS
$CFG{snas_defgateway}="192.168.30.1";
#domain name of DNS
$CFG{snas_dnsdomainname}="cdc.veritas.com";
#IP of DNS
$CFG{snas_dnsip}="192.168.30.2";
#NTP server name
$CFG{snas_ntpserver}="ntp.veritas.com";
#number of VIPs on each NIC
$CFG{snas_nvip}=1;
#netmask of public IPs(only ipv4 environment)
$CFG{snas_pnmaskstart}=255.255.255.0;
#the initial IP of public IPs
$CFG{snas_pipstart}="192.168.30.10";
#if use separate console port, 1 for yes, 0 for no
$CFG{snas_sepconsoleport}="0";
#netmask of virutal IPs(only ipv4 environment)
$CFG{snas_vnmaskstart}=255.255.255.0;
#the initial IP of virtual IPs
$CFG{snas_vipstart}="192.168.30.18";
#virtual IPs
$CFG{virtualiparr}=[ qw(192.168.30.18 192.168.30.19 192.168.30.20
192.168.30.21 192.168.30.22 192.168.30.23 192.168.30.24 192.168.30.25) ];
#netmask for virual IPs
$CFG{virtualnetmaskarr}=[ qw(255.255.255.0 255.255.255.0 255.255.255.0
255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0 255.255.255.0) ];
#target systems
$CFG{systems}=[ qw(192.168.30.80 192.168.30.81) ];
#indicates whether to start llt/gab when user wants to setup a single
node cluster
$CFG{vcs_allowcomms}=1;
#define the unique cluser id with a string number
$CFG{vcs_clusterid}=325;
#define the cluster name with a string
$CFG{vcs_clustername}="testsnas";
#define the nic name for the first heartbeat link.
$CFG{vcs_lltlink1}{"192.168.30.10"}="priveth0";
$CFG{vcs_lltlink1}{"192.168.30.13"}="priveth0";
$CFG{vcs_lltlink2}{"192.168.30.10"}="priveth1";
$CFG{vcs_lltlink2}{"192.168.30.13"}="priveth1";
#define the encrypted user password
$CFG{vcs_userenpw}=[ qw(GPQiPKpMQlQQoYQkPN) ];
#define the added username for VCS
$CFG{vcs_username}=[ qw(admin) ];
#define the user privilege
$CFG{vcs_userpriv}=[ qw(Administrators) ];
1;
####################################################