Please enter search query.
Search <book_title>...
Veritas Access インストールガイド
Last Published:
2018-08-01
Product(s):
Access (7.4)
Platform: Linux
- Veritas Access の概要
- Veritas Access のライセンス
- システム要件
- Veritas Access をインストールする準備
- VMware ESXi での Veritas Access インストール用の仮想マシンの配備
- クラスタのインストールと設定
- クラスタの各ノードでのオペレーティングシステムのインストール
- ターゲットクラスタノードでの Veritas Access のインストール
- NIC、結合、および VLAN デバイスの管理について
- VLAN のタグ付けについて
- 応答ファイルを使用した Veritas Access のインストールと設定の自動化
- クラスタのノードの表示と追加
- Veritas Access のアップグレードとオペレーティングシステム
- ローリングアップグレードを使用した Veritas Access のアップグレード
- Veritas Access のアンインストール
- 付録 A. インストールの参考情報
- 付録 B. 通信用のセキュアシェルの設定
- 付録 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; ####################################################