Oracle G.I. PRVF-4664 invalid SCAN name
Hi all,
I am try to install G.I. 11gR2 with 2 node (GNS, SCAN, ASM) and Cluster Verification Utility fail with error.
"
INFO: Checking Single Client Access Name (SCAN)...
INFO: Checking name resolution setup for "sky-scan.cluster.oracle.cloud"...
INFO: ERROR:
INFO: PRVF-4664 : Found inconsistent name resolution entries for SCAN name "sky-scan.cluster.oracle.cloud"
INFO: Verification of SCAN VIP and Listener setup failed
"
Before this everything is ok , everything is clean.
I have DNS server (separate VM) installed and in same machine I have DHCP server.
DNS DHCP server OS= OEL6.1
RAC nodes OS = OEL5.7
scanName=sky-scan.cluster.oracle.cloud
clusterName=sky-cluster
GNS=true
gnsSubDomain=cluster.oracle.cloud
gnsVIPAddress=192.168.7.150
before install tested with command
*[grid@rac1 ~]$ ./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose*
and in here also everything is fine.
Also I try to nslookup everything and its also fine.
If anyone knows where are my mistake please help me.
As I am not a network services guy I think my mistake is somewhere in dns
configuration maybe in subdomain but I can't find it :(
*[root@occ named]# cat /etc/dhcp/dhcpd.conf*
ddns-update-style interim;
ignore client-updates;
subnet 192.168.7.0 netmask 255.255.255.0 {
option routers 192.168.7.145;
option subnet-mask 255.255.255.0;
option domain-name "cluster.oracle.cloud";
option domain-name-servers 192.168.7.69;
option time-offset -18000; # Eastern Standard Time
range 192.168.7.100 192.168.7.130;
default-lease-time 86400;
}
*[root@occ named]# cat /etc/named.conf*
options {
listen-on port 53 { any; };
// listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
// allow-query { localhost; };
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
/* Path to ISC DLV key */
bindkeys-file "/etc/named.iscdlv.key";
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
/////////////////////for GRID INFRASTRUCTURE ///////////////////////////
zone "7.168.192.in-addr.arpa" IN {
type master;
file "oracle.cloud.reverse";
allow-update { none; };
};
zone "1.168.192.in-addr.arpa" IN {
type master;
file "priv.cloud.reverse";
allow-update { none; };
};
zone "oracle.cloud." IN {
type master;
file "cloud.zone";
notify no;
};
///////////////End of for GRID INFRASTRUCTURE ////////////////////////////
zone "." IN {
type hint;
file "named.ca";
};
include "/etc/named.rfc1912.zones";
*[root@occ named]# cat /var/named/oracle.cloud.reverse*
$ORIGIN 7.168.192.in-addr.arpa.
$TTL 1H ; Time to live
@ IN SOA occ.oracle.cloud. root (
2
3H ;serial (todays date + todays serial #)
1H ;refresh 3 hours
1W ;retry 1 hour
1H) ;expire 1 week
7.168.192.in-addr.arpa. IN NS occ.oracle.cloud.
IN NS occ.oracle.cloud.
69 IN PTR occ.oracle.cloud.
67 IN PTR rac1.oracle.cloud.
68 IN PTR rac2.oracle.cloud.
150 IN PTR cluster-gns.oracle.cloud.
*[root@occ named]# cat /var/named/priv.cloud.reverse*
$ORIGIN 1.168.192.in-addr.arpa.
$TTL 1H ; Time to live
@ IN SOA occ.oracle.cloud. root (
2
3H ;serial(todays date + todays serial #)
1H ;refresh 3 hours
1W ;retry 1 hour
1H) ;expire 1 week
1.168.192.in-addr.arpa. IN NS occ.oracle.cloud.
IN NS occ.oracle.cloud.
69 IN PTR occ-priv1.oracle.cloud.
67 IN PTR rac1-priv1.oracle.cloud.
68 IN PTR rac2-priv1.oracle.cloud.
*[root@occ named]# cat /var/named/cloud.zone*
$TTL 1H ; Time to live
$ORIGIN oracle.cloud.
@ IN SOA occ.oracle.cloud. root (
43 ; serial (todays date + todays serial #)
3H ; refresh 3 hours
15M ; retry 1 hour
1W ; expire 1 week
1D) ; minimum 24 hour
IN NS occ
occ IN A 192.168.7.69
rac1 IN A 192.168.7.67
rac2 IN A 192.168.7.68
dns CNAME oracle.cloud.
occ-priv1 IN A 192.168.1.69
rac1-priv1 IN A 192.168.1.67
rac2-priv1 IN A 192.168.1.68
cluster-gns IN A 192.168.7.150
; sub-domain definitions
$ORIGIN cluster.oracle.cloud.
@ IN NS cluster-gns.oracle.cloud.
./thanks