Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

RedHat6.5 installs Oracle 12c RAC

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

12c RAC installation process

Note: the following configurations, without special instructions, are performed on two nodes.

1. Network configuration

Take rac01 as an example, both node should be configured.

Eth0 and eth2 do bond0.

Eth3 and eth4 do bond1.

The Mac address is recorded as follows:

Eth0: 00:0C:29:12:28:2C

Eth2: 00:0c:29:12:28:36

Eth3: 00:0c:29:12:28:40

Eth4: 00:0c:29:12:28:4a

[root@test-rac01 network-scripts] # cat ifcfg-bond0

# Intel Corporation 82545EM Gigabit Ethernet Controller (Copper)

DEVICE=bond0

BOOTPROTO=none

BROADCAST=10.109.67.255

IPADDR=10.109.67.52

NETMASK=255.255.255.0

NETWORK=10.109.67.0

USERCTL=no

ONBOOT=yes

GATEWAY=10.109.67.1

TYPE=BOND

[root@test-rac01 network-scripts] # cat ifcfg-bond1

# Intel Corporation 82545EM Gigabit Ethernet Controller (Copper)

DEVICE=bond1

BOOTPROTO=none

BROADCAST=193.168.1.255

IPADDR=193.168.1.102

NETMASK=255.255.255.0

NETWORK=193.168.1.0

USERCTL=no

ONBOOT=yes

TYPE=BOND

BONDING_OPTS= "mode=1 miimon=50"

[root@test-rac01 network-scripts] # cat ifcfg-eth0

# Intel Corporation 82545EM Gigabit Ethernet Controller (Copper)

DEVICE=eth0

BOOTPROTO=none

HWADDR=00:0C:29:12:28:2C

MASTER=bond0

ONBOOT=yes

SLAVE=yes

USERCTL=no

TYPE=Ethernet

PEERDNS=yes

IPV6INIT=no

[root@test-rac01 network-scripts] # cat ifcfg-eth2

# Intel Corporation 82545EM Gigabit Ethernet Controller (Copper)

DEVICE=eth2

BOOTPROTO=none

ONBOOT=yes

HWADDR=00:0c:29:12:28:36

MASTER=bond0

SLAVE=yes

USERCTL=no

TYPE=Ethernet

PEERDNS=yes

IPV6INIT=no

[root@test-rac01 network-scripts] # cat ifcfg-eth3

# Intel Corporation 82545EM Gigabit Ethernet Controller (Copper)

DEVICE=eth3

BOOTPROTO=none

ONBOOT=yes

HWADDR=00:0c:29:12:28:40

MASTER=bond1

SLAVE=yes

USERCTL=no

TYPE=Ethernet

PEERDNS=yes

IPV6INIT=no

[root@test-rac01 network-scripts] # cat ifcfg-eth4

# Intel Corporation 82545EM Gigabit Ethernet Controller (Copper)

DEVICE=eth4

BOOTPROTO=none

ONBOOT=yes

HWADDR=00:0c:29:12:28:4a

MASTER=bond1

SLAVE=yes

USERCTL=no

TYPE=Ethernet

PEERDNS=yes

IPV6INIT=no

2. Kernel module loading

[root@rac01 ~] # vi / etc/modprobe.d/dist.conf

Add content

Alias bond0 bonding

Alias bond1 bonding

Alias scsi_hostadapter2 lpfc

[root@rac01 ~] # vi / etc/modprobe.d/openfwwf.conf

Add content

Options lpfc lpfc_nodev_tmo=30 lpfc_lun_queue_depth=16 lpfc_discovery_threads=32

Options hangcheck-timer hangcheck_tick=1 hangcheck_margin=10 hangcheck_reboot=1

Options e1000 FlowControl=1

3. Shut down the sendmail service

[root@test-rac01 ~] # chkconfig sendmail off

[root@test-rac01 ~] # chkconfig-- list | grep sendmail

Sendmail 0:off 1:off 2:off 3:off 4:off 5:off 6:off

4. Configure hosts files and DNS

[root@test-rac01 ~] # cat / etc/hosts

# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1 test-rac01 localhost.localdomain localhost

:: 1 localhost6.localdomain6 localhost6

# Public IP for Oracle 11g RAC

10.109.67.52 rac01.localdomain rac01

10.109.67.53 rac02.localdomain rac02

# Private IP for Oracle 11g RAC

193.168.1.102 rac01pri.localdomain rac01pri

193.168.1.103 rac02pri.localdomain rac02pri

# Virtual IP for Oracle 11g RAC

10.109.67.46 rac01vip.localdomain rac01vip

10.109.67.47 rac02vip.localdomain rac02vip

Ensure that both nodes can communicate with each other using host

Configure DNS

[root@rac01 ~] # yum install bind*

Running Transaction

Installing: 32:bind-9.8.2-0.17.rc1.el6_4.6.x86_64 1 Compact 3

Installing: 32:bind-chroot-9.8.2-0.17.rc1.el6_4.6.x86_64 2 Compact 3

Installing: bind-dyndb-ldap-2.3-5.el6.x86_64 3 Compact 3

Verifying: 32:bind-9.8.2-0.17.rc1.el6_4.6.x86_64 1 Compact 3

Verifying: 32:bind-chroot-9.8.2-0.17.rc1.el6_4.6.x86_64 2 Compact 3

Verifying: bind-dyndb-ldap-2.3-5.el6.x86_64 3 Compact 3

Installed:

Bind.x86_64 32 9.8.2-0.17.rc1.el6_4.6

Bind-chroot.x86_64 32 9.8.2-0.17.rc1.el6_4.6

Bind-dyndb-ldap.x86_64 0Rom 2.3-5.el6

Complete!

[root@rac01 u01] # cat / etc/named.rfc1912.zones

Zone "localdomain.com" IN {

Type master

File "named.localdomain.com"

Allow-update {none;}

}

Zone "1.168.193.in-addr.arpa" IN {

Type master

File "named.193.168.1.db"

Allow-update {none;}

}

Zone "67.109.10.in-addr.arpa" IN {

Type master

File "named.10.109.67.db"

Allow-update {none;}

}

[root@rac01 u01] # cat / var/named/chroot/var/named/named.localdomain.com

$TTL 1D

@ IN SOA localdomain.com. Root.localdomain.com. (

0; serial

28800; refresh

14400; retry

3600000; expire

86400); minimum

NS @

A 127.0.0.1

AAAA:: 1

Rac01vip IN A 10.109.67.46

Rac02vip IN A 10.109.67.47

Rac01 IN A 10.109.67.52

Rac02 IN A 10.109.67.53

Rac01pri IN A 193.168.1.102

Rac02pri IN A 193.168.1.103

Scan-oracle IN A 10.109.67.48

Note: the scanIP here is similar to vip. It is a virtual IP and does not require a real network card.

[root@rac01 u01] # cat / var/named/chroot/var/named/named.10.109.67.db

$TTL 1D

@ IN SOA localdomain.com. Root.localdomain.com. (

0; serial

28800; refresh

14400; retry

3600000; expire

86400); minimum

NS @

A 127.0.0.1

AAAA:: 1

52 IN PTR rac01.localdomain.com.

53 IN PTR rac02.localdomain.com.

46 IN PTR rac01vip.localdomain.com.

47 IN PTR rac02vip.localdomain.com.

48 IN PTR scan-oracle.localdomain.com.

[root@rac01 u01] # cat / var/named/chroot/var/named/named.193.168.1.db

$TTL 1D

@ IN SOA localdomain.com. Root.localdomain.com. (

0; serial

28800; refresh

14400; retry

3600000; expire

86400); minimum

NS @

A 127.0.0.1

AAAA:: 1

102 IN PTR rac01pri.localdomain.com.

103 IN PTR rac02pri.localdomain.com.

5. YUM installation dependency package

[root@rac01 ~] # mount / dev/cdrom / mnt/

Mount: block device / dev/sr0 is write-protected, mounting read-only

[root@rac01 ~] # cd / etc/yum.repos.d/

[root@rac01 yum.repos.d] # cp rhel-source.repo rhel-source.repo.bak

[root@rac01 yum.repos.d] # vi rhel-source.repo

The modifications are as follows

[rhel6.5]

Name=Red Hat 6.5

Baseurl= file:///mnt/Server

Enabled=1

Gpgcheck=0

Gpgkey= file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

[root@rac01 yum.repos.d] # yum update

Loaded plugins: product-id, refresh-packagekit, security, subscription-manager

This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.

Rhel6.5 | 3.9 kB 00:00...

Rhel6.5/primary_db | 3.1 MB 00:00.

Setting up Update Process

No Packages marked for Update

Yum install binutils-y

Yum install compat-libcap1-y

Yum install compat-libstdc++-33-y

Yum install compat-libstdc++-33.i686-y

Yum install gcc-y

Yum install gcc-c++-y

Yum install glibc-y

Yum install glibc.i686-y

Yum install glibc-devel-y

Yum install glibc-devel.i686-y

Yum install ksh-y

Yum install libgcc-y

Yum install libgcc.i686-y

Yum install libstdc++-y

Yum install libstdc++.i686-y

Yum install libstdc++-devel-y

Yum install libstdc++-devel.i686-y

Yum install libaio-y

Yum install libaio.i686-y

Yum install libaio-devel-y

Yum install libaio-devel.i686-y

Yum install libXext-y

Yum install libXext.i686-y

Yum install libXtst-y

Yum install libXtst.i686-y

Yum install libX11-y

Yum install libX11.i686-y

Yum install libXau-y

Yum install libXau.i686-y

Yum install libxcb-y

Yum install libxcb.i686-y

Yum install libXi-y

Yum install libXi.i686-y

Yum install make-y

Yum install sysstat-y

Yum install unixODBC-y

Yum install unixODBC-devel-y

Binutils-2.20.51.0.2-5.11.el6 (x86 / 64)

Compat-libcap1-1.10-1 (x86x64)

Compat-libstdc++-33-3.2.3-69.el6 (x86x64)

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

Gcc-4.4.4-13.el6 (x86 / 64)

Gcc-c++-4.4.4-13.el6 (x86 / 64)

Glibc-2.12-1.7.el6 (i686)

Glibc-2.12-1.7.el6 (x86 / 64)

Glibc-devel-2.12-1.7.el6 (x86 / 64)

Glibc-devel-2.12-1.7.el6 (i686)

Ksh

Libgcc-4.4.4-13.el6 (i686)

Libgcc-4.4.4-13.el6 (x86 / 64)

Libstdc++-4.4.4-13.el6 (x86 / 64)

Libstdc++-4.4.4-13.el6 (i686)

Libstdc++-devel-4.4.4-13.el6 (x86 / 64)

Libstdc++-devel-4.4.4-13.el6 (i686)

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)

LibXext-1.1 (x86 / 64)

LibXext-1.1 (i686)

LibXtst-1.0.99.2 (x86 / 64)

LibXtst-1.0.99.2 (i686)

LibX11-1.3 (x86 / 64)

LibX11-1.3 (i686)

LibXau-1.0.5 (x86 / 64)

LibXau-1.0.5 (i686)

Libxcb-1.5 (x86 / 64)

Libxcb-1.5 (i686)

LibXi-1.3 (x86 / 64)

LibXi-1.3 (i686)

Make-3.81-19.el6

Sysstat-9.0.4-11.el6 (x86 / 64)

6. Modify kernel parameters

[root@rac01] # sysctl-p

Net.ipv4.ip_forward = 0

Net.ipv4.conf.default.rp_filter = 1

Net.ipv4.conf.default.accept_source_route = 0

Kernel.sysrq = 0

Kernel.core_uses_pid = 1

Net.ipv4.tcp_syncookies = 1

Kernel.msgmnb = 65536

Kernel.msgmax = 65536

Kernel.shmmni = 4096

Kernel.sem = 250 32000 100 128

Kernel.shmmax = 4398046511104

Kernel.shmall = 1073741824

Fs.file-max = 6815744

Net.ipv4.ip_local_port_range = 9000 65500

Net.core.rmem_default = 262144

Net.core.wmem_default = 262144

Net.core.rmem_max = 4194304

Net.core.wmem_max = 1048576

Fs.aio-max-nr = 1048576

7. Set SHELL limits for Oracle and Grid users

[root@rac01 ~] # vi / etc/security/limits.conf

Grid soft nproc 2047

Grid hard nproc 16384

Grid soft nofile 131072

Grid hard nofile 65536

Grid soft stack 10240

Grid hard stack 32768

Oracle soft nproc 131072

Oracle hard nproc 131072

Oracle soft nofile 131072

Oracle hard nofile 65536

Oracle hard nofile 131072

Oracle soft nofile 131072

[root@rac02 ~] # vi / etc/pam.d/login

[root@rac01 ~] # cat / etc/security/limits.conf

Ession required pam_limits.so

Session required / lib64/security/pam_limits.so

[root@rac01 ~] # cat / etc/security/limits.d/90-nproc.conf

# Default limit for number of user's processes to prevent

# accidental fork bombs.

# See rhbz # 432903 for reasoning.

* soft nproc 1024

Root soft nproc unlimited

8. Turn off the firewall and synchronize time

[root@rac02 ~] # cat / etc/selinux/config

# This file controls the state of SELinux on the system.

# SELINUX= can take one of these three values:

# enforcing-SELinux security policy is enforced.

# permissive-SELinux prints warnings instead of enforcing.

# disabled-No SELinux policy is loaded.

SELINUX=disabled

# SELINUXTYPE= can take one of these two values:

# targeted-Targeted processes are protected

# mls-Multi Level Security protection.

SELINUXTYPE=targeted

9. Create users and groups and related directories

Groupadd oinstall

Groupadd dba

Groupadd oper

Groupadd backupdba

Groupadd dgdba

Groupadd kmdba

Groupadd asmdba

Groupadd asmoper

Groupadd asmadmin

Useradd-g oinstall-G dba,asmadmin,asmdba,asmoper grid

Useradd-g oinstall-G dba,oper,backupdba,dgdba,kmdba,asmdba,asmadmin oracle

Passwd grid

Passwd oracle

Mkdir-p / u01/app/12.1.0/grid

Mkdir-p / u01/app/grid

Mkdir-p / u01/app/oracle/product/12.1.0/db_1

Chown-R grid:oinstall / U01

Chmod-R 775 / u01 /

Chown-R oracle:oinstall / u01/app/oracle

10. Set the environment variable grid user PATH=$PATH:$HOME/bin

[root@rac02 ~] # su-grid

[grid@rac02 ~] $vi .bash _ profile

Export ORACLE_BASE=/u01/app/grid

Export ORACLE_HOME=/u01/app/12.1.0/grid

Export ORACLE_SID=+ASM

Export PATH=$ORACLE_HOME/bin:$PATH

Export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

Export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

Export DISPLAY=:0.0

Umask=022

[root@rac02 ~] # su-oracle

[oracle@rac02 ~] $vi .bash _ profile

PATH=$PATH:$HOME/bin

Export ORACLE_BASE=/u01/app/oracle

Export ORACLE_HOME=/u01/app/oracle/product/12.1.0/db_1

Export ORACLE_SID=orcl2

Export PATH=$ORACLE_HOME/bin:$PATH

Export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

Export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib

Export DISPLAY=:0.0

Umask=022

Export PATH

11. Configure ASM

Install sequentially

Oracleasm-support-2.1.8-1.el6.x86_64.rpm

Kmod-oracleasm-2.0.6.rh2-2.el6.x86_64.rpm

Oracleasmlib-2.0.4-1.el6.x86_64.rpm

Partition the disk (executed on one node)

[root@rac02 ~] # fdisk-l

Disk / dev/sda: 53.7 GB, 53687091200 bytes

64 heads, 32 sectors/track, 51200 cylinders

Units = cylinders of 2048 * 512 = 1048576 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x000588f1

Device Boot Start End Blocks Id System

/ dev/sda1 * 2 151 153600 83 Linux

Partition 1 does not end on cylinder boundary.

/ dev/sda2 152 10391 10485760 83 Linux

Partition 2 does not end on cylinder boundary.

/ dev/sda3 10392 12439 2097152 82 Linux swap / Solaris

Partition 3 does not end on cylinder boundary.

/ dev/sda4 12440 51200 39691264 5 Extended

Partition 4 does not end on cylinder boundary.

/ dev/sda5 12441 51200 39690240 83 Linux

Disk / dev/sdb: 16.1 GB, 16106127360 bytes

64 heads, 32 sectors/track, 15360 cylinders

Units = cylinders of 2048 * 512 = 1048576 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk / dev/sdc: 16.1 GB, 16106127360 bytes

64 heads, 32 sectors/track, 15360 cylinders

Units = cylinders of 2048 * 512 = 1048576 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk / dev/sdd: 42.9 GB, 42949672960 bytes

64 heads, 32 sectors/track, 40960 cylinders

Units = cylinders of 2048 * 512 = 1048576 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk information after partition

Device Boot Start End Blocks Id System

/ dev/sdb1 1 15360 15728624 83 Linux

Disk / dev/sdc: 16.1 GB, 16106127360 bytes

64 heads, 32 sectors/track, 15360 cylinders

Units = cylinders of 2048 * 512 = 1048576 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x9c8ae290

Device Boot Start End Blocks Id System

/ dev/sdc1 1 15360 15728624 83 Linux

Disk / dev/sdd: 42.9 GB, 42949672960 bytes

64 heads, 32 sectors/track, 40960 cylinders

Units = cylinders of 2048 * 512 = 1048576 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x4c33655b

Device Boot Start End Blocks Id System

/ dev/sdd1 1 40960 41943024 83 Linux

[root@rac01 u01] # / etc/init.d/oracleasm scandisks

Scanning the system for Oracle ASMLib disks: [OK]

[root@rac01 u01] # / etc/init.d/oracleasm listdisks

CRS

DATA

FLA

12. Configure SSH

[grid@rac01] $chmod 700 / home/grid/.ssh

[grid@rac01 ~] $vi / home/grid/.ssh/config

Host *

ForwardX11 no

[grid@rac01] $/ usr/bin/ssh-keygen-t rsa

Generating public/private rsa key pair.

Enter file in which to save the key (/ home/grid/.ssh/id_rsa):

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in / home/grid/.ssh/id_rsa.

Your public key has been saved in / home/grid/.ssh/id_rsa.pub.

The key fingerprint is:

C4:33:bd:26:3b:0a:dc:01:d4:ce:24:0d:62:05:58:05 grid@rac01

The key's randomart image is:

+-[RSA 2048]-+

| | oE==+ |

|. O. +. . | |

|. = =. | |

| .o. O. | |

|. S o |

|. . . + |

| o. O |

|. . . | |

|. | |

+-+

[grid@rac01] $/ usr/bin/ssh-keygen-t dsa

Generating public/private dsa key pair.

Enter file in which to save the key (/ home/grid/.ssh/id_dsa):

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in / home/grid/.ssh/id_dsa.

Your public key has been saved in / home/grid/.ssh/id_dsa.pub.

The key fingerprint is:

Cf:be:03:09:57:56:00:ff:14:7e:f1:e3:69:a6:00:39 grid@rac01

The key's randomart image is:

+-[DSA 1024]-+

|. Oo. | |

|. +. . O |

| | E. o. |

|. . Oo.. O |

| oS. .. = |

| oo. + |

| .o. | |

|. | |

| | oo |

+-+

Node2

[grid@rac02 ~] $mkdir .ssh

[grid@rac02 ~] $chmod 700.ssh

[grid@rac02 ~] $cd .ssh

[grid@rac02 .ssh] $scp rac01:/home/oracle/.ssh/authorized_keys.

Grid@rac01's password:

Authorized_keys 100% 992 1.0KB/s 00:00

[grid@rac02 .ssh] $/ usr/bin/ssh-keygen-t dsa

Generating public/private dsa key pair.

Enter file in which to save the key (/ home/grid/.ssh/id_dsa):

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in / home/grid/.ssh/id_dsa.

Your public key has been saved in / home/grid/.ssh/id_dsa.pub.

The key fingerprint is:

7b:bc:5e:f3:41:d0:7e:73:5f:ed:16:b2:94:ec:d8:89 grid@rac02

The key's randomart image is:

+-[DSA 1024]-+

| | |

|. | |

|. . | |

| .o. . |

| | S = oo= |

| | o*. + o* |

|. OEo=. + |

|. O o o |

| .o. | |

+-+

[grid@rac02 .ssh] $/ usr/bin/ssh-keygen-t rsa

Generating public/private rsa key pair.

Enter file in which to save the key (/ home/grid/.ssh/id_rsa): Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in / home/grid/.ssh/id_rsa.

Your public key has been saved in / home/grid/.ssh/id_rsa.pub.

The key fingerprint is:

C4:f7:a5:d6:e7:6b:f1:46:04:c2:19:77:ca:40:4f:e8 grid@rac02

The key's randomart image is:

+-[RSA 2048]-+

| | oval roomo. | |

|. = * .o |

| o. . =. | |

|. . .e +. |

| | S +. |

|. +. |

|. + |

|. + |

| | .o |

+-+

[grid@rac02 .ssh] $cat id_rsa.pub > > authorized_keys

[grid@rac02 .ssh] $cat id_dsa.pub > > authorized_keys

[grid@rac02 .ssh] $scp authorized_keys rac01:/home/grid/.ssh/authorized_keys

Grid@rac01's password:

Authorized_keys 100% 1984 1.9KB/s 00:00

[grid@rac02 ~] $ssh rac01 date

Tue Sep 30 11:00:49 CST 2014

[grid@rac02 ~] $ssh rac02 date

Tue Sep 30 11:00:51 CST 2014

13. Install GRID

[root@rac01 grid] # unzip linuxamd64_12102_grid_1of2.zip

[root@rac01 grid] # unzip linuxamd64_12102_grid_2of2.zip

[root@rac01 u01] # cd grid/

RAC01

[root@rac01 rpm] # rpm-ivh cvuqdisk-1.0.9-1.rpm

Preparing... # [100%]

Using default group oinstall to install package

1:cvuqdisk # # [100%]

RAC02

[root@rac02 ~] # scp rac01:/u01/grid/rpm/cvuqdisk-1.0.9-1.rpm / U01

The authenticity of host 'rac01 (10.109.67.52)' can't be established.

RSA key fingerprint is cf:bf:03:06:2d:c8:83:ae:fa:f7:93:7e:87:a5:3b:7a.

Are you sure you want to continue connecting (yes/no)? Yes

Warning: Permanently added 'rac01' (RSA) to the list of known hosts.

Root@rac01's password:

Cvuqdisk-1.0.9-1.rpm 100% 8976 8.8KB/s 00:00

[root@rac02 ~] # cd / u01 /

[root@rac02 U01] # rpm-ivh cvuqdisk-1.0.9-1.rpm

Preparing... # [100%]

Using default group oinstall to install package

1:cvuqdisk # # [100%]

. / runInstaller starts configuration and installation

Check the installation

[grid@rac01 ~] $srvctl status nodeapps

VIP rac01vip.localdomain.com is enabled

VIP rac01vip.localdomain.com is running on node: rac01

VIP rac02vip.localdomain.com is enabled

VIP rac02vip.localdomain.com is running on node: rac02

Network is enabled

Network is running on node: rac01

Network is running on node: rac02

ONS is enabled

ONS daemon is running on node: rac01

ONS daemon is running on node: rac02

14. Decompress and install database software

15. ASMCA creates ASM disk

16. DBCA creates a database

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report