Which two actions would be useful in verifying the installation?

After Oracle Grid Infrastructure has been installed, you should take a few moments to verify the
installation. Which two actions would be useful in verifying the installation?

After Oracle Grid Infrastructure has been installed, you should take a few moments to verify the
installation. Which two actions would be useful in verifying the installation?

A.
Run the crsctl status resource �t command to confirm that all necessary cluster resources are
online.

B.
Use the operating system utilities to verify that your SCAN addresses are being properly
resolved.

C.
Start Oracle Enterprise Manager and check all monitored targets.

D.
Run the cluvfy comp nodecon �n all �verbose command to verify the entire Grid Infrastructure
installation.

Explanation:
Verifying the Grid Infrastructure Installation
Execute the crsctl command as shown in the slide to confirm that all cluster resources are up and
running.
root@racnode01 ~]# /u01/app/11.2.0/grid/bin/crsctl stat res -t
In addition, you should confirm that your DNS is properly forwarding address requests for your
application and SCAN VIPs to your GNS and that they are resolved properly. You can do this with
dig. Execute the dig command with DNS and VIP addresses as shown:
# dig @myDNS.example.com racnode01-cluster01.example.com
;; QUESTION SECTION:
;racnode01-vip.cluster01.example.com. IN A
;; ANSWER SECTION:

racnode01-vip.cluster01.example.com. 120 IN A
192.0.2.103
# dig @myDNS.example.com cluster01-scan.cluster01.example.com
;; QUESTION SECTION:
;cluster01-scan.cluster01.example.com. IN A
;; ANSWER SECTION:
cluster01-scan.cluster01.example.com. 120 IN A 192.0.2.248
cluster01-scan.cluster01.example.com. 120 IN A 192.0.2.253
cluster01-scan.cluster01.example.com. 120 IN A 192.0.2.254
D60488GC11
Oracle 11g: RAC and Grid Infrastructure Administration Accelerated 2 44



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Sanjay Mevada

Sanjay Mevada

Answer should be A,D

L. Zhu

L. Zhu

A is right. crsctl state res -t will list all cluster components and status
B is worng. use dig to query DNS. it won’t verify if the installation is OK or not
C is wrong. OEM may not be setup yet
D is right. cluvfy -comp nodecon -n all is to verify node connectivity

So A.D. are correct.