installation oracle database 18c grid infrastructure on ... · echo oracle | passwd –stdin oracle...

20
https://heliosguneserol.com/ Installation Oracle Database 18c Grid Infrastructure On Oracle Linux 7.5 A.Oracle Installation Prerequisites -Download related setup from below link: https://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html -Check operating system current version root@node1 ~]# cat /etc/oracle-release Oracle Linux Server release 7.5 -Add your IP to your "/etc/hosts" on all nodes . The "/etc/hosts" file must contain a fully qualified name for the server. Do not forget to register your IP address into your DNS server.Because of the security issue my IP and hostname will be masking. 127.0.0.1 localhost #::1 localhost #public ip 192.168.10.11 node1 192.168.10.12 node2 #Vip ip 192.168.10.121 node1-vip 192.168.10.122 node2-vip #private ip 10.10.10.21 node1-priv 10.10.10.22 node2-priv #SCAN ip 192.168.10.123 oracluster 192.168.10.124 oracluster 192.168.10.125 oracluster -Change the setting of SELinux to disabled by editing the "/etc/selinux/config" file, making sure the SELINUX flag is set as follows. SELINUX=disabled -If you have the Linux firewall enabled, you will need to disable it. systemctl stop firewalld systemctl disable firewalld -Make sure NTP is disable. systemctl stop chronyd.service systemctl disable chronyd.service mv /etc/chrony.conf /etc/chrony.conf.bak -

Upload: others

Post on 19-Mar-2020

52 views

Category:

Documents


0 download

TRANSCRIPT

https://heliosguneserol.com/

Installation Oracle Database 18c Grid Infrastructure On Oracle Linux 7.5

A.Oracle Installation Prerequisites -Download related setup from below link: https://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html -Check operating system current version root@node1 ~]# cat /etc/oracle-release Oracle Linux Server release 7.5 -Add your IP to your "/etc/hosts" on all nodes . The "/etc/hosts" file must contain a fully qualified name for the server. Do not forget to register your IP address into your DNS server.Because of the security issue my IP and hostname will be masking. 127.0.0.1 localhost #::1 localhost #public ip 192.168.10.11 node1 192.168.10.12 node2 #Vip ip 192.168.10.121 node1-vip 192.168.10.122 node2-vip #private ip 10.10.10.21 node1-priv 10.10.10.22 node2-priv #SCAN ip 192.168.10.123 oracluster 192.168.10.124 oracluster 192.168.10.125 oracluster -Change the setting of SELinux to disabled by editing the "/etc/selinux/config" file, making sure the SELINUX flag is set as follows. SELINUX=disabled -If you have the Linux firewall enabled, you will need to disable it. systemctl stop firewalld systemctl disable firewalld -Make sure NTP is disable. systemctl stop chronyd.service systemctl disable chronyd.service mv /etc/chrony.conf /etc/chrony.conf.bak -

https://heliosguneserol.com/

-On each node within the Oracle RAC Database cluster, stop and disable the avahi services run the following commands: # systemctl stop avahi-dnsconfd # systemctl stop avahi-daemon Warning: Stopping avahi-daemon, but it can still be activated by: avahi-daemon.socket To keep the avahi services off persistently across reboots, on each node run the following: # systemctl disable avahi-dnsconfd # systemctl disable avahi-daemon rm '/etc/systemd/system/dbus-org.freedesktop.Avahi.service' rm '/etc/systemd/system/multi-user.target.wants/avahi-daemon.service' rm '/etc/systemd/system/sockets.target.wants/avahi-daemon.socket' -Add the following lines to the "/etc/sysctl.conf" file, or in a file called "/etc/sysctl.d/98-oracle.conf" file fs.file-max = 6815744 kernel.sem = 250 32000 100 128 kernel.shmmni = 4096 kernel.shmall = 1073741824 kernel.shmmax = 4398046511104 kernel.panic_on_oops = 1 net.core.rmem_default = 262144 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048576 net.ipv4.conf.all.rp_filter = 2 net.ipv4.conf.default.rp_filter = 2 fs.aio-max-nr = 1048576 net.ipv4.ip_local_port_range = 9000 65500 Run the following command to change the current kernel parameters. /sbin/sysctl -p - Add the following lines to a file called "/etc/security/limits.d/oracle-database-preinstall-18c.conf" file. oracle soft nofile 1024 oracle hard nofile 65536 oracle soft nproc 16384 oracle hard nproc 16384 oracle soft stack 10240 oracle hard stack 32768 oracle hard memlock 134217728 oracle soft memlock 134217728

https://heliosguneserol.com/

-The following packages are listed as required, including the 32-bit version of some of the packages. yum install -y bc yum install -y binutils yum install -y compat-libcap1 yum install -y compat-libstdc++-33 yum install -y compat-libstdc++-33.i686 yum install -y elfutils-libelf.i686 yum install -y elfutils-libelf yum install -y elfutils-libelf-devel.i686 yum install -y elfutils-libelf-devel yum install -y fontconfig-devel yum install -y glibc.i686 yum install -y glibc yum install -y glibc-devel.i686 yum install -y glibc-devel yum install -y ksh yum install -y libaio.i686 yum install -y libaio yum install -y libaio-devel.i686 yum install -y libaio-devel yum install -y libX11.i686 yum install -y libX11 yum install -y libXau.i686 yum install -y libXau yum install -y libXi.i686 yum install -y libXi yum install -y libXtst.i686 yum install -y libXtst yum install -y libgcc.i686 yum install -y libgcc yum install -y librdmacm-devel yum install -y libstdc++.i686 yum install -y libstdc++ yum install -y libstdc++-devel.i686 yum install -y libstdc++-devel yum install -y libxcb.i686 yum install -y libxcb yum install -y make yum install -y nfs-utils yum install -y net-tools yum install -y python yum install -y python-configshell yum install -y python-rtslib yum install -y python-six yum install -y smartmontools yum install -y sysstat

https://heliosguneserol.com/

yum install -y targetcli yum install -y unixODBC yum install -y yum install librdmacm-devel yum install -y libaio-devel*.x86_64.rpm yum install -y ksh*.x86_64 - you may run below command as root user rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE}(%{ARCH})\n' bc \ binutils \ compat-libcap1 \ compat-libstdc++-33 \ elfutils-libelf \ elfutils-libelf-devel \ fontconfig-devel \ glibc \ glibc-devel \ ksh \ libaio \ libaio-devel \ libX11 \ libXau \ libXi \ libXtst \ libgcc \ librdmacm-devel \ libstdc++ \ libstdc++-devel \ libxcb \ make \ smartmontools \ sysstat -Create the directories and users in which the Oracle software will be installed. groupadd -g 1000 oinstall groupadd -g 1001 dba --Optional groupadd -g 1002 oper groupadd -g 1003 backupdba groupadd -g 1004 dgdba groupadd -g 1005 kmdba groupadd -g 1006 asmdba groupadd -g 1007 asmoper groupadd -g 1008 asmadmin groupadd -g 1009 racdba useradd -m -u 1000 -g oinstall -G dba -d /home/grid useradd -m -u 1001 -g oinstall -G dba -d /home/ mkdir -p

https://heliosguneserol.com/

mkdir -p /u01/app/18.0.0.0/grid mkdir -p /u01/app/oracle mkdir -p /u01/app/oracle/product/18.0.0.0/db_1 chown -R grid:oinstall /u01 chown -R oracle:oinstall /u01/app/oracle chmod -R 775 /u01 echo oracle | passwd –stdin oracle → this is set oracle user password as oracle echo grid | passwd –stdin grid → this is set grid user password as grid -Log in as the "oracle,grid" user and add the following lines at the end of the ".bash_profile" file. -Edit grid user profile export ORACLE_SID=+ASM1 export ORACLE_BASE=/u01/app/grid export ORACLE_HOME=/u01/app/18.0.0.0/grid export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH alias base="cd $ORACLE_BASE" alias oh="cd $ORACLE_HOME" -Edit oracle user profile export ORACLE_SID=orcl export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=$ORACLE_BASE/product/18.0.0.0/db_1 export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH alias base="cd $ORACLE_BASE" alias oh="cd $ORACLE_HOME" B.Install the Grid Infrastructure -As grid user login node1 and be sure your env. Already set. [grid@node1 tmp]$ unzip LINUX.X64_180000_grid_home.zip -d /u01/app/18.0.0.0/grid/ [grid@node1 tmp]$ oh [grid@node1 grid]$ pwd /u01/app/18.0.0.0/grid

https://heliosguneserol.com/

Install the following package from the grid home as the "root" user on all nodes. [root@node1 grid]# rpm -ivh /u01/app/18.0.0.0/grid/cv/rpm/cvuqdisk-1.0.10-1.rpm Preparing… ################################# [100%] Using default group oinstall to install package Updating / installing… 1:cvuqdisk-1.0.10-1 ################################# [100%] -Run gridSetup.sh as the "grid" user. [grid@node1 grid]$ ./gridSetup.sh

https://heliosguneserol.com/

Write your Cluster Name and Scan Name details into box in this screen. We already defined related information on our /”etc/hosts” file.

https://heliosguneserol.com/

Write your IP env into related box in this screen. You can check your infor by using ifconfig -a command

https://heliosguneserol.com/

https://heliosguneserol.com/

https://heliosguneserol.com/

-The output from the "orainstRoot.sh" &Root.sh output has been listed below.

ON NODE 1 [root@node1 ~]# /u01/app/oraInventory/orainstRoot.sh Changing permissions of /u01/app/oraInventory. Adding read,write permissions for group. Removing read,write,execute permissions for world. Changing groupname of /u01/app/oraInventory to oinstall. The execution of the script is complete. [root@node1 ~]# /u01/app/18.0.0.0/grid/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u01/app/18.0.0.0/grid Enter the full pathname of the local bin directory: [/usr/local/bin]: Copying dbhome to /usr/local/bin ... Copying oraenv to /usr/local/bin ... Copying coraenv to /usr/local/bin ...

https://heliosguneserol.com/

Creating /etc/oratab file... Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Relinking oracle with rac_on option Using configuration parameter file: /u01/app/18.0.0.0/grid/crs/install/crsconfig_params The log of current session can be found at: /u01/app/grid/crsdata/node1/crsconfig/rootcrs_node1_2019-03-29_12-18-36AM.log 2019/03/29 12:18:48 CLSRSC-594: Executing installation step 1 of 20: 'SetupTFA'. 2019/03/29 12:18:48 CLSRSC-4001: Installing Oracle Trace File Analyzer (TFA) Collector. 2019/03/29 12:19:11 CLSRSC-4002: Successfully installed Oracle Trace File Analyzer (TFA) Collector. 2019/03/29 12:19:11 CLSRSC-594: Executing installation step 2 of 20: 'ValidateEnv'. 2019/03/29 12:19:11 CLSRSC-363: User ignored prerequisites during installation 2019/03/29 12:19:11 CLSRSC-594: Executing installation step 3 of 20: 'CheckFirstNode'. 2019/03/29 12:19:13 CLSRSC-594: Executing installation step 4 of 20: 'GenSiteGUIDs'. 2019/03/29 12:19:17 CLSRSC-594: Executing installation step 5 of 20: 'SaveParamFile'. 2019/03/29 12:19:26 CLSRSC-594: Executing installation step 6 of 20: 'SetupOSD'. 2019/03/29 12:19:27 CLSRSC-594: Executing installation step 7 of 20: 'CheckCRSConfig'. 2019/03/29 12:19:27 CLSRSC-594: Executing installation step 8 of 20: 'SetupLocalGPNP'. 2019/03/29 12:19:47 CLSRSC-594: Executing installation step 9 of 20: 'CreateRootCert'. 2019/03/29 12:19:54 CLSRSC-594: Executing installation step 10 of 20: 'ConfigOLR'. 2019/03/29 12:20:08 CLSRSC-594: Executing installation step 11 of 20: 'ConfigCHMOS'. 2019/03/29 12:20:09 CLSRSC-594: Executing installation step 12 of 20: 'CreateOHASD'. 2019/03/29 12:20:17 CLSRSC-594: Executing installation step 13 of 20: 'ConfigOHASD'. 2019/03/29 12:20:17 CLSRSC-330: Adding Clusterware entries to file 'oracle-ohasd.service' 2019/03/29 12:21:11 CLSRSC-594: Executing installation step 14 of 20: 'InstallAFD'. 2019/03/29 12:21:20 CLSRSC-594: Executing installation step 15 of 20: 'InstallACFS'. CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'node1' CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'node1' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. 2019/03/29 12:22:21 CLSRSC-594: Executing installation step 16 of 20: 'InstallKA'. 2019/03/29 12:22:29 CLSRSC-594: Executing installation step 17 of 20: 'InitConfig'. CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'node1' CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'node1' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. CRS-2672: Attempting to start 'ora.evmd' on 'node1' CRS-2672: Attempting to start 'ora.mdnsd' on 'node1' CRS-2676: Start of 'ora.evmd' on 'node1' succeeded CRS-2676: Start of 'ora.mdnsd' on 'node1' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'node1' CRS-2676: Start of 'ora.gpnpd' on 'node1' succeeded

https://heliosguneserol.com/

CRS-2672: Attempting to start 'ora.cssdmonitor' on 'node1' CRS-2672: Attempting to start 'ora.gipcd' on 'node1' CRS-2676: Start of 'ora.cssdmonitor' on 'node1' succeeded CRS-2676: Start of 'ora.gipcd' on 'node1' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'node1' CRS-2672: Attempting to start 'ora.diskmon' on 'node1' CRS-2676: Start of 'ora.diskmon' on 'node1' succeeded CRS-2676: Start of 'ora.cssd' on 'node1' succeeded [INFO] [DBT-30001] Disk groups created successfully. Check /u01/app/grid/cfgtoollogs/asmca/asmca-190329PM122306.log for details. 2019/03/29 12:24:07 CLSRSC-482: Running command: '/u01/app/18.0.0.0/grid/bin/ocrconfig -upgrade oracle oinstall' CRS-2672: Attempting to start 'ora.crf' on 'node1' CRS-2672: Attempting to start 'ora.storage' on 'node1' CRS-2676: Start of 'ora.storage' on 'node1' succeeded CRS-2676: Start of 'ora.crf' on 'node1' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'node1' CRS-2676: Start of 'ora.crsd' on 'node1' succeeded CRS-4256: Updating the profile Successful addition of voting disk d287f2540f014f4abf99589bfacba98c. Successfully replaced voting disk group with +DATA. CRS-4256: Updating the profile CRS-4266: Voting file(s) successfully replaced ## STATE File Universal Id File Name Disk group -- ----- ----------------- --------- --------- 1. ONLINE d287f2540f014f4abf99589bfacba98c (/dev/oracleasm/disks/ORADATA1) [DATA] Located 1 voting disk(s). CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'node1' CRS-2673: Attempting to stop 'ora.crsd' on 'node1' CRS-2677: Stop of 'ora.crsd' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.storage' on 'node1' CRS-2673: Attempting to stop 'ora.crf' on 'node1' CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'node1' CRS-2673: Attempting to stop 'ora.mdnsd' on 'node1' CRS-2677: Stop of 'ora.crf' on 'node1' succeeded CRS-2677: Stop of 'ora.storage' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.asm' on 'node1' CRS-2677: Stop of 'ora.drivers.acfs' on 'node1' succeeded CRS-2677: Stop of 'ora.mdnsd' on 'node1' succeeded CRS-2677: Stop of 'ora.asm' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'node1' CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.ctssd' on 'node1' CRS-2673: Attempting to stop 'ora.evmd' on 'node1' CRS-2677: Stop of 'ora.ctssd' on 'node1' succeeded

https://heliosguneserol.com/

CRS-2677: Stop of 'ora.evmd' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.cssd' on 'node1' CRS-2677: Stop of 'ora.cssd' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.gipcd' on 'node1' CRS-2673: Attempting to stop 'ora.gpnpd' on 'node1' CRS-2677: Stop of 'ora.gpnpd' on 'node1' succeeded CRS-2677: Stop of 'ora.gipcd' on 'node1' succeeded CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'node1' has completed CRS-4133: Oracle High Availability Services has been stopped. 2019/03/29 12:26:57 CLSRSC-594: Executing installation step 18 of 20: 'StartCluster'. CRS-4123: Starting Oracle High Availability Services-managed resources CRS-2672: Attempting to start 'ora.evmd' on 'node1' CRS-2672: Attempting to start 'ora.mdnsd' on 'node1' CRS-2676: Start of 'ora.mdnsd' on 'node1' succeeded CRS-2676: Start of 'ora.evmd' on 'node1' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'node1' CRS-2676: Start of 'ora.gpnpd' on 'node1' succeeded CRS-2672: Attempting to start 'ora.gipcd' on 'node1' CRS-2676: Start of 'ora.gipcd' on 'node1' succeeded CRS-2672: Attempting to start 'ora.crf' on 'node1' CRS-2672: Attempting to start 'ora.cssdmonitor' on 'node1' CRS-2676: Start of 'ora.cssdmonitor' on 'node1' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'node1' CRS-2672: Attempting to start 'ora.diskmon' on 'node1' CRS-2676: Start of 'ora.diskmon' on 'node1' succeeded CRS-2676: Start of 'ora.crf' on 'node1' succeeded CRS-2676: Start of 'ora.cssd' on 'node1' succeeded CRS-2672: Attempting to start 'ora.cluster_interconnect.haip' on 'node1' CRS-2672: Attempting to start 'ora.ctssd' on 'node1' CRS-2676: Start of 'ora.ctssd' on 'node1' succeeded CRS-2676: Start of 'ora.cluster_interconnect.haip' on 'node1' succeeded CRS-2672: Attempting to start 'ora.asm' on 'node1' CRS-2676: Start of 'ora.asm' on 'node1' succeeded CRS-2672: Attempting to start 'ora.storage' on 'node1' CRS-2676: Start of 'ora.storage' on 'node1' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'node1' CRS-2676: Start of 'ora.crsd' on 'node1' succeeded CRS-6023: Starting Oracle Cluster Ready Services-managed resources CRS-6017: Processing resource auto-start for servers: node1 CRS-6016: Resource auto-start has completed for server node1 CRS-6024: Completed start of Oracle Cluster Ready Services-managed resources CRS-4123: Oracle High Availability Services has been started. 2019/03/29 12:28:26 CLSRSC-343: Successfully started Oracle Clusterware stack 2019/03/29 12:28:26 CLSRSC-594: Executing installation step 19 of 20: 'ConfigNode'. CRS-2672: Attempting to start 'ora.ASMNET1LSNR_ASM.lsnr' on 'node1' CRS-2672: Attempting to start 'ora.ASMNET2LSNR_ASM.lsnr' on 'node1' CRS-2676: Start of 'ora.ASMNET2LSNR_ASM.lsnr' on 'node1' succeeded

https://heliosguneserol.com/

CRS-2676: Start of 'ora.ASMNET1LSNR_ASM.lsnr' on 'node1' succeeded CRS-2672: Attempting to start 'ora.asm' on 'node1' CRS-2676: Start of 'ora.asm' on 'node1' succeeded CRS-2672: Attempting to start 'ora.DATA.dg' on 'node1' CRS-2676: Start of 'ora.DATA.dg' on 'node1' succeeded 2019/03/29 12:29:53 CLSRSC-594: Executing installation step 20 of 20: 'PostConfig'. 2019/03/29 12:31:05 CLSRSC-325: Configure Oracle Grid Infrastructure for a Cluster ... succeeded

ON NODE 2

[root@node2 ~]# /u01/app/oraInventory/orainstRoot.sh Changing permissions of /u01/app/oraInventory. Adding read,write permissions for group. Removing read,write,execute permissions for world. Changing groupname of /u01/app/oraInventory to oinstall. The execution of the script is complete. [root@node2 ~]# /u01/app/18.0.0.0/grid/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u01/app/18.0.0.0/grid Enter the full pathname of the local bin directory: [/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/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Relinking oracle with rac_on option Using configuration parameter file: /u01/app/18.0.0.0/grid/crs/install/crsconfig_params The log of current session can be found at: /u01/app/grid/crsdata/node2/crsconfig/rootcrs_node2_2019-03-29_12-33-39AM.log 2019/03/29 12:33:41 CLSRSC-594: Executing installation step 1 of 20: 'SetupTFA'. 2019/03/29 12:33:41 CLSRSC-4001: Installing Oracle Trace File Analyzer (TFA) Collector. 2019/03/29 12:34:05 CLSRSC-4002: Successfully installed Oracle Trace File Analyzer (TFA) Collector. 2019/03/29 12:34:05 CLSRSC-594: Executing installation step 2 of 20: 'ValidateEnv'. 2019/03/29 12:34:05 CLSRSC-363: User ignored prerequisites during installation 2019/03/29 12:34:05 CLSRSC-594: Executing installation step 3 of 20: 'CheckFirstNode'. 2019/03/29 12:34:06 CLSRSC-594: Executing installation step 4 of 20: 'GenSiteGUIDs'. 2019/03/29 12:34:06 CLSRSC-594: Executing installation step 5 of 20: 'SaveParamFile'. 2019/03/29 12:34:08 CLSRSC-594: Executing installation step 6 of 20: 'SetupOSD'. 2019/03/29 12:34:08 CLSRSC-594: Executing installation step 7 of 20: 'CheckCRSConfig'.

https://heliosguneserol.com/

2019/03/29 12:34:09 CLSRSC-594: Executing installation step 8 of 20: 'SetupLocalGPNP'. 2019/03/29 12:34:10 CLSRSC-594: Executing installation step 9 of 20: 'CreateRootCert'. 2019/03/29 12:34:10 CLSRSC-594: Executing installation step 10 of 20: 'ConfigOLR'. 2019/03/29 12:34:11 CLSRSC-594: Executing installation step 11 of 20: 'ConfigCHMOS'. 2019/03/29 12:34:12 CLSRSC-594: Executing installation step 12 of 20: 'CreateOHASD'. 2019/03/29 12:34:13 CLSRSC-594: Executing installation step 13 of 20: 'ConfigOHASD'. 2019/03/29 12:34:13 CLSRSC-330: Adding Clusterware entries to file 'oracle-ohasd.service' 2019/03/29 12:34:57 CLSRSC-594: Executing installation step 14 of 20: 'InstallAFD'. 2019/03/29 12:34:58 CLSRSC-594: Executing installation step 15 of 20: 'InstallACFS'. CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'node2' CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'node2' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. 2019/03/29 12:35:49 CLSRSC-594: Executing installation step 16 of 20: 'InstallKA'. 2019/03/29 12:35:50 CLSRSC-594: Executing installation step 17 of 20: 'InitConfig'. CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'node2' CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'node2' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'node2' CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'node2' CRS-2677: Stop of 'ora.drivers.acfs' on 'node2' succeeded CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'node2' has completed CRS-4133: Oracle High Availability Services has been stopped. 2019/03/29 12:35:59 CLSRSC-594: Executing installation step 18 of 20: 'StartCluster'. CRS-4123: Starting Oracle High Availability Services-managed resources CRS-2672: Attempting to start 'ora.evmd' on 'node2' CRS-2672: Attempting to start 'ora.mdnsd' on 'node2' CRS-2676: Start of 'ora.mdnsd' on 'node2' succeeded CRS-2676: Start of 'ora.evmd' on 'node2' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'node2' CRS-2676: Start of 'ora.gpnpd' on 'node2' succeeded CRS-2672: Attempting to start 'ora.gipcd' on 'node2' CRS-2676: Start of 'ora.gipcd' on 'node2' succeeded CRS-2672: Attempting to start 'ora.crf' on 'node2' CRS-2672: Attempting to start 'ora.cssdmonitor' on 'node2' CRS-2676: Start of 'ora.cssdmonitor' on 'node2' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'node2' CRS-2672: Attempting to start 'ora.diskmon' on 'node2' CRS-2676: Start of 'ora.diskmon' on 'node2' succeeded CRS-2676: Start of 'ora.crf' on 'node2' succeeded CRS-2676: Start of 'ora.cssd' on 'node2' succeeded CRS-2672: Attempting to start 'ora.cluster_interconnect.haip' on 'node2' CRS-2672: Attempting to start 'ora.ctssd' on 'node2' CRS-2676: Start of 'ora.ctssd' on 'node2' succeeded

https://heliosguneserol.com/

CRS-2676: Start of 'ora.cluster_interconnect.haip' on 'node2' succeeded CRS-2672: Attempting to start 'ora.asm' on 'node2' CRS-2676: Start of 'ora.asm' on 'node2' succeeded CRS-2672: Attempting to start 'ora.storage' on 'node2' CRS-2676: Start of 'ora.storage' on 'node2' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'node2' CRS-2676: Start of 'ora.crsd' on 'node2' succeeded CRS-6017: Processing resource auto-start for servers: node2 CRS-2673: Attempting to stop 'ora.LISTENER_SCAN1.lsnr' on 'node1' CRS-2672: Attempting to start 'ora.ASMNET1LSNR_ASM.lsnr' on 'node2' CRS-2672: Attempting to start 'ora.ASMNET2LSNR_ASM.lsnr' on 'node2' CRS-2672: Attempting to start 'ora.ons' on 'node2' CRS-2677: Stop of 'ora.LISTENER_SCAN1.lsnr' on 'node1' succeeded CRS-2673: Attempting to stop 'ora.scan1.vip' on 'node1' CRS-2677: Stop of 'ora.scan1.vip' on 'node1' succeeded CRS-2672: Attempting to start 'ora.scan1.vip' on 'node2' CRS-2676: Start of 'ora.ASMNET1LSNR_ASM.lsnr' on 'node2' succeeded CRS-2676: Start of 'ora.ASMNET2LSNR_ASM.lsnr' on 'node2' succeeded CRS-2672: Attempting to start 'ora.asm' on 'node2' CRS-2676: Start of 'ora.scan1.vip' on 'node2' succeeded CRS-2672: Attempting to start 'ora.LISTENER_SCAN1.lsnr' on 'node2' CRS-2676: Start of 'ora.LISTENER_SCAN1.lsnr' on 'node2' succeeded CRS-2676: Start of 'ora.ons' on 'node2' succeeded CRS-2676: Start of 'ora.asm' on 'node2' succeeded CRS-2672: Attempting to start 'ora.proxy_advm' on 'node1' CRS-2672: Attempting to start 'ora.proxy_advm' on 'node2' CRS-2676: Start of 'ora.proxy_advm' on 'node1' succeeded CRS-2676: Start of 'ora.proxy_advm' on 'node2' succeeded CRS-6016: Resource auto-start has completed for server node2 CRS-6024: Completed start of Oracle Cluster Ready Services-managed resources CRS-4123: Oracle High Availability Services has been started. 2019/03/29 12:38:59 CLSRSC-343: Successfully started Oracle Clusterware stack 2019/03/29 12:38:59 CLSRSC-594: Executing installation step 19 of 20: 'ConfigNode'. 2019/03/29 12:39:09 CLSRSC-594: Executing installation step 20 of 20: 'PostConfig'. 2019/03/29 12:39:14 CLSRSC-325: Configure Oracle Grid Infrastructure for a Cluster ... succeeded