検索クエリーを入力してください
<book_title> を検索 ...
Veritas Access 7.3 インストールガイド
Last Published:
2017-09-18
Product(s):
Access (7.3)
- Veritas Access の概要
- Veritas Access のライセンス
- システム要件
- システム要件
- Linux の必要条件
- Linux の必要条件
- ネットワークとファイアウォールの要件
- Veritas Access をインストールする準備
- VMware ESXi での Veritas Access インストール用の仮想マシンの配備
- クラスタのインストールと設定
- 応答ファイルを使用した Veritas Access のインストールと設定の自動化
- クラスタのノードの表示と追加
- Veritas Access のアップグレード
- ローリングアップグレードを使用した Veritas Access のアップグレード
- Veritas Access のアンインストール
- 付録 A. インストールの参考情報
- 付録 B. 通信用のセキュアシェルの設定
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(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) ]; #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}="10.200.58.220"; #default gateway of SNAS $CFG{snas_defgateway}="10.200.58.1"; #domain name of DNS $CFG{snas_dnsdomainname}="cdc.veritas.com"; #IP of DNS $CFG{snas_dnsip}="10.200.58.3"; #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}="10.200.58.100"; #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}="10.200.58.108"; #virtual IPs $CFG{virtualiparr}=[ qw(10.200.58.108 10.200.58.109 10.200.58.110 10.200.58.111 10.200.58.112 10.200.58.113 10.200.58.114 10.200.58.115) ]; #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(10.200.58.66 10.200.58.82) ]; #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}{"10.200.58.100"}="priveth0"; $CFG{vcs_lltlink1}{"10.200.58.104"}="priveth0"; $CFG{vcs_lltlink2}{"10.200.58.100"}="priveth1"; $CFG{vcs_lltlink2}{"10.200.58.104"}="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; ####################################################