Configure the DNS Server for SCAN VIP on Linux
How to Configure the DNS Server for SCAN VIP on Linux for 11gR2 GI installation [ID 1107295.1]
--------------------------------------------------------------------------------------------------------------------------------------
Modified 16-SEP-2010 Type HOWTO Status PUBLISHED
In this Document
Goal
Solution
References
-------------------------------------------------------------------------------------------------------------------------------------
Applies to:
Oracle Server - Enterprise Edition - Version: 11.2.0.1 to 11.2.0.2 - Release: 11.2 to 11.2
Linux x86
Linux x86-64
Linux Itanium
The commands listed in this Note tested at Red Hat Enterprise Server 5 Update 2. For the other Linux enviroments it should be similar.
Goal
This note explains how to configure the DNS to accommodate SCAN-VIP. In most cases this task is carried out by the Network Administrator, but awareness of these steps can be very useful for assisting your network administrator in configuring DNS properly for SCAN and/or provide the ability to configure DNS in a sandbox enviroment.
If there is no separate DNS Server box available for your test case, you can have one of the cluster nodes (example: rac1 or rac2) also acting as the DNS server. Note, however, that using one of your cluster nodes as your DNS server is not supported in production.
This note will demonstrate how to prepare the SCAN-IP on a Linux DNS Server:
When installing Grid Infrastructure, there are 2 options:
1. Configure GNS and let it handle name resolution
OR
2. Choose not to configure GNS and configure each Node and SCAN name with IP addresses defined in DNS
For the purpose of this note, we will not involve GNS (see Note:946452.1 for how to configure GNS).
The three nodes involved in this case are: rac1, rac2, and dns1. The domain is: testenv.com
Node Name Public IP Private IP VIP IP
rac1.testenv.com 17.17.0.1 172.168.2.1 192.168.2.221
rac2.testenv.com 17.17.0.2 172.168.2.2 192.168.2.222
dns1.testenv.com 17.17.0.35
The target scan-vip name is: rac-scan
rac-scan will be configued with the following 3 IP addresses: 192.168.2.11, 192.168.2.12, 192.168.2.13
Solution
1. On dns1.testenv.com install the DNS Server Package:
# yum install bind-libs bind bind-utils
Three packages must be installed on Linux for DNS Server:
bind (includes DNS server, named)
bind-utils (utilities for querying DNS servers about host information)
bind-libs (libraries used by the bind server and utils package)
You can obtain an account from the Yum Server which will install the package for you automatically.
OR
You can manually download these packages:
bind.XXX.rpm (for example bind-9.2.4-22.el3.i386.rpm)
bind-utils.XXX.rpm
bind-libs.XX.rpm
And use the rpm command to do the DNS Server installation (For example)
# rpm -Uvh bind-9.2.3-1.i386.rpm
2. On dns1.testenv.com system edit the "/etc/named.conf" file
a. Configure the "forwarder" under "options" in "/etc/named.conf " (If you do not have another DNS or Router that can resolve names for you, skip this step) :
options {
.
.
// Forwarder: Anything this DNS can't resolve gets forwarded to other DNS.
forwarders { 10.10.1.1; }; // This is the IP for another DNS/Router };
b. Configure Zone Entries for your domain in "/etc/named.conf "
If you are using localdomain, it has been automatically configured and you can skip this step.
For this case we are using "testenv.com" so here we need to add the following lines to "/etc/named.conf"
zone "testenv.com" IN {
type master;
file "testenv.com.zone";
allow-update { none; };
};
The "file" parameter specifies the name of the file in the "/var/named/" directory that contains the configuration for this zone.
c. Configure reverse lookup in "/etc/named.conf "
Reverse lookup is used to let the client find out if the hostname matches to the related IP. Because we are using 192.168.2.X for VIP and SCAN-VIP so we need to configure the reverse lookup for 192.168.2.X
To configure reverse lookup add the following to "/etc/named.conf"
zone "2.168.192.in-addr.arpa." IN {
type master;
file "2.168.192.in-addr.arpa";
allow-update { none; };
};
3. On dns1.testenv.com edit the config files under /var/named
a. Edit the DNS Zone Configuration file:
If you are using localdomain you can edit /var/named/localdomain.zone
For this case we edit the file name: testenv.com.zone and localdomain.zone
Add the line below to the end of this file: vi /var/named/testenv.com.zone
rac1-vip IN A 192.168.2.221
rac2-vip IN A 192.168.2.222
rac-scan IN A 192.168.2.11
rac-scan IN A 192.168.2.12
rac-scan IN A 192.168.2.13
Put all the private IPs, VIP and SCAN VIPs in the DNS config file. If you only want the DNS to resolve the scan-vip, only include the rac-scan with its three corresponding IP addresses in the file. Also if you only need one SCAN IP, you can put only one entry in the file.
b. Create/Edit the "/var/named/2.168.192.in-addr.arpa" file for reverse lookups as follows: -------SCAN-IP網段(95.203.10.in-addr.arpa)
$ORIGIN 2.168.192.in-addr.arpa.
$TTL 1H
3H
1H
1W
1H )
2.168.192.in-addr.arpa. IN NS testenv.com.
221 IN PTR rac1-vip.testenv.com.
222 IN PTR rac2-vip.testenv.com.
11 IN PTR rac-scan.testenv.com.
12 IN PTR rac-scan.testenv.com.
13 IN PTR rac-scan.testenv.com.
4. On dns1.testenv.com : stop/start DNS Server to ensure it can be successfully restarted and make sure the DNS Server will be started automatically:
# service named stop
# service named start
# chkconfig named on
The DNS Server configuration has been completed, next we need to point our RAC nodes to use this DNS server for name resolution.
5. Configure "/etc/resolv.conf" on all nodes:
nameserver 17.17.0.35
search localdomain testenv.com
It should point to the DNS Server Address. In this case nameserver has been set to the IP address of dns1. If the node itself is also acting as the DNS Server it should point to its own IP address.
6. Change the hosts search order in /etc/nsswitch.conf on all nodes:
hosts: dns files nis
The default sequence is: files nis dns; We must move dns to the first entry.
At this point the configuration is complete. We should be able to test the forward and reverse lookups using the "nslookup" command.
# nslookup rac-scan.testenv.com
Server: 17.17.0.35
Address: 17.17.0.35#53
Name: rac-scan.testenv.com
Address: 192.168.2.11
Name: rac-scan.testenv.com
Address: 192.168.2.12
Name: rac-scan.testenv.com
Address: 192.168.2.13
# nslookup 192.168.2.11
Server: 17.17.0.35
Address: 17.17.0.35#53
11.2.168.192.in-addr.arpa name = rac-scan.testenv.com.
# nslookup 192.168.2.12
Server: 17.17.0.35
Address: 17.17.0.35#53
12.2.168.192.in-addr.arpa name = rac-scan.testenv.com.
# nslookup 192.168.2.13
Server: 17.17.0.35
Address: 17.17.0.35#53
13.2.168.192.in-addr.arpa name = rac-scan.testenv.com.
If we try to ping rac-scan.testenv.com at this moment you will find it will display one of our SCAN ip addresses but it will not be able to be reached. This is correct behavior.
Once the GI software has been installed and is running it will bring these IP addresses online and at that point the SCAN should be resolvable.
References
NOTE:811293.1 - RAC Assurance Support Team: RAC Starter Kit and Best Practices (AIX)
NOTE:887522.1 - 11gR2 Grid Infrastructure Single Client Access Name (SCAN) Explained
NOTE:946452.1 - DNS and DHCP Setup Example for Grid Infrastructure GNS
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24867586/viewspace-712800/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- How to Configure the DNS Server for 11gR2 SCAN On LinuxDNSServerLinux
- How to update SCAN VIP (ora.scan.vip) [ID 952903.1]
- Oracle Linux 7 Configure DNSOracleLinuxDNS
- configure vnc server in linuxVNCServerLinux
- scan-dns配置DNS
- RAC改VIP和SCAN IP
- Oracle RAC修改public, VIP, SCAN IPOracle
- rac 手動漂移scan ip vip
- RAC_網路_VIP漂移_SCAN IP
- Oracle RAC修改public,private,vip scan IPOracle
- How to update the IP address of the SCAN VIP
- oracle 11g rac 修改VIP、scan VIP、priv IP操作文件Oracle
- configure shared serverServer
- Oracle RAC中的Public IP, VIP和Internal IP,SCANOracle
- oracle 11gR2 scan ip (DNS模式)OracleDNS模式
- RAC中的各種IP-PUBLIC-VIP-Private-SCAN IP
- oracle 11gR2 修改 DNS 方式 SCAN IPOracleDNS
- How to configure password openldap server in Red Hat Enterprise Linux 5?LDAServerLinux
- Redhat 5.8 作業系統上DNS詳細配置(DNS resolution for SCAN VIPs)Redhat作業系統DNS
- PRCR-1079 : Failed to start resource ora.scan1.vipAI
- oracle 11gR2 如何修改scan vip 地址 /etc/hosts方式Oracle
- 導致 Scan VIP 和 Scan Listener(監聽程式)出現故障的最常見的 5 個問題
- RAC_TNS故障轉移負載均衡、SCAN IP、VIP、PUBLIC IP負載
- git gitlab server install and configureGitlabServer
- 11g RAC 修改PUBLIC-IP、VIP、PRIV-IP、SCAN-IP
- How to Install and Configure VNC Server in CentOS 7VNCServerCentOS
- configure ssh service in linux :Linux
- [20180427]SCAN_IP DNS 反向解析2.txtDNS
- RAC 11GR3雙網段設定兩套VIP SCAN IP以及LISTENER
- 配置linux DNSLinuxDNS
- How To Configure Server Side Transparent Application FailoverServerIDEAPPAI
- Linux NTP configure and Hangcheck-timeLinuxGC
- linux 修改 dns 配置LinuxDNS
- Linux中DNS配置LinuxDNS
- WebLogic Server 11g and 12c Configure SSLWebServer
- ECE4016 A simple Local DNS ServerDNSServer
- linux start_udev 導致VIP漂移Linuxdev
- Redhat linux DNS配置指南RedhatLinuxDNS