1. 程式人生 > >rhel 6.7 安裝Oracle RAC 12.2.0.1

rhel 6.7 安裝Oracle RAC 12.2.0.1

RHEL 6.7上安裝Oracle RAC 12.2.0.1

1.  作業系統及儲存配置

1.1需要安裝的OS package

#################################

Table 4-4 x86-64 Red Hat Enterprise Linux 6Minimum Operating System

Requirements

Supported distributions: ? Red HatEnterprise Linux 6.4: 2.6.32-358.el6.x86_64 or later

Packages for Red Hat Enterprise Linux 6

The following packages (or later versions)must be installed:

OpenSSH

binutils-2.20.51.0.2-5.36.el6 (x86_64)

compat-libcap1-1.10-1 (x86_64)

compat-libstdc++-33-3.2.3-69.el6 (x86_64)

compat-libstdc++-33-3.2.3-69.el6 (i686)

e2fsprogs-1.42.8-1.0.2.el6.x86_64

e2fsprogs-libs-1.42.8-1.0.2.el6 (x86_64)

glibc-2.12-1.107.el6 (i686)

glibc-2.12-1.107.el6 (x86_64)

glibc-devel-2.12-1.107.el6 (i686)

glibc-devel-2.12-1.107.el6 (x86_64)

ksh

libaio-0.3.107-10.el6 (x86_64)

libaio-0.3.107-10.el6 (i686)

libaio-devel-0.3.107-10.el6 (x86_64)

libaio-devel-0.3.107-10.el6 (i686)

libX11-1.5.0-4.el6 (i686)

libX11-1.5.0-4.el6 (x86_64)

libXau-1.0.6-4.el6 (i686)

libXau-1.0.6-4.el6 (x86_64)

libXi-1.6.1-3.el6 (i686)

libXi-1.6.1-3.el6 (x86_64)

libXtst-1.2.1-2.el6 (i686)

libXtst-1.2.1-2.el6 (x86_64)

libgcc-4.4.7-3.el6 (i686)

libgcc-4.4.7-3.el6 (x86_64)

libstdc++-4.4.7-3.el6 (i686)

libstdc++-4.4.7-3.el6 (x86_64)

libstdc++-devel-4.4.7-3.el6 (i686)

libstdc++-devel-4.4.7-3.el6 (x86_64)

libxcb-1.8.1-1.el6 (i686)

libxcb-1.8.1-1.el6 (x86_64)

make-3.81-20.el6 (x86_64)

net-tools-1.60-110.el6_2 (x86_64) (forOracle RAC and Oracle Clusterware)

nfs-utils-1.2.3-36.el6 (x86_64) (for OracleACFS)

smartmontools-5.43-1.el6 (x86_64)

sysstat-9.0.4-20.el6 (x86_64)

###############################

1.2關閉  SELINUX

#關閉selinux

echo "

SELINUX=disabled

" >> /etc/selinux/config

setenforce 0

1.3關閉防火牆 

關閉防火牆

#臨時關閉防火牆:

 /etc/init.d/iptables stop

#永久關閉防火牆:

chkconfig --level 35 iptables off

1.4關閉NTP服務 

關閉作業系統ntp時間同步服務,使用oracle gi ctss 時間同步

/etc/init.d/ntp stop

chkconfig ntpd off

mv /etc/ntp.conf /etc/ntp.conf.bak

1.5載入pam_limits.so模組

echo "

session required/lib64/security/pam_limits.so

session required pam_limits.so">> /etc/pam.d/login

1.6建立安裝組及使用者

/usr/sbin/groupadd -g 54321 oinstall

/usr/sbin/groupadd -g 54322 dba

/usr/sbin/groupadd -g 54323 oper

/usr/sbin/groupadd -g 54324 backupdba

/usr/sbin/groupadd -g 54325 dgdba

/usr/sbin/groupadd -g 54327 asmdba

/usr/sbin/groupadd -g 54328 asmoper

/usr/sbin/groupadd -g 54329 asmadmin

/usr/sbin/useradd -u 54321 -g oinstall -Gasmadmin,asmdba,asmoper,dba grid

echo grid|passwd --stdin grid

/usr/sbin/useradd -u 54322 -g oinstall -Gdba,backupdba,dgdba,asmadmin,oper,asmdba oracle

echo oracle|passwd --stdin oracle

1.7配置使用者的shell limit

echo "

grid soft nofile 1024

grid hard nofile 65536

grid soft nproc 2047

grid hard nproc 16384

grid soft stack 10240

grid hard stack 32768

oracle soft nofile 1024

oracle hard nofile 65536

oracle soft nproc 2047

oracle hard nproc 16384

oracle soft stack 10240

oracle hard stack 32768

oracle hard memlock 4456991

" >> /etc/security/limits.conf

Maximum locked memory limit :memlock

SoftLimit :at least 90 percent of the current RAM when HugePages memory isenabled

and at least 3145728 KB (3 GB) when HugePagesmemory is disabled  

HardLimit :at least 90 percent of the current RAM when HugePages memory is enabled

and at least 3145728 KB (3 GB) when  HugePages memory is disabled

1.8作業系統核心引數調整

echo "

fs.file-max = 6815744

kernel.sem = 250 32000 100 128

kernel.shmmni = 4096

kernel.shmall = 524288

kernel.shmmax =68719476736     

net.core.rmem_default = 262144

net.core.rmem_max = 4194304

net.core.wmem_default = 262144

net.core.wmem_max = 1048576

fs.aio-max-nr = 1048576

net.ipv4.ip_local_port_range = 9000 65500

 ">> /etc/sysctl.conf

1.9配置oracle使用者的.bash_profile

##配置oracle使用者的.bash_profile。

echo "

export PATH

export TMP=/tmp

export TMPDIR=$TMP

export ORACLE_BASE=/u01/app/oracle

exportORACLE_HOME=$ORACLE_BASE/product/12.2.0/db_1

export ORACLE_SID=lixora1

export PATH=/usr/sbin:$PATH

export PATH=$ORACLE_HOME/bin:$PATH

exportLD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

exportCLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

umask 022  " >> /home/oracle/.bash_profile

echo "

if [ $USER = "oracle" ] || [$USER = "grid" ]; then

       if [ $SHELL = "/bin/ksh" ]; then

        ulimit -p 16384

              ulimit -n 65536

       else

              ulimit -u 16384 -n 65536

       fi

       umask 022

fi " >> /etc/profile

1.10配置grid使用者的.bash_profile

##配置grid使用者的.bash_profile。

echo "

export TMP=/tmp

export TMPDIR=$TMP

export ORACLE_BASE=/u01/app/grid

export ORACLE_HOME=/u01/app/12.2.0/grid

export ORACLE_SID=+ASM1

export PATH=/usr/sbin:$PATH

export PATH=$ORACLE_HOME/bin:$PATH

exportLD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

exportCLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

export CVUQDISK_GRP=oinstall

umask 022 ">>/home/grid/.bash_profile

1.11配置root 使用者 .bash_profile

echo "

# Grid environment

PATH=$PATH:/u01/app/12.2.0/grid/bin/

export PATH

" >>   ~/.bash_profile

1.12建立Inventory 目錄(可選)

 1.13建立Grid Base , Grid Home, Oracle Base, Oracle Home 目錄

##grid_base & grid_home &ORACLE_HOME 建立

mkdir -p /u01/app/grid

mkdir -p /u01/app/12.1.0/grid

mkdir -p/u01/app/oracle/product/12.2.0/db_1

chown -R grid.oinstall /u01

chown -R oracle.oinstall /u01/app/oracle

chmod -R 775 /u01

1.14配置hosts檔案

echo "

# Public

10.80.18.40 12cR2-RAC1

10.80.18.41 12cR2-RAC2  

# Virtual

10.80.18.42 12cR2-RAC1-vip

10.80.18.43 12cR2-RAC2-vip

# Private

192.168.88.88  12cR2-RAC1-priv

192.168.88.89  12cR2-RAC2-priv

# SCAN

10.80.18.45 12cR2-RAC-scanip

" >> /etc/hosts

 網路測試

# Public

ping  -c 3 12cR2-RAC1

ping  -c 3 12cR2-RAC2

# Virtual

ping  -c 3 12cR2-RAC1-vip

ping  -c 3 12cR2-RAC2-vip

# Private

ping  -c 3 12cR2-RAC1-priv

ping  -c 3 12cR2-RAC2-priv

# SCAN

ping  -c 3 12cR2-RAC-scanip

1.15ASM儲存空間規劃

GI ocr voting儲存空間要求

Cluster Configuration

Redundancy Level

Space Required for DATADisk Group containing Oracle Clusterware Files (OCR and Voting Files)

Space Required for MGMTDisk Group containing the GIMR and Oracle Clusterware Backup Files

Total Storage

Two nodes, 4 MB Allocation Unit (AU),one Oracle ASM disks

External

1.4 GB

At least 37.6 GB for a cluster with 4 nodes or less. Additional 4.7 GB space required for clusters with 5 or more nodes.

39 GB

Two nodes, 4 MB Allocation Unit (AU),three Oracle ASM disks

Normal

2.5 GB

75.5 GB

78 GB

Two nodes, 4 MB Allocation Unit (AU),five Oracle ASM disks

High

3.6 GB

113.4 GB

117 GB

Two nodes, 4 MB Allocation Unit (AU), three Oracle ASM disks

Flex

2.5 GB

75.5 GB

78 GB

#############ASM DISKconfig#####################

[[email protected] sys]# fdisk -l |grep/dev/sd

Disk /dev/sda: 64.4 GB, 64424509440 bytes

/dev/sda1  *           1          64      512000  83  Linux

/dev/sda2              64        7833   62401536   8e  Linux LVM

Disk /dev/sdc: 17.2 GB, 17179869184 bytes

Disk /dev/sdb: 32.2 GB, 32212254720 bytes

Disk /dev/sdd: 17.2 GB, 17179869184 bytes

Disk /dev/sde: 17.2 GB, 17179869184 bytes

Disk /dev/sdf: 2147 MB, 2147483648 bytes

Disk /dev/sdg: 2147 MB, 2147483648 bytes

Disk /dev/sdh: 2147 MB, 2147483648 bytes

Disk /dev/sdi: 2147 MB, 2147483648 bytes

Disk /dev/sdj: 2147 MB, 2147483648 bytes

Disk /dev/sdl: 8589 MB, 8589934592 bytes

Disk /dev/sdk: 8589 MB, 8589934592 bytes

[[email protected] ~]# fdisk -l |grep /dev/sd

Disk /dev/sda: 64.4 GB, 64424509440 bytes

/dev/sda1  *           1          64     512000   83  Linux

/dev/sda2              64        7833   62401536   8e  Linux LVM

Disk /dev/sdc: 17.2 GB, 17179869184 bytes

Disk /dev/sdb: 32.2 GB, 32212254720 bytes

Disk /dev/sdd: 17.2 GB, 17179869184 bytes

Disk /dev/sde: 17.2 GB, 17179869184 bytes

Disk /dev/sdf: 2147 MB, 2147483648 bytes

Disk /dev/sdi: 2147 MB, 2147483648 bytes

Disk /dev/sdh: 2147 MB, 2147483648 bytes

Disk /dev/sdg: 2147 MB, 2147483648 bytes

Disk /dev/sdj: 2147 MB, 2147483648 bytes

Disk /dev/sdl: 8589 MB, 8589934592 bytes

Disk /dev/sdk: 8589 MB, 8589934592 bytes

[[email protected] ~]#

for i inb c d e f g h i j k;

do

echo"KERNEL==\"sd*\", BUS==\"scsi\",PROGRAM==\"/sbin/scsi_id --whitelisted --replace-whitespace--device=/dev/\$name\", RESULT==\"`/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/sd$i`\", NAME=\"asm-disk$i\",OWNER=\"grid\", GROUP=\"asmadmin\",MODE=\"0660\""     >> /etc/udev/rules.d/99-oracle-asmdevices.rules

done

[[email protected] sys]# cat/etc/udev/rules.d/99-oracle-asmdevices.rules

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c2937d53668cf48a1f08139d7528",NAME="asm-diskb", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c29075f24a41be4b0ed630e5bc01",NAME="asm-diskc", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted --replace-whitespace--device=/dev/$name",RESULT=="36000c29847aec667ee1abaf5c6b30865",NAME="asm-diskd", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name", RESULT=="36000c29135697f483b940128f5170a93",NAME="asm-diske", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c29804841bd8173c1b9155816e41",NAME="asm-diskf", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c2933094fd38e1ac06c3872f7d03",NAME="asm-diskg", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c2907ae9b3a5c83c6d40d3d3b6c9",NAME="asm-diskh", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*", BUS=="scsi",PROGRAM=="/sbin/scsi_id --whitelisted --replace-whitespace--device=/dev/$name",RESULT=="36000c29f8470d44adcf34aa11fd5a850",NAME="asm-diski", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c297e7fcebd56e5c8224f2465930",NAME="asm-diskj", OWNER="grid", GROUP="asmadmin",MODE="0660"

KERNEL=="sd*",BUS=="scsi", PROGRAM=="/sbin/scsi_id --whitelisted--replace-whitespace --device=/dev/$name",RESULT=="36000c29b8b050f4fa18d5826b0a2f5de",NAME="asm-diskk", OWNER="grid", GROUP="asmadmin",MODE="0660"

2.安裝配置叢集GRID

2.1使用image-based 方式安裝GRID

2.2. 使用ASMCA配置磁碟組

3.安裝Database軟體

4 .DBCA建立資料庫

chkconfig --list iptables

chkconfig --list NetworkManager

getenforce

[[email protected] ~]$ cd $ORACLE_HOME

[[email protected] grid]$ pwd

/u01/app/12.2.0/grid

[[email protected] grid]$ nohup unzip/u01/linuxx64_12201_grid_home.zip &

[1]+ Done                    nohupunzip -q /u01/linuxx64_12201_grid_home.zip

-q 表示靜默方式

選擇“Configure Oracle Grid Infrastructure for a New Cluster”,點選Next

選擇“Configure an Oracle Standalone Cluster”,點選Next,關於DomainServices Cluster

和Member Cluster,請檢視Oracle官方文件。

更改SCAN NAME為scanip,取消“Configure GNS”,本測試不使用GNS,點選Next

    cluster name 必須字母打頭。

scan name 也必須要字母打頭

點選Add,新增節點2

點選SSH connectivity,配置使用者等效性

選擇配置私有網絡卡和公有網絡卡,點選Next

選擇“Configure ASM using block devices”,點選Next

本測試把GIMR和Voting disk,OCR放置在同一個DG,因此選擇NO,點選Next

輸入Disk  Group  Name: OCR_VOTE_MGMT,  Redundancy選擇External,選擇/dev/asm-disk1和/dev/asm-disk2,如果列表中沒有顯示出可用磁碟,點選Change Discovery Path, 輸入“/dev/asm*”。點選Next

Diskgroup name 不能使用中劃線

空間規劃需求:

輸入ASM例項相關密碼,點選Next

選擇“Do not use Intelligent Platform Management Interface(IPMI)”,點選Next

配置是否註冊到EM cloud Control,點選Next

配置管理組,點選Next

設定GRID Base目錄,點選Next

設定Inventory目錄,點選Next

12cR2中,安裝可以自動執行root.sh, 本次測試選擇手動執行。

進行Prerequisite Checks

根據結果,修復不符合要去求的配置,對於Fixable的問題,點選Fix&Check  Again,按照提示進行修復,對於可以忽略的錯誤,選擇“Ignore  All”,本測試沒有配置DNS,因此忽略resolv.conf和DNS/NIS nameservice的問題。點選Next

列出之前安裝配置的資訊,檢查正確無誤後,點選Next

開始配置

按照要求,在所有節點按順序執行orainstRoot.sh和root.sh

[[email protected] oraInventory]# cd/u01/app/12.2.0/

[[email protected] 12.2.0]# cd grid/

[[email protected] grid]# pwd

/u01/app/12.2.0/grid

[[email protected] grid]#/u01/app/12.2.0/grid/root.sh

Performing root user operation.

The following environment variables are setas:

   ORACLE_OWNER= grid

   ORACLE_HOME=  /u01/app/12.2.0/grid

Enter the full pathname of the local bindirectory: [/usr/local/bin]:

  Copying dbhome to /usr/local/bin ...

  Copying oraenv to /usr/local/bin ...

  Copying coraenv to /usr/local/bin ...

Creating /etc/oratab file...

Entries will be added to the /etc/oratabfile as needed by

Database Configuration Assistant when adatabase is created

Finished running generic part of rootscript.

Now product-specific root actions will beperformed.

Relinking oracle with rac_on option

Using configuration parameter file:/u01/app/12.2.0/grid/crs/install/crsconfig_params

The log of current session can be found at:

 /u01/app/grid/crsdata/12cr2-rac1/crsconfig/rootcrs_12cr2-rac1_2017-05-17_07-38-13PM.log

2017/05/17 19:38:32 CLSRSC-594: Executinginstallation step 1 of 19: 'SetupTFA'.

2017/05/17 19:38:32 CLSRSC-4001: InstallingOracle Trace File Analyzer (TFA) Collector.

2017/05/17 19:40:01 CLSRSC-4002:Successfully installed Oracle Trace File Analyzer (TFA) Collector.

2017/05/17 19:40:01 CLSRSC-594: Executinginstallation step 2 of 19: 'ValidateEnv'.

2017/05/17 19:40:14 CLSRSC-363: Userignored prerequisites during installation

2017/05/17 19:40:14 CLSRSC-594: Executinginstallation step 3 of 19: 'CheckFirstNode'.

2017/05/17 19:40:18 CLSRSC-594: Executinginstallation step 4 of 19: 'GenSiteGUIDs'.

2017/05/17 19:40:22 CLSRSC-594: Executinginstallation step 5 of 19: 'SaveParamFile'.

2017/05/17 19:40:38 CLSRSC-594: Executinginstallation step 6 of 19: 'SetupOSD'.

2017/05/17 19:40:42 CLSRSC-594: Executinginstallation step 7 of 19: 'CheckCRSConfig'.

2017/05/17 19:40:43 CLSRSC-594: Executinginstallation step 8 of 19: 'SetupLocalGPNP'.

2017/05/17 19:41:45 CLSRSC-594: Executing installationstep 9 of 19: 'ConfigOLR'.

2017/05/17 19:42:11 CLSRSC-594: Executinginstallation step 10 of 19: 'ConfigCHMOS'.

2017/05/17 19:42:11 CLSRSC-594: Executinginstallation step 11 of 19: 'CreateOHASD'.

2017/05/17 19:42:24 CLSRSC-594: Executinginstallation step 12 of 19: 'ConfigOHASD'.

2017/05/17 19:42:40 CLSRSC-330: AddingClusterware entries to file 'oracle-ohasd.conf'

2017/05/17 19:43:33 CLSRSC-594: Executinginstallation step 13 of 19: 'InstallAFD'.

2017/05/17 19:44:52 CLSRSC-594: Executinginstallation step 14 of 19: 'InstallACFS'.

CRS-2791: Starting shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac1'

CRS-2793: Shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac1' has completed

CRS-4133: Oracle High Availability Serviceshas been stopped.

CRS-4123: Oracle High Availability Serviceshas been started.

2017/05/17 19:45:46 CLSRSC-594: Executinginstallation step 15 of 19: 'InstallKA'.

2017/05/17 19:46:00 CLSRSC-594: Executinginstallation step 16 of 19: 'InitConfig'.

CRS-2791: Starting shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac1'

CRS-2793: Shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac1' has completed

CRS-4133: Oracle High Availability Serviceshas been stopped.

CRS-4123: Oracle High Availability Serviceshas been started.

CRS-2672: Attempting to start'ora.driver.afd' on '12cr2-rac1'

CRS-2672: Attempting to start 'ora.evmd' on'12cr2-rac1'

CRS-2672: Attempting to start 'ora.mdnsd'on '12cr2-rac1'

CRS-2676: Start of 'ora.driver.afd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start'ora.cssdmonitor' on '12cr2-rac1'

CRS-2676: Start of 'ora.cssdmonitor' on'12cr2-rac1' succeeded

CRS-2676: Start of 'ora.mdnsd' on'12cr2-rac1' succeeded

CRS-2676: Start of 'ora.evmd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.gpnpd'on '12cr2-rac1'

CRS-2676: Start of 'ora.gpnpd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.gipcd'on '12cr2-rac1'

CRS-2676: Start of 'ora.gipcd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.cssd' on'12cr2-rac1'

CRS-2672: Attempting to start 'ora.diskmon'on '12cr2-rac1'

CRS-2676: Start of 'ora.diskmon' on'12cr2-rac1' succeeded

CRS-2676: Start of 'ora.cssd' on'12cr2-rac1' succeeded

Disk label(s) created successfully. Check/u01/app/grid/cfgtoollogs/asmca/asmca-170517PM074648.log for details.

Disk groups created successfully. Check/u01/app/grid/cfgtoollogs/asmca/asmca-170517PM074648.log for details.

2017/05/17 19:49:12 CLSRSC-482: Runningcommand: '/u01/app/12.2.0/grid/bin/ocrconfig -upgrade grid oinstall'

CRS-2672: Attempting to start 'ora.crf' on'12cr2-rac1'

CRS-2672: Attempting to start 'ora.storage'on '12cr2-rac1'

CRS-2676: Start of 'ora.storage' on'12cr2-rac1' succeeded

CRS-2676: Start of 'ora.crf' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.crsd' on'12cr2-rac1'

CRS-2676: Start of 'ora.crsd' on'12cr2-rac1' succeeded

CRS-4256: Updating the profile

Successful addition of voting diskeed4a5165d684f1cbf9ef0068f9eccf3.

Successfully replaced voting disk groupwith +ocr_vote_mgmt.

CRS-4256: Updating the profile

CRS-4266: Voting file(s) successfullyreplaced

## STATE    File Universal Id                File Name Disk group

-- -----    -----------------                --------- ---------

 1.ONLINE   eed4a5165d684f1cbf9ef0068f9eccf3(AFD:OCR_VOTE_MGMT1) [OCR_VOTE_MGMT]

Located 1 voting disk(s).

CRS-2791: Starting shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac1'

CRS-2673: Attempting to stop 'ora.crsd' on'12cr2-rac1'

CRS-2677: Stop of 'ora.crsd' on'12cr2-rac1' succeeded

CRS-2673: Attempting to stop 'ora.storage'on '12cr2-rac1'

CRS-2673: Attempting to stop 'ora.crf' on'12cr2-rac1'

CRS-2673: Attempting to stop 'ora.drivers.acfs'on '12cr2-rac1'

CRS-2673: Attempting to stop 'ora.gpnpd' on'12cr2-rac1'

CRS-2673: Attempting to stop 'ora.mdnsd' on'12cr2-rac1'

CRS-2677: Stop of 'ora.storage' on'12cr2-rac1' succeeded

CRS-2673: Attempting to stop 'ora.asm' on'12cr2-rac1'

CRS-2677: Stop of 'ora.drivers.acfs' on'12cr2-rac1' succeeded

CRS-2677: Stop of 'ora.gpnpd' on'12cr2-rac1' succeeded

CRS-2677: Stop of 'ora.crf' on '12cr2-rac1'succeeded

CRS-2677: Stop of 'ora.mdnsd' on'12cr2-rac1' succeeded

CRS-2677: Stop of 'ora.asm' on '12cr2-rac1'succeeded

CRS-2673: Attempting to stop'ora.cluster_interconnect.haip' on '12cr2-rac1'

CRS-2677: Stop of'ora.cluster_interconnect.haip' on '12cr2-rac1' succeeded

CRS-2673: Attempting to stop 'ora.ctssd' on'12cr2-rac1'

CRS-2673: Attempting to stop 'ora.evmd' on'12cr2-rac1'

CRS-2677: Stop of 'ora.ctssd' on'12cr2-rac1' succeeded

CRS-2677: Stop of 'ora.evmd' on'12cr2-rac1' succeeded

CRS-2673: Attempting to stop 'ora.cssd' on'12cr2-rac1'

CRS-2677: Stop of 'ora.cssd' on'12cr2-rac1' succeeded

CRS-2673: Attempting to stop'ora.driver.afd' on '12cr2-rac1'

CRS-2673: Attempting to stop 'ora.gipcd' on'12cr2-rac1'

CRS-2677: Stop of 'ora.driver.afd' on'12cr2-rac1' succeeded

CRS-2677: Stop of 'ora.gipcd' on'12cr2-rac1' succeeded

CRS-2793: Shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac1' has completed

CRS-4133: Oracle High Availability Serviceshas been stopped.

2017/05/17 19:52:05 CLSRSC-594: Executinginstallation step 17 of 19: 'StartCluster'.

CRS-4123: Starting Oracle High AvailabilityServices-managed resources

CRS-2672: Attempting to start 'ora.mdnsd'on '12cr2-rac1'

CRS-2672: Attempting to start 'ora.evmd' on'12cr2-rac1'

CRS-2676: Start of 'ora.mdnsd' on'12cr2-rac1' succeeded

CRS-2676: Start of 'ora.evmd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.gpnpd'on '12cr2-rac1'

CRS-2676: Start of 'ora.gpnpd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.gipcd'on '12cr2-rac1'

CRS-2676: Start of 'ora.gipcd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start'ora.cssdmonitor' on '12cr2-rac1'

CRS-2676: Start of 'ora.cssdmonitor' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.cssd' on'12cr2-rac1'

CRS-2672: Attempting to start 'ora.diskmon'on '12cr2-rac1'

CRS-2676: Start of 'ora.diskmon' on'12cr2-rac1' succeeded

CRS-2676: Start of 'ora.cssd' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start'ora.cluster_interconnect.haip' on '12cr2-rac1'

CRS-2672: Attempting to start 'ora.ctssd'on '12cr2-rac1'

CRS-2676: Start of 'ora.ctssd' on'12cr2-rac1' succeeded

CRS-2676: Start of'ora.cluster_interconnect.haip' on '12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.asm' on'12cr2-rac1'

CRS-2676: Start of 'ora.asm' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.storage'on '12cr2-rac1'

CRS-2676: Start of 'ora.storage' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.crf' on'12cr2-rac1'

CRS-2676: Start of 'ora.crf' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.crsd' on'12cr2-rac1'

CRS-2676: Start of 'ora.crsd' on'12cr2-rac1' succeeded

CRS-6023: Starting Oracle Cluster ReadyServices-managed resources

CRS-6017: Processing resource auto-startfor servers: 12cr2-rac1

CRS-6016: Resource auto-start has completedfor server 12cr2-rac1

CRS-6024: Completed start of Oracle ClusterReady Services-managed resources

CRS-4123: Oracle High Availability Serviceshas been started.

2017/05/17 19:54:20 CLSRSC-343:Successfully started Oracle Clusterware stack

2017/05/17 19:54:21 CLSRSC-594: Executinginstallation step 18 of 19: 'ConfigNode'.

CRS-2672: Attempting to start'ora.ASMNET1LSNR_ASM.lsnr' on '12cr2-rac1'

CRS-2676: Start of'ora.ASMNET1LSNR_ASM.lsnr' on '12cr2-rac1' succeeded

CRS-2672: Attempting to start 'ora.asm' on'12cr2-rac1'

CRS-2676: Start of 'ora.asm' on'12cr2-rac1' succeeded

CRS-2672: Attempting to start'ora.OCR_VOTE_MGMT.dg' on '12cr2-rac1'

CRS-2676: Start of 'ora.OCR_VOTE_MGMT.dg'on '12cr2-rac1' succeeded

2017/05/17 20:01:10 CLSRSC-594: Executinginstallation step 19 of 19: 'PostConfig'.

2017/05/17 20:04:06 CLSRSC-325: ConfigureOracle Grid Infrastructure for a Cluster ... succeeded

Note 2上執行root.sh輸出內容如下:

[[email protected] grid]# script/tmp/rootsh.log

Script started, file is /tmp/rootsh.log

[[email protected] grid]# pwd

/u01/app/12.2.0/grid

[[email protected] grid]# sh root.sh

Performing root user operation.

The following environment variables are setas:

   ORACLE_OWNER= grid

   ORACLE_HOME=  /u01/app/12.2.0/grid

Enter the full pathname of the local bindirectory: [/usr/local/bin]:

  Copying dbhome to /usr/local/bin ...

  Copying oraenv to /usr/local/bin ...

  Copying coraenv to /usr/local/bin ...

Creating /etc/oratab file...

Entries will be added to the /etc/oratabfile as needed by

Database Configuration Assistant when adatabase is created

Finished running generic part of rootscript.

Now product-specific root actions will beperformed.

Relinking oracle with rac_on option

Using configuration parameter file:/u01/app/12.2.0/grid/crs/install/crsconfig_params

The log of current session can be found at:

 /u01/app/grid/crsdata/12cr2-rac2/crsconfig/rootcrs_12cr2-rac2_2017-05-17_08-14-12PM.log

2017/05/17 20:14:50 CLSRSC-594: Executinginstallation step 1 of 19: 'SetupTFA'.

2017/05/17 20:14:50 CLSRSC-4001: InstallingOracle Trace File Analyzer (TFA) Collector.

2017/05/17 20:16:18 CLSRSC-4002:Successfully installed Oracle Trace File Analyzer (TFA) Collector.

2017/05/17 20:16:18 CLSRSC-594: Executinginstallation step 2 of 19: 'ValidateEnv'.

2017/05/17 20:16:21 CLSRSC-363: Userignored prerequisites during installation

2017/05/17 20:16:21 CLSRSC-594: Executinginstallation step 3 of 19: 'CheckFirstNode'.

2017/05/17 20:16:23 CLSRSC-594: Executinginstallation step 4 of 19: 'GenSiteGUIDs'.

2017/05/17 20:16:23 CLSRSC-594: Executinginstallation step 5 of 19: 'SaveParamFile'.

2017/05/17 20:16:28 CLSRSC-594: Executinginstallation step 6 of 19: 'SetupOSD'.

2017/05/17 20:16:36 CLSRSC-594: Executinginstallation step 7 of 19: 'CheckCRSConfig'.

2017/05/17 20:16:38 CLSRSC-594: Executinginstallation step 8 of 19: 'SetupLocalGPNP'.

2017/05/17 20:16:44 CLSRSC-594: Executinginstallation step 9 of 19: 'ConfigOLR'.

2017/05/17 20:16:54 CLSRSC-594: Executinginstallation step 10 of 19: 'ConfigCHMOS'.

2017/05/17 20:16:54 CLSRSC-594: Executinginstallation step 11 of 19: 'CreateOHASD'.

2017/05/17 20:16:57 CLSRSC-594: Executinginstallation step 12 of 19: 'ConfigOHASD'.

2017/05/17 20:17:15 CLSRSC-330: AddingClusterware entries to file 'oracle-ohasd.conf'

2017/05/17 20:17:43 CLSRSC-594: Executinginstallation step 13 of 19: 'InstallAFD'.

2017/05/17 20:19:05 CLSRSC-594: Executinginstallation step 14 of 19: 'InstallACFS'.

CRS-2791: Starting shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac2'

CRS-2793: Shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac2' has completed

CRS-4133: Oracle High Availability Serviceshas been stopped.

CRS-4123: Oracle High Availability Serviceshas been started.

2017/05/17 20:21:27 CLSRSC-594: Executinginstallation step 15 of 19: 'InstallKA'.

2017/05/17 20:21:39 CLSRSC-594: Executinginstallation step 16 of 19: 'InitConfig'.

CRS-2791: Starting shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac2'

CRS-2793: Shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac2' has completed

CRS-4133: Oracle High Availability Serviceshas been stopped.

CRS-4123: Oracle High Availability Serviceshas been started.

CRS-2791: Starting shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac2'

CRS-2673: Attempting to stop'ora.drivers.acfs' on '12cr2-rac2'

CRS-2677: Stop of 'ora.drivers.acfs' on'12cr2-rac2' succeeded

CRS-2793: Shutdown of Oracle HighAvailability Services-managed resources on '12cr2-rac2' has completed

CRS-4133: Oracle High Availability Serviceshas been stopped.

2017/05/17 20:22:32 CLSRSC-594: Executinginstallation step 17 of 19: 'StartCluster'.

CRS-4123: Starting Oracle High AvailabilityServices-managed resources

CRS-2672: Attempting to start 'ora.evmd' on'12cr2-rac2'

CRS-2672: Attempting to start 'ora.mdnsd'on '12cr2-rac2'

CRS-2676: Start of 'ora.mdnsd' on'12cr2-rac2' succeeded

CRS-2676: Start of 'ora.evmd' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.gpnpd'on '12cr2-rac2'

CRS-2676: Start of 'ora.gpnpd' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.gipcd'on '12cr2-rac2'

CRS-2676: Start of 'ora.gipcd' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start'ora.cssdmonitor' on '12cr2-rac2'

CRS-2676: Start of 'ora.cssdmonitor' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.cssd' on'12cr2-rac2'

CRS-2672: Attempting to start 'ora.diskmon'on '12cr2-rac2'

CRS-2676: Start of 'ora.diskmon' on '12cr2-rac2'succeeded

CRS-2676: Start of 'ora.cssd' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start'ora.cluster_interconnect.haip' on '12cr2-rac2'

CRS-2672: Attempting to start 'ora.ctssd'on '12cr2-rac2'

CRS-2676: Start of 'ora.ctssd' on '12cr2-rac2'succeeded

CRS-2672: Attempting to start 'ora.crf' on'12cr2-rac2'

CRS-2676: Start of 'ora.crf' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.crsd' on'12cr2-rac2'

CRS-2676: Start of 'ora.crsd' on'12cr2-rac2' succeeded

CRS-2676: Start of'ora.cluster_interconnect.haip' on '12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.asm' on'12cr2-rac2'

CRS-2676: Start of 'ora.asm' on'12cr2-rac2' succeeded

CRS-6017: Processing resource auto-startfor servers: 12cr2-rac2

CRS-2672: Attempting to start'ora.ASMNET1LSNR_ASM.lsnr' on '12cr2-rac2'

CRS-2672: Attempting to start'ora.net1.network' on '12cr2-rac2'

CRS-2676: Start of 'ora.net1.network' on'12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.ons' on'12cr2-rac2'

CRS-2676: Start of 'ora.ASMNET1LSNR_ASM.lsnr'on '12cr2-rac2' succeeded

CRS-2672: Attempting to start 'ora.asm' on'12cr2-rac2'

CRS-2676: Start of 'ora.ons' on'12cr2-rac2' succeeded

CRS-2676: Start of 'ora.asm' on'12cr2-rac2' succeeded

CRS-6016: Resource auto-start has completedfor server 12cr2-rac2

CRS-6024: Completed start of Oracle ClusterReady Services-managed resources

CRS-4123: Oracle High Availability Serviceshas been started.

2017/05/17 20:25:37 CLSRSC-343:Successfully started Oracle Clusterware stack

2017/05/17 20:25:37 CLSRSC-594: Executinginstallation step 18 of 19: 'ConfigNode'.

2017/05/17 20:26:16 CLSRSC-594: Executinginstallation step 19 of 19: 'PostConfig'.

2017/05/17 20:26:53 CLSRSC-325: ConfigureOracle Grid Infrastructure for a Cluster ... succeeded

[[email protected] grid]#

執行完畢後,點選ok,繼續安裝

由於本測試僅在hosts檔案中設定了一個SCAN IP,因此報錯,可以忽略。

INFO: [May 18, 2017 9:59:17 AM] Read: Executing Post Configuration Actions

INFO: [May 18, 2017 9:59:17 AM] Executing Post Configuration Actions

WARNING: [May 18, 2017 9:59:17 AM] Skipping line: Executing Post ConfigurationActions

INFO: [May 18, 2017 9:59:17 AM] Read: 100% complete

WARNING: [May 18, 2017 9:59:17 AM] Skipping line: 100% complete

INFO: [May 18, 2017 9:59:18 AM] Read: Look at the log file "/u01/app/grid/cfgtoollogs/dbca/_mgmtdb/_mgmtdb.log"for further details.

INFO: [May 18, 2017 9:59:18 AM] Look at the log file"/u01/app/grid/cfgtoollogs/dbca/_mgmtdb/_mgmtdb.log" for furtherdetails.

WARNING: [May 18, 2017 9:59:18 AM] Skipping line: Look at the log file"/u01/app/grid/cfgtoollogs/dbca/_mgmtdb/_mgmtdb.log" for furtherdetails.

INFO: [May 18, 2017 9:59:19 AM] Completed Plugin named: Creating ContainerDatabase for Oracle Grid Infrastructure Management Repository

INFO: [May 18, 2017 9:59:19 AM] Completed 'Creating Container Database forOracle Grid Infrastructure Management Repository'

INFO: [May 18, 2017 9:59:19 AM] Completed 'Creating Container Database forOracle Grid Infrastructure Management Repository'

INFO: [May 18, 2017 9:59:19 AM] Started Plugin named: GIMR ConfigurationAssistant

INFO: [May 18, 2017 9:59:19 AM] Found associated job

INFO: [May 18, 2017 9:59:19 AM] Starting 'GIMR Configuration Assistant'

INFO: [May 18, 2017 9:59:19 AM] Starting 'GIMR Configuration Assistant'

INFO: [May 18, 2017 9:59:20 AM] Executing MGMTCA

INFO: [May 18, 2017 9:59:20 AM] Command /u01/app/12.2.0/grid/bin/mgmtca -local

INFO: [May 18, 2017 9:59:20 AM] ... GenericInternalPlugIn.handleProcess()entered.

INFO: [May 18, 2017 9:59:20 AM] ... GenericInternalPlugIn: gettingconfigAssistantParmas.

INFO: [May 18, 2017 9:59:20 AM] ... GenericInternalPlugIn: checkingsecretArguments.

INFO: [May 18, 2017 9:59:20 AM] No arguments to pass to stdin

INFO: [May 18, 2017 9:59:20 AM] ... GenericInternalPlugIn: starting read loop.

INFO: [May 18, 2017 10:33:07 AM] Completed Plugin named: GIMR ConfigurationAssistant

INFO: [May 18, 2017 10:33:07 AM] Completed 'GIMR Configuration Assistant'

INFO: [May 18, 2017 10:33:07 AM] Completed 'GIMR Configuration Assistant'

INFO: [May 18, 2017 10:33:07 AM] Started Plugin named: Oracle ClusterVerification Utility

INFO: [May 18, 2017 10:33:07 AM] Found associated job

INFO: [May 18, 2017 10:33:07 AM] Starting 'Oracle Cluster VerificationUtility'

INFO: [May 18, 2017 10:33:07 AM] Starting 'Oracle Cluster VerificationUtility'

INFO: [May 18, 2017 10:33:08 AM] Executing CLUVFY

INFO: [May 18, 2017 10:33:08 AM] Command /u01/app/12.2.0/grid/bin/cluvfy stage-post crsinst -collect cluster -n all

INFO: [May 18, 2017 10:33:08 AM] ... GenericInternalPlugIn.handleProcess()entered.

INFO: [May 18, 2017 10:33:08 AM] ... GenericInternalPlugIn: gettingconfigAssistantParmas.

INFO: [May 18, 2017 10:33:08 AM] ... GenericInternalPlugIn: checkingsecretArguments.

INFO: [May 18, 2017 10:33:08 AM] No arguments to pass to stdin

INFO: [May 18, 2017 10:33:08 AM] ... GenericInternalPlugIn: starting readloop.

INFO: [May 18, 2017 10:36:14 AM] Read:

INFO: [May 18, 2017 10:36:14 AM] Read: Verifying Node Connectivity ...

INFO: [May 18, 2017 10:36:14 AM] Verifying Node Connectivity ...

INFO: [May 18, 2017 10:36:16 AM] Read:  Verifying Hosts File ...PASSED

INFO: [May 18, 2017 10:36:16 AM]  Verifying Hosts File ...PASSED

INFO: [May 18, 2017 10:36:26 AM] Read:  Verifying Check that maximum (MTU) size packet goes through subnet...PASSED

INFO: [May 18, 2017 10:36:26 AM]  Verifying Check that maximum (MTU) size packet goes through subnet...PASSED

INFO: [May 18, 2017 10:36:26 AM] Read:  Verifying subnet mask consistency for subnet "192.168.88.0"...PASSED

INFO: [May 18, 2017 10:36:26 AM]  Verifying subnet mask consistency for subnet "192.168.88.0"...PASSED

INFO: [May 18, 2017 10:36:26 AM] Read:  Verifying subnet mask consistency for subnet "10.80.18.0"...PASSED

INFO: [May 18, 2017 10:36:26 AM]   Verifying subnet mask consistency for subnet"10.80.18.0" ...PASSED

INFO: [May 18, 2017 10:36:27 AM] Read: Verifying Node Connectivity ...PASSED

INFO: [May 18, 2017 10:36:27 AM] Verifying Node Connectivity ...PASSED

INFO: [May 18, 2017 10:36:32 AM] Read: Verifying Multicast check ...PASSED

INFO: [May 18, 2017 10:36:32 AM] Verifying Multicast check ...PASSED

INFO: [May 18, 2017 10:36:41 AM] Read: Verifying ASM filter driverconfiguration consistency ...PASSED

INFO: [May 18, 2017 10:36:41 AM] Verifying ASM filter driver configurationconsistency ...PASSED

INFO: [May 18, 2017 10:36:42 AM] Read: Verifying Time zone consistency...PASSED

INFO: [May 18, 2017 10:36:42 AM] Verifying Time zone consistency ...PASSED

INFO: [May 18, 2017 10:36:43 AM] Read: Verifying Cluster Manager Integrity...PASSED

INFO: [May 18, 2017 10:36:43 AM] Verifying Cluster Manager Integrity ...PASSED

INFO: [May 18, 2017 10:36:44 AM] Read: Verifying User Mask ...PASSED

INFO: [May 18, 2017 10:36:44 AM] Verifying User Mask ...PASSED

INFO: [May 18, 2017 10:36:46 AM] Read: Verifying Cluster Integrity ...PASSED

INFO: [May 18, 2017 10:36:46 AM] Verifying Cluster Integrity ...PASSED

INFO: [May 18, 2017 10:37:00 AM] Read: Verifying OCR Integrity ...PASSED

INFO: [May 18, 2017 10:37:00 AM] Verifying OCR Integrity ...PASSED

INFO: [May 18, 2017 10:37:00 AM] Read: Verifying CRS Integrity ...

INFO: [May 18, 2017 10:37:00 AM] Verifying CRS Integrity ...

INFO: [May 18, 2017 10:37:01 AM] Read:  Verifying Clusterware Version Consistency ...PASSED

INFO: [May 18, 2017 10:37:01 AM]  Verifying Clusterware Version Consistency ...PASSED

INFO: [May 18, 2017 10:37:02 AM] Read: Verifying CRS Integrity ...PASSED

INFO: [May 18, 2017 10:37:02 AM] Verifying CRS Integrity ...PASSED

INFO: [May 18, 2017 10:37:04 AM] Read: Verifying Node Application Existence...PASSED

INFO: [May 18, 2017 10:37:04 AM] Verifying Node Application Existence...PASSED

INFO: [May 18, 2017 10:37:08 AM] Read: Verifying Single Client Access Name(SCAN) ...

INFO: [May 18, 2017 10:37:08 AM] Verifying Single Client Access Name (SCAN)...

INFO: [May 18, 2017 10:37:08 AM] Read:  Verifying DNS/NIS name service 'lixora-12c-scanip' ...

INFO: [May 18, 2017 10:37:08 AM]  Verifying DNS/NIS name service 'lixora-12c-scanip' ...

INFO: [May 18, 2017 10:37:10 AM] Read:    Verifying Name Service Switch Configuration File Integrity ...PASSED

INFO: [May 18, 2017 10:37:10 AM]    Verifying Name Service Switch Configuration File Integrity ...PASSED

INFO: [May 18, 2017 10:37:51 AM] Read:  Verifying DNS/NIS name service 'lixora-12c-scanip' ...FAILED (PRVG-1101)

INFO: [May 18, 2017 10:37:51 AM]  Verifying DNS/NIS name service 'lixora-12c-scanip' ...FAILED (PRVG-1101)

INFO: [May 18, 2017 10:37:51 AM] Read: Verifying Single Client Access Name (SCAN)...FAILED (PRVG-1101)

INFO: [May 18, 2017 10:37:51 AM] Verifying Single Client Access Name (SCAN)...FAILED (PRVG-1101)

INFO: [May 18, 2017 10:38:06 AM] Read: Verifying OLR Integrity ...PASSED

INFO: [May 18, 2017 10:38:06 AM] Verifying OLR Integrity ...PASSED

INFO: [May 18, 2017 10:38:09 AM] Read: Verifying Voting Disk ...PASSED

INFO: [May 18, 2017 10:38:09 AM] Verifying Voting Disk ...PASSED

INFO: [May 18, 2017 10:38:10 AM] Read: Verifying ASM Integrity ...

INFO: [May 18, 2017 10:38:10 AM] Verifying ASM Integrity ...

INFO: [May 18, 2017 10:38:10 AM] Read:  Verifying Node Connectivity ...

INFO: [May 18, 2017 10:38:10 AM]  Verifying Node Connectivity ...

INFO: [May 18, 2017 10:38:11 AM] Read:    Verifying Hosts File ...PASSED

INFO: [May 18, 2017 10:38:11 AM]    Verifying Hosts File ...PASSED

INFO: [May 18, 2017 10:38:19 AM] Read:    Verifying Check that maximum (MTU) size packet goes through subnet...PASSED

INFO: [May 18, 2017 10:38:19 AM]    Verifying Check that maximum (MTU) size packet goes through subnet...PASSED

INFO: [May 18, 2017 10:38:19 AM] Read:    Verifying subnet mask consistency for subnet "192.168.88.0"...PASSED

INFO: [May 18, 2017 10:38:19 AM]    Verifying subnet mask consistency for subnet "192.168.88.0"...PASSED

INFO: [May 18, 2017 10:38:19 AM] Read:    Verifying subnet mask consistency for subnet "10.80.18.0"...PASSED

INFO: [May 18, 2017 10:38:19 AM]    Verifying subnet mask consistency for subnet "10.80.18.0"...PASSED

INFO: [May 18, 2017 10:38:21 AM] Read:  Verifying Node Connectivity ...PASSED

INFO: [May 18, 2017 10:38:21 AM]  Verifying Node Connectivity ...PASSED

INFO: [May 18, 2017 10:38:28 AM] Read: Verifying ASM Integrity ...PASSED

INFO: [May 18, 2017 10:38:28 AM] Verifying ASM Integrity ...PASSED

INFO: [May 18, 2017 10:38:28 AM] Read: Verifying Device Checks for ASM ...

INFO: [May 18, 2017 10:38:28 AM] Verifying Device Checks for ASM ...

INFO: [May 18, 2017 10:38:37 AM] Read:  Verifying Access Control List check ...PASSED

INFO: [May 18, 2017 10:38:37 AM]  Verifying Access Control List check ...PASSED

INFO: [May 18, 2017 10:38:37 AM] Read: Verifying Device Checks for ASM...PASSED

INFO: [May 18, 2017 10:38:37 AM] Verifying Device Checks for ASM ...PASSED

INFO: [May 18, 2017 10:38:43 AM] Read: Verifying ASM disk group free space...PASSED

INFO: [May 18, 2017 10:38:43 AM] Verifying ASM disk group free space ...PASSED

INFO: [May 18, 2017 10:38:43 AM] Read: Verifying I/O scheduler ...

INFO: [May 18, 2017 10:38:43 AM] Verifying I/O scheduler ...

INFO: [May 18, 2017 10:38:45 AM] Read:  Verifying Package: cvuqdisk-1.0.10-1 ...PASSED

INFO: [May 18, 2017 10:38:45 AM]  Verifying Package: cvuqdisk-1.0.10-1 ...PASSED

INFO: [May 18, 2017 10:38:58 AM] Read: Verifying I/O scheduler ...WARNING (PRVG-11976)

INFO: [May 18, 2017 10:38:58 AM] Verifying I/O scheduler ...WARNING(PRVG-11976)

INFO: [May 18, 2017 10:38:59 AM] Read: Verifying User Not In Group"root": grid ...PASSED

INFO: [May 18, 2017 10:38:59 AM] Verifying User Not In Group "root":grid ...PASSED

INFO: [May 18, 2017 10:39:01 AM] Read: Verifying Clock Synchronization...PASSED

INFO: [May 18, 2017 10:39:01 AM] Verifying Clock Synchronization ...PASSED

INFO: [May 18, 2017 10:39:07 AM] Read: Verifying VIP Subnet configurationcheck ...PASSED

INFO: [May 18, 2017 10:39:07 AM] Verifying VIP Subnet configuration check...PASSED

INFO: [May 18, 2017 10:39:08 AM] Read: Verifying Network configurationconsistency checks ...PASSED

INFO: [May 18, 2017 10:39:08 AM] Verifying Network configuration consistencychecks ...PASSED

INFO: [May 18, 2017 10:39:09 AM] Read: Verifying File system mount options forpath GI_HOME ...PASSED

INFO: [May 18, 2017 10:39:09 AM] Verifying File system mount options for pathGI_HOME ...PASSED

INFO: [May 18, 2017 10:39:13 AM] Read:

INFO: [May 18, 2017 10:39:13 AM] Read: Collecting OS mandatory requirementsbaseline

INFO: [May 18, 2017 10:39:13 AM] Collecting OS mandatory requirements baseline

INFO: [May 18, 2017 10:39:13 AM] Read:

INFO: [May 18, 2017 10:39:37 AM] Read: Collecting Physical Memory ...collected

INFO: [May 18, 2017 10:39:37 AM] Collecting Physical Memory ...collected

INFO: [May 18, 2017 10:39:38 AM] Read: Collecting Available Physical Memory...collected

INFO: [May 18, 2017 10:39:38 AM] Collecting Available Physical Memory...collected

INFO: [May 18, 2017 10:39:42 AM] Read: Collecting Swap Size ...collected

INFO: [May 18, 2017 10:39:42 AM] Collecting Swap Size ...collected

INFO: [May 18, 2017 10:39:42 AM] Read: Collecting Free Space: 12cr2-rac2:/usr,12cr2-rac2:/var,12cr2-rac2:/etc,12cr2-rac2:/sbin,12cr2-rac2:/tmp...collected

INFO: [May 18, 2017 10:39:42 AM] Collecting Free Space:12cr2-rac2:/usr,12cr2-rac2:/var,12cr2-rac2:/etc,12cr2-rac2:/sbin,12cr2-rac2:/tmp...collected

INFO: [May 18, 2017 10:39:42 AM] Read: Collecting Free Space:12cr2-rac1:/usr,12cr2-rac1:/var,12cr2-rac1:/etc,12cr2-rac1:/sbin,12cr2-rac1:/tmp...collected

INFO: [May 18, 2017 10:39:42 AM] Collecting Free Space:12cr2-rac1:/usr,12cr2-rac1:/var,12cr2-rac1:/etc,12cr2-rac1:/sbin,12cr2-rac1:/tmp...collected

INFO: [May 18, 2017 10:39:45 AM] Read: Collecting User Existence: grid...nothing to collect

INFO: [May 18, 2017 10:39:45 AM] Collecting User Existence: grid ...nothing tocollect

INFO: [May 18, 2017 10:39:47 AM] Read: Collecting Group Existence: asmadmin...nothing to collect

INFO: [May 18, 2017 10:39:47 AM] Collecting Group Existence: asmadmin...nothing to collect

INFO: [May 18, 2017 10:39:48 AM] Read: Collecting Group Existence: asmoper...nothing to collect

INFO: [May 18, 2017 10:39:48 AM] Collecting Group Existence: asmoper...nothing to collect

INFO: [May 18, 2017 10:39:50 AM] Read: Collecting Group Existence: asmdba...nothing to collect

INFO: [May 18, 2017 10:39:50 AM] Collecting Group Existence: asmdba ...nothingto collect

INFO: [May 18, 2017 10:39:54 AM] Read: Collecting Group Existence: oinstall...nothing to collect

INFO: [May 18, 2017 10:39:54 AM] Collecting Group Existence: oinstall...nothing to collect

INFO: [May 18, 2017 10:39:56 AM] Read: Collecting Group Membership: asmdba...nothing to collect

INFO: [May 18, 2017 10:39:56 AM] Collecting Group Membership: asmdba...nothing to collect

INFO: [May 18, 2017 10:39:57 AM] Read: Collecting Group Membership: asmadmin...nothing to collect

INFO: [May 18, 2017 10:39:57 AM] Collecting Group Membership: asmadmin...nothing to collect

INFO: [May 18, 2017 10:39:59 AM] Read: Collecting Group Membership:oinstall(Primary) ...nothing to collect

INFO: [May 18, 2017 10:39:59 AM] Collecting Group Membership: oinstall(Primary)...nothing to collect

INFO: [May 18, 2017 10:40:00 AM] Read: Collecting Group Membership: asmoper...nothing to collect

INFO: [May 18, 2017 10:40:00 AM] Collecting Group Membership: asmoper...nothing to collect

INFO: [May 18, 2017 10:40:02 AM] Read: Collecting Run Level ...collected

INFO: [May 18, 2017 10:40:02 AM] Collecting Run Level ...collected

INFO: [May 18, 2017 10:40:04 AM] Read: Collecting Hard Limit: maximum openfile descriptors ...collected

INFO: [May 18, 2017 10:40:04 AM] Collecting Hard Limit: maximum open filedescriptors ...collected

INFO: [May 18, 2017 10:40:07 AM] Read: Collecting Soft Limit: maximum openfile descriptors ...collected

INFO: [May 18, 2017 10:40:07 AM] Collecting Soft Limit: maximum open filedescriptors ...collected

INFO: [May 18, 2017 10:40:09 AM] Read: Collecting Hard Limit: maximum userprocesses ...collected

INFO: [May 18, 2017 10:40:09 AM] Collecting Hard Limit: maximum user processes...collected

INFO: [May 18, 2017 10:40:11 AM] Read: Collecting Soft Limit: maximum userprocesses ...collected

INFO: [May 18, 2017 10:40:11 AM] Collecting Soft Limit: maximum user processes...collected

INFO: [May 18, 2017 10:40:13 AM] Read: Collecting Soft Limit: maximum stacksize ...collected

INFO: [May 18, 2017 10:40:13 AM] Collecting Soft Limit: maximum stack size...collected

INFO: [May 18, 2017 10:40:13 AM] Read: Collecting Architecture ...collected

INFO: [May 18, 2017 10:40:13 AM] Collecting Architecture ...collected

INFO: [May 18, 2017 10:40:14 AM] Read: Collecting OS Kernel Version...collected

INFO: [May 18, 2017 10:40:14 AM] Collecting OS Kernel Version ...collected

INFO: [May 18, 2017 10:40:16 AM] Read: Collecting OS Kernel Parameter: semmsl...collected

INFO: [May 18, 2017 10:40:16 AM] Collecting OS Kernel Parameter: semmsl...collected

INFO: [May 18, 2017 10:40:17 AM] Read: Collecting OS Kernel Parameter: semmns...collected

INFO: [May 18, 2017 10:40:17 AM] Collecting OS Kernel Parameter: semmns...collected

INFO: [May 18, 2017 10:40:19 AM] Read: Collecting OS Kernel Parameter: semopm...collected

INFO: [May 18, 2017 10:40:19 AM] Collecting OS Kernel Parameter: semopm...collected

INFO: [May 18, 2017 10:40:22 AM] Read: Collecting OS Kernel Parameter: semmni...collected

INFO: [May 18, 2017 10:40:22 AM] Collecting OS Kernel Parameter: semmni...collected

INFO: [May 18, 2017 10:40:25 AM] Read: Collecting OS Kernel Parameter: shmmax...collected

INFO: [May 18, 2017 10:40:25 AM] Collecting OS Kernel Parameter: shmmax...collected

INFO: [May 18, 2017 10:40:27 AM] Read: Collecting OS Kernel Parameter: shmmni...collected

INFO: [May 18, 2017 10:40:27 AM] Collecting OS Kernel Parameter: shmmni...collected

INFO: [May 18, 2017 10:40:31 AM] Read: Collecting OS Kernel Parameter: shmall...collected

INFO: [May 18, 2017 10:40:31 AM] Collecting OS Kernel Parameter: shmall...collected

INFO: [May 18, 2017 10:40:33 AM] Read: Collecting OS Kernel Parameter:file-max ...collected

INFO: [May 18, 2017 10:40:33 AM] Collecting OS Kernel Parameter: file-max ...collected

INFO: [May 18, 2017 10:40:36 AM] Read: Collecting OS Kernel Parameter:ip_local_port_range ...collected

INFO: [May 18, 2017 10:40:36 AM] Collecting OS Kernel Parameter:ip_local_port_range ...collected

INFO: [May 18, 2017 10:40:38 AM] Read: Collecting OS Kernel Parameter:rmem_default ...collected

INFO: [May 18, 2017 10:40:38 AM] Collecting OS Kernel Parameter: rmem_default...collected

INFO: [May 18, 2017 10:40:39 AM] Read: Collecting OS Kernel Parameter:rmem_max ...collected

INFO: [May 18, 2017 10:40:39 AM] Collecting OS Kernel Parameter: rmem_max...collected

INFO: [May 18, 2017 10:40:42 AM] Read: Collecting OS Kernel Parameter:wmem_default ...collected

INFO: [May 18, 2017 10:40:42 AM] Collecting OS Kernel Parameter: wmem_default...collected

INFO: [May 18, 2017 10:40:43 AM] Read: Collecting OS Kernel Parameter:wmem_max ...collected

INFO: [May 18, 2017 10:40:43 AM] Collecting OS Kernel Parameter: wmem_max...collected

INFO: [May 18, 2017 10:40:46 AM] Read: Collecting OS Kernel Parameter:aio-max-nr ...collected

INFO: [May 18, 2017 10:40:46 AM] Collecting OS Kernel Parameter: aio-max-nr...collected

INFO: [May 18, 2017 10:40:47 AM] Read: Collecting OS Kernel Parameter:panic_on_oops ...collected

INFO: [May 18, 2017 10:40:47 AM] Collecting OS Kernel Parameter: panic_on_oops...collected

INFO: [May 18, 2017 10:40:49 AM] Read: Collecting Package:binutils-2.20.51.0.2 ...collected

INFO: [May 18, 2017 10:40:49 AM] Collecting Package: binutils-2.20.51.0.2...collected

INFO: [May 18, 2017 10:40:52 AM] Read: Collecting Package: compat-libcap1-1.10...collected

INFO: [May 18, 2017 10:40:52 AM] Collecting Package: compat-libcap1-1.10...collected

INFO: [May 18, 2017 10:40:53 AM] Read: Collecting Package:compat-libstdc++-33-3.2.3 (x86_64) ...collected

INFO: [May 18, 2017 10:40:53 AM] Collecting Package: compat-libstdc++-33-3.2.3(x86_64) ...collected

INFO: [May 18, 2017 10:40:54 AM] Read: Collecting Package: libgcc-4.4.7(x86_64) ...collected

INFO: [May 18, 2017 10:40:54 AM] Collecting Package: libgcc-4.4.7 (x86_64)...collected

INFO: [May 18, 2017 10:40:56 AM] Read: Collecting Package: libstdc++-4.4.7(x86_64) ...collected

INFO: [May 18, 2017 10:40:56 AM] Collecting Package: libstdc++-4.4.7 (x86_64)...collected

INFO: [May 18, 2017 10:40:57 AM] Read: Collecting Package:libstdc++-devel-4.4.7 (x86_64) ...collected

INFO: [May 18, 2017 10:40:57 AM] Collecting Package: libstdc++-devel-4.4.7(x86_64) ...collected

INFO: [May 18, 2017 10:40:58 AM] Read: Collecting Package: sysstat-9.0.4 ...collected

INFO: [May 18, 2017 10:40:58 AM] Collecting Package: sysstat-9.0.4...collected

INFO: [May 18, 2017 10:41:00 AM] Read: Collecting Package: gcc-4.4.7...collected

INFO: [May 18, 2017 10:41:00 AM] Collecting Package: gcc-4.4.7 ...collected

INFO: [May 18, 2017 10:41:01 AM] Read: Collecting Package: gcc-c++-4.4.7...collected

INFO: [May 18, 2017 10:41:01 AM] Collecting Package: gcc-c++-4.4.7...collected

INFO: [May 18, 2017 10:41:02 AM] Read: Collecting Package: ksh ...collected

INFO: [May 18, 2017 10:41:02 AM] Collecting Package: ksh ...collected

INFO: [May 18, 2017 10:41:03 AM] Read: Collecting Package: make-3.81...collected

INFO: [May 18, 2017 10:41:03 AM] Collecting Package: make-3.81 ...collected

INFO: [May 18, 2017 10:41:04 AM] Read: Collecting Package: glibc-2.12 (x86_64)...collected

INFO: [May 18, 2017 10:41:04 AM] Collecting Package: glibc-2.12 (x86_64)...collected

INFO: [May 18, 2017 10:41:06 AM] Read: Collecting Package: glibc-devel-2.12(x86_64) ...collected

INFO: [May 18, 2017 10:41:06 AM] Collecting Package: glibc-devel-2.12 (x86_64)...collected

INFO: [May 18, 2017 10:41:07 AM] Read: Collecting Package: libaio-0.3.107(x86_64) ...collected

INFO: [May 18, 2017 10:41:07 AM] Collecting Package: libaio-0.3.107 (x86_64)...collected

INFO: [May 18, 2017 10:41:08 AM] Read: Collecting Package:libaio-devel-0.3.107 (x86_64) ...collected

INFO: [May 18, 2017 10:41:08 AM] Collecting Package: libaio-devel-0.3.107(x86_64) ...collected

INFO: [May 18, 2017 10:41:09 AM] Read: Collecting Package: nfs-utils-1.2.3-15...collected

INFO: [May 18, 2017 10:41:09 AM] Collecting Package: nfs-utils-1.2.3-15...collected

INFO: [May 18, 2017 10:41:11 AM] Read: Collecting Package:smartmontools-5.43-1 ...collected

INFO: [May 18, 2017 10:41:11 AM] Collecting Package: smartmontools-5.43-1...collected

INFO: [May 18, 2017 10:41:12 AM] Read: Collecting Package: net-tools-1.60-110...collected

INFO: [May 18, 2017 10:41:12 AM] Collecting Package: net-tools-1.60-110...collected

INFO: [May 18, 2017 10:41:17 AM] Read: Collecting Clusterware ConfigurationFiles ...collected

INFO: [May 18, 2017 10:41:17 AM] Collecting Clusterware Configuration Files...collected

INFO: [May 18, 2017 10:41:21 AM] Read: Collecting Domain Sockets ...collected

INFO: [May 18, 2017 10:41:21 AM] Collecting Domain Sockets ...collected

INFO: [May 18, 2017 10:41:22 AM] Read: Collecting /boot mount ...collected

INFO: [May 18, 2017 10:41:22 AM] Collecting /boot mount ...collected

INFO: [May 18, 2017 10:41:23 AM] Read: Collecting /dev/shm mounted astemporary file system ...collected

INFO: [May 18, 2017 10:41:23 AM] Collecting /dev/shm mounted as temporary filesystem ...collected

INFO: [May 18, 2017 10:41:25 AM] Read: Collecting zeroconf check ...collected

INFO: [May 18, 2017 10:41:25 AM] Collecting zeroconf check ...collected

INFO: [May 18, 2017 10:41:25 AM] Read:

INFO: [May 18, 2017 10:41:25 AM] Read:

INFO: [May 18, 2017 10:41:25 AM] Read: Collecting OS configuration baseline

INFO: [May 18, 2017 10:41:25 AM] Collecting OS configuration baseline

INFO: [May 18, 2017 10:41:25 AM] Read:

INFO: [May 18, 2017 10:41:28 AM] Read: Collecting All Kernel Parameters...collected

INFO: [May 18, 2017 10:41:28 AM] Collecting All Kernel Parameters ...collected

INFO: [May 18, 2017 10:41:35 AM] Read: Collecting All Operating SystemPackages ...collected

INFO: [May 18, 2017 10:41:35 AM] Collecting All Operating System Packages...collected

INFO: [May 18, 2017 10:41:37 AM] Read: Collecting All inittab entries...collected

INFO: [May 18, 2017 10:41:37 AM] Collecting All inittab entries ...collected

INFO: [May 18, 2017 10:41:37 AM] Read:

INFO: [May 18, 2017 10:41:37 AM] Read:

INFO: [May 18, 2017 10:41:37 AM] Read: Collecting OS best practice baseline

INFO: [May 18, 2017 10:41:37 AM] Collecting OS best practice baseline

INFO: [May 18, 2017 10:41:37 AM] Read:

INFO: [May 18, 2017 10:41:39 AM] Read: Collecting HugePages Existence...collected

INFO: [May 18, 2017 10:41:39 AM] Collecting HugePages Existence ...collected

INFO: [May 18, 2017 10:41:41 AM] Read: Collecting Hardware Clocksynchronization at shutdown ...collected

INFO: [May 18, 2017 10:41:41 AM] Collecting Hardware Clock synchronization atshutdown ...collected

INFO: [May 18, 2017 10:41:42 AM] Read: Collecting availability of port 8888...collected

INFO: [May 18, 2017 10:41:42 AM] Collecting availability of port 8888...collected

INFO: [May 18, 2017 10:41:43 AM] Read: Collecting Ethernet Jumbo Frames...collected

INFO: [May 18, 2017 10:41:43 AM] Collecting Ethernet Jumbo Frames ...collected

INFO: [May 18, 2017 10:41:43 AM] Read:

INFO: [May 18, 2017 10:41:43 AM] Read:

INFO: [May 18, 2017 10:41:43 AM] Read: Collecting Clusterware mandatoryrequirements baseline

INFO: [May 18, 2017 10:41:43 AM] Collecting Clusterware mandatory requirementsbaseline

INFO: [May 18, 2017 10:41:43 AM] Read:

INFO: [May 18, 2017 10:41:46 AM] Read: Collecting Time zone consistency...collected

INFO: [May 18, 2017 10:41:46 AM] Collecting Time zone consistency ...collected

INFO: [May 18, 2017 10:41:47 AM] Read: Collecting User Mask ...collected

INFO: [May 18, 2017 10:41:47 AM] Collecting User Mask ...collected

INFO: [May 18, 2017 10:42:04 AM]