国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 數(shù)據(jù)庫(kù) > Oracle > 正文

Oracle 11g RAC 搭建詳細(xì)步驟

2024-08-29 13:54:40
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

Oracle RAC 搭建步驟詳解

前期準(zhǔn)備

數(shù)據(jù)庫(kù):11.2.0.4

OS:Centos 6.8

ip分配:

#publice ip

192.168.180.2 rac1

192.168.180.3 rac2

#PRivate ip

10.10.10.2  rac1-priv

10.10.10.3  rac2-priv

#vip

192.168.180.4 rac1-vip

192.168.180.5 rac2-vip

#scan ip

192.168.180.6 rac-scan

RAC 存儲(chǔ)配置:

   OCR_VOTING  3個(gè) 4G

   DATA         1個(gè) 50G

   FRA_ARC      1個(gè) 20G

1. 配置udev(所有節(jié)點(diǎn))

關(guān)于RAC 共享存儲(chǔ)可參考:http://blog.csdn.net/shiyu1157758655/article/details/56837550

用如下腳本獲取綁定腳本:注意這里的 c d e f g是要作為共享的存儲(chǔ)的磁盤(pán),要根據(jù)自己實(shí)際情況修改。

for i in c d e f g ;

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

重啟start_udev

2. 添加組和用戶(hù)(所有節(jié)點(diǎn))

groupadd -g 1000 oinstall

groupadd -g 1200 asmadmin

groupadd -g 1201 asmdba

groupadd -g 1202 asmoper

groupadd -g 1300 dba

groupadd -g 1301 oper

useradd -m -u 1100 -g oinstall -Gasmadmin,asmdba,asmoper,dba -d /home/grid-s /bin/bash grid

useradd -m -u 1101 -g oinstall -Gdba,oper,asmdba -d /home/oracle -s/bin/bash oracle

--將用戶(hù)grid添加到dba組:

[root@rac1 app]# gpasswd -a grid dba

Adding user grid to group dba

--確認(rèn)用戶(hù)信息:

[root@rac1 ~]# id oracle

uid=502(oracle)gid=507(oinstall)groups=507(oinstall),502(dba),503(oper),506(asmdba)

[root@rac1 ~]# id grid

uid=1100(grid) gid=507(oinstall)groups=507(oinstall),504(asmadmin),506(asmdba),505(asmoper)

--修改密碼:

passwd oracle

passwd grid

3.  禁用防火墻和SELNUX(所有節(jié)點(diǎn))

關(guān)閉防火墻:

service iptables status

service iptables stop

chkconfig iptables off

chkconfig iptables –list    

設(shè)置/etc/selinux/config 文件,將SELINUX設(shè)置為disabled。

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

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

# SELINUX= can take one of these three values:

#     enforcing - SELinux securitypolicy is enforced.

#     permissive - SELinux printswarnings instead of enforcing.

#     disabled - No SELinux policyis loaded.

SELINUX=disabled

# SELINUXTYPE= can take one of these two values:

#     targeted - Targeted processesare protected,

#     mls - Multi Level Securityprotection.

SELINUXTYPE=targeted

4.  配置時(shí)間同步(所有節(jié)點(diǎn))

這里我們使用CTSS.所以要停用 NTP 服務(wù),并從初始化序列中禁用該服務(wù),并刪除 ntp.conf 文件。以 root 用戶(hù)身份在兩個(gè) OracleRAC 節(jié)點(diǎn)上運(yùn)行以下命令:

[root@rac1 ~]# /sbin/service ntpd stop
Shutting down ntpd: [ OK ]
[root@rac1 ~]# chkconfig ntpd off
[root@rac1 ~]# mv /etc/ntp.conf/etc/ntp.conf.original
[root@rac1 ~]# chkconfig ntpd --list
ntpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off

還要?jiǎng)h除以下文件:

rm /var/run/ntpd.pid

此文件保存了 NTP 后臺(tái)程序的 pid

5.  創(chuàng)建目錄結(jié)構(gòu)(所有節(jié)點(diǎn))

Inventory 目錄:/u01/app/oraInventory

ORACLE BASE 目錄:/u01/app/oracle

Grid Infrastructure HOME 目錄:/u01/app/grid/product/11.2.0/grid_1

RDBMS HOME 目錄:/u01/app/oracle/product/11.2.0/db_1

配置相關(guān)目錄的屬主及權(quán)限

Inventory 目錄:屬主,grid:oinstall;權(quán)限,775

ORACLE BASE 目錄:屬主,oracle:oinstall;權(quán)限,775

Grid Infrastructure HOME 目錄:屬主,grid:oinstall;權(quán)限,775

RDBMS HOME 目錄:屬主,oracle:oinstall;權(quán)限,775

mkdir -p/u01/app/oraInventory

mkdir -p/u01/app/oracle

mkdir -p/u01/app/grid/product/11.2.0/grid_1

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

[root@rac1 ~]#chown -R grid:oinstall /u01/app/oraInventory/

[root@rac1 ~]#chown -R oracle:oinstall /u01/app/oracle/

[root@rac1 ~]#chown -R grid:oinstall /u01/app/grid/product/12.1.0/grid_1/

[root@rac1 ~]#chown -R oracle:oinstall /u01/app/oracle/product/12.1.0/db_1/

6.  配置主機(jī)/etc/hosts 別名(所有節(jié)點(diǎn))

如果需要沒(méi)有計(jì)劃采用 DNS 服務(wù)器,需要在服務(wù)器本地配置服務(wù)器主機(jī)名與 IP 地址的映射

關(guān)系。具體涉及的主要配置文件為:

/etc/hosts

該配置文件主要的配置信息建議如下

    127.0.0.1   localhost  //記住這個(gè)一定要加上

#public ip

192.168.180.2  rac1

192.168.180.3  rac2

#private ip

10.10.10.2     rac1-priv

10.10.10.3     rac2-priv

#vip

192.168.180.4  rac1-vip

192.168.180.5  rac2-vip

#scan ip

192.168.180.6  rac-scan

注意:除了本機(jī)主機(jī)名映射地址條目外,兩個(gè)節(jié)點(diǎn)的/etc/hosts 配置文件需要一致。上述建議

信息中:public ip、virtual ip、scan 為提供服務(wù)的 ip;privateip 為心跳私有 ip

7.  配置節(jié)點(diǎn)互信機(jī)制(所有節(jié)點(diǎn))

需要將 grid 用戶(hù)、oracle 用戶(hù)配置好集群節(jié)點(diǎn)之間的互信機(jī)制。配置集群節(jié)點(diǎn)互信機(jī)制建議

采用ssh 協(xié)議。主要涉及的配置文件有:

$HOME/.ssh/authorized_keys

注意:此文件需要手工創(chuàng)建。

具體可參考:http://blog.csdn.net/shiyu1157758655/article/details/56838603

8.  配置環(huán)境變量(所有節(jié)點(diǎn))

需要對(duì) grid 用戶(hù)、oracle 用戶(hù)配置好環(huán)境變量。

grid 用戶(hù)的環(huán)境變量配置建議如下:

umask 022

PS1='$ORACLE_SID'":"'$PWD'"@"`hostname`">"

ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE

ORACLE_HOME=/u01/app/grid/product/11.2.0/grid_1; export ORACLE_HOME

ORACLE_SID=+ASM1; export ORACLE_SID

ORACLE_TERM=xterm; export ORACLE_TERM

TMPDIR=/var/tmp; export TMPDIR

NLS_DATE_FORMAT="YYYY/MM/DD hh24:mi:ss"; export NLS_DATE_FORMAT

ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data; export ORA_NLS33

TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN DISPLAY

LIBPATH=$ORACLE_HOME/lib; export LIBPATH

PATH=$PATH:$ORACLE_HOME/bin:/usr/sbin; export PATH

Oracle用戶(hù)的環(huán)境變量配置建議如下:

umask 022

PS1='$ORACLE_SID'":"'$PWD'"@"`hostname`">"

ORACLE_BASE=/u01/app/oracle_base; export ORACLE_BASE

ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME

ORACLE_SID=rac1; export ORACLE_SID

ORACLE_TERM=xterm; export ORACLE_TERM

TMPDIR=/var/tmp; export TMPDIR

NLS_DATE_FORMAT="YYYY/MM/DD hh24:mi:ss"; export NLS_DATE_FORMAT

ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data; export ORA_NLS33

TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN DISPLAY

LIBPATH=$ORACLE_HOME/lib; export LIBPATH

PATH=$PATH:$ORACLE_HOME/bin:/usr/sbin; export PATH

9.  修改/etc/security/limits.conf(所有節(jié)點(diǎn))

以 root 用戶(hù)身份,在每個(gè) OracleRAC 節(jié)點(diǎn)上,在 /etc/security/limits.conf 文件中添加如下內(nèi)容,或者執(zhí)行執(zhí)行如下命令:

root@rac1 ~]# cat >> /etc/security/limits.conf <<EOF
grid soft nproc 2047
grid hard nproc 16384
grid soft nofile 1024
grid hard nofile 65536
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
EOF

10. 修改/etc/pam.d/login(所有節(jié)點(diǎn))

在每個(gè) OracleRAC 節(jié)點(diǎn)上,在/etc/pam.d/login 文件中添加或編輯下面一行內(nèi)容:

[root@rac1 ~]# cat >> /etc/pam.d/login <<EOF
session required pam_limits.so
EOF

11. 配置系統(tǒng)默認(rèn) profile (所有節(jié)點(diǎn))

確認(rèn)以下配置加載到系統(tǒng)的默認(rèn) profile 中。具體涉及到的主要配置文件如下:

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

12. 修改/etc/sysctl.conf(所有節(jié)點(diǎn))

#vi /etc/sysctl.conf

kernel.shmmax = 4294967295

kernel.shmall = 2097152

kernel.shmmni = 4096

kernel.sem = 250 32000 100 128

fs.file-max = 6815744

net.ipv4.ip_local_port_range = 9000 65500

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

kernel.panic_on_oops=1

使修改的參數(shù)生效:

[root@rac1 ~]# sysctl -p

13. 安裝前檢查

+ASM1:/src/oracle/grid@rac1>./runcluvfy.sh stage -pre crsinst -nrac1,rac2

Performing pre-checks for cluster services setup

Checking node reachability...

Node reachability check passed from node "rac1"

Checking user equivalence...

User equivalence check passed for user "grid"

 

Checking node connectivity...

 

Checking hosts config file...

 

Verification of the hosts config file successful

 

Node connectivity passed for subnet "192.168.180.0" with node(s)rac2,rac1

TCP connectivity check passed for subnet "192.168.180.0"

 

Node connectivity passed for subnet "10.10.10.0" with node(s)rac2,rac1

TCP connectivity check passed for subnet "10.10.10.0"

 

 

Interfaces found on subnet "192.168.180.0" that are likelycandidates for VIP are:

rac2 eth0:192.168.180.3

rac1 eth0:192.168.180.2

 

Interfaces found on subnet "10.10.10.0" that are likelycandidates for a private interconnect are:

rac2 eth1:10.10.10.3

rac1 eth1:10.10.10.2

Checking subnet mask consistency...

Subnet mask consistency check passed for subnet "192.168.180.0".

Subnet mask consistency check passed for subnet "10.10.10.0".

Subnet mask consistency check passed.

 

Node connectivity check passed

 

Checking multicast communication...

 

Checking subnet "192.168.180.0" for multicast communication withmulticast group "230.0.1.0"...

Check of subnet "192.168.180.0" for multicast communication withmulticast group "230.0.1.0" passed.

 

Checking subnet "10.10.10.0" for multicast communication withmulticast group "230.0.1.0"...

Check of subnet "10.10.10.0" for multicast communication withmulticast group "230.0.1.0" passed.

 

Check of multicast communication passed.

 

Checking ASMLib configuration.

Check for ASMLib configuration passed.

Total memory check passed

Available memory check passed

Swap space check passed

Free disk space check passed for "rac2:/var/tmp"

Free disk space check passed for "rac1:/var/tmp"

Check for multiple users with UID value 1100 passed

User existence check passed for "grid"

Group existence check passed for "oinstall"

Group existence check passed for "dba"

Membership check for user "grid" in group "oinstall"[as Primary] passed

Membership check for user "grid" in group "dba" passed

Run level check passed

Hard limits check passed for "maximum open file descriptors"

Soft limits check passed for "maximum open file descriptors"

Hard limits check passed for "maximum user processes"

Soft limits check passed for "maximum user processes"

System architecture check passed

Kernel version check passed

Kernel parameter check passed for "semmsl"

Kernel parameter check passed for "semmns"

Kernel parameter check passed for "semopm"

Kernel parameter check passed for "semmni"

Kernel parameter check passed for "shmmax"

Kernel parameter check passed for "shmmni"

Kernel parameter check passed for "shmall"

Kernel parameter check passed for "file-max"

Kernel parameter check passed for "ip_local_port_range"

Kernel parameter check passed for "rmem_default"

Kernel parameter check passed for "rmem_max"

Kernel parameter check passed for "wmem_default"

Kernel parameter check passed for "wmem_max"

Kernel parameter check passed for "aio-max-nr"

Package existence check passed for "make"

Package existence check passed for "binutils"

Package existence check passed for "gcc(x86_64)"

Package existence check passed for "libaio(x86_64)"

Package existence check passed for "glibc(x86_64)"

Package existence check passed for "compat-libstdc++-33(x86_64)"

Package existence check passed for "elfutils-libelf(x86_64)"

Package existence check failed for"elfutils-libelf-devel"

Check failed on nodes:

rac2,rac1

Package existence check passed for "glibc-common"

Package existence check passed for "glibc-devel(x86_64)"

Package existence check passed for "glibc-headers"

Package existence check passed for "gcc-c++(x86_64)"

Package existence check passed for "libaio-devel(x86_64)"

Package existence check passed for "libgcc(x86_64)"

Package existence check passed for "libstdc++(x86_64)"

Package existence check passed for "libstdc++-devel(x86_64)"

Package existence check passed for "sysstat"

Package existence check passed for "pdksh"

Package existence check passed for "expat(x86_64)"

Check for multiple users with UID value 0 passed

Current group ID check passed

 

Starting check for consistency of primary group of root user

 

Check for consistency of root user's primary group passed

 

Starting Clock synchronization checks using Network Time Protocol(NTP)...

 

NTP Configuration file check started...

No NTP Daemons or Services were found to be running

 

Clock synchronization check using Network Time Protocol(NTP) passed

 

Core file name pattern consistency check passed.

 

User "grid" is not part of "root" group. Check passed

Default user file creation mask check passed

Checking consistency of file "/etc/resolv.conf" across nodes

 

File "/etc/resolv.conf" does not have both domain and searchentries defined

domain entry in file "/etc/resolv.conf" is consistent acrossnodes

search entry in file "/etc/resolv.conf" is consistent acrossnodes

PRVF-5636 : The DNS response time for an unreachable nodeexceeded "15000" ms on following nodes: rac2,rac1

 

File "/etc/resolv.conf" is not consistent across nodes

 

Time zone consistency check passed

 

Pre-check for cluster services setup was unsuccessful on all the nodes.

   要根據(jù)上面的檢查去進(jìn)行排查解決,如果沒(méi)有配置DNS的話(huà),

PRVF-5636 : The DNS response time for an unreachable nodeexceeded "15000" ms on following nodes: rac2,rac1

這個(gè)可以忽略。

14.安裝grid

在節(jié)點(diǎn)1,用grid用戶(hù)運(yùn)行runInstaller。

 

[root@rac1app]# chown -R grid:oinstall oracle  //2個(gè)節(jié)點(diǎn)都要執(zhí)行

 

 

上面2個(gè)可以忽略

 

 

 

節(jié)點(diǎn)1上執(zhí)行:

[root@rac1~]# /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.

 

節(jié)點(diǎn)2上執(zhí)行:

[root@rac2~]#/u01/app/oraInventory/orainstRoot.sh

Changingpermissions of /u01/app/oraInventory.

Addingread,write permissions for group.

Removingread,write,execute permissions for world.

 

Changinggroupname of /u01/app/oraInventory to oinstall.

Theexecution of the script is complete.

 

節(jié)點(diǎn)1上執(zhí)行:

[root@rac1~]# /u01/app/grid/product/11.2.0/grid_1/root.sh

Performingroot user Operation for Oracle 11g

 

Thefollowing environment variables are set as:

    ORACLE_OWNER= grid

    ORACLE_HOME=  /u01/app/grid/product/11.2.0/grid_1

 

Enterthe 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...

Entrieswill be added to the /etc/oratab file as needed by

DatabaseConfiguration Assistant when a database is created

Finishedrunning generic part of root script.

Nowproduct-specific root actions will be performed.

Usingconfiguration parameter file:/u01/app/grid/product/11.2.0/grid_1/crs/install/crsconfig_params

Creatingtrace directory

Userignored Prerequisites during installation

InstallingTrace File Analyzer

Failedto create keys in the OLR, rc = 127, Message:

 shared object file: No such file or directory

 

Failedto create keys in the OLR at/u01/app/grid/product/11.2.0/grid_1/crs/install/crsconfig_lib.pm line 7660.

duct/11.2.0/grid_1/crs/install/u01/app/grid/product/11.2.0/grid_1/crs/install/rootcrs.pl execution failed

 

這個(gè)報(bào)錯(cuò)是缺少包造成的,在2個(gè)節(jié)點(diǎn)上都安裝這個(gè)包就行了,具體可參考:http://blog.csdn.net/shiyu1157758655/article/details/59486625

 

[root@rac1 ~]# rpm -ivh/os/Packages/compat-libcap1-1.10-1.x86_64.rpm

warning:/os/Packages/compat-libcap1-1.10-1.x86_64.rpm: Header V3 RSA/SHA256 Signature,key ID c105b9de: NOKEY

Preparing...               ########################################### [100%]

   1:compat-libcap1        ########################################### [100%]

再次執(zhí)行:

[root@rac1~]# /u01/app/grid/product/11.2.0/grid_1/root.sh

Performingroot user operation for Oracle 11g

 

Thefollowing environment variables are set as:

    ORACLE_OWNER= grid

    ORACLE_HOME=  /u01/app/grid/product/11.2.0/grid_1

 

Enterthe full pathname of the local bin directory: [/usr/local/bin]:

Thecontents of "dbhome" have not changed. No need to overwrite.

Thecontents of "oraenv" have not changed. No need to overwrite.

Thecontents of "coraenv" have not changed. No need to overwrite.

 

Entrieswill be added to the /etc/oratab file as needed by

DatabaseConfiguration Assistant when a database is created

Finishedrunning generic part of root script.

Nowproduct-specific root actions will be performed.

Usingconfiguration parameter file:/u01/app/grid/product/11.2.0/grid_1/crs/install/crsconfig_params

Userignored Prerequisites during installation

InstallingTrace File Analyzer

OLRinitialization - successful

  root wallet

  root wallet cert

  root cert export

  peer wallet

  profile reader wallet

  pa wallet

  peer wallet keys

  pa wallet keys

  peer cert request

  pa cert request

  peer cert

  pa cert

  peer root cert TP

  profile reader root cert TP

  pa root cert TP

  peer pa cert TP

  pa peer cert TP

  profile reader pa cert TP

  profile reader peer cert TP

  peer user cert

  pa user cert

AddingClusterware entries to upstart

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

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

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

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

CRS-2672:Attempting to start 'ora.CSSdmonitor' on 'rac1'

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

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

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

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

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

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

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

 

ASMcreated and started successfully.

 

DiskGroup OCR_VOTING created successfully.

 

clscfg:-install mode specified

Successfullyaccumulated necessary OCR keys.

CreatingOCR keys for user 'root', privgrp 'root'..

Operationsuccessful.

CRS-4256:Updating the profile

Successfuladdition of voting disk 5ddc4ea587f04f18bfb066d1d3ff07d9.

Successfuladdition of voting disk 64611da725794f0ebf206204283eff9a.

Successfuladdition of voting disk 46a2f2c1a5a14f4fbf58e6505f889674.

Successfullyreplaced voting disk group with +OCR_VOTING.

CRS-4256:Updating the profile

CRS-4266:Voting file(s) successfully replaced

##  STATE   File Universal Id               File Name Disk group

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

 1. ONLINE  5ddc4ea587f04f18bfb066d1d3ff07d9 (/dev/asm-diskc) [OCR_VOTING]

 2. ONLINE  64611da725794f0ebf206204283eff9a (/dev/asm-diskd) [OCR_VOTING]

 3. ONLINE  46a2f2c1a5a14f4fbf58e6505f889674 (/dev/asm-diske) [OCR_VOTING]

Located3 voting disk(s).

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

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

CRS-2672:Attempting to start 'ora.OCR_VOTING.dg' on 'rac1'

CRS-2676:Start of 'ora.OCR_VOTING.dg' on 'rac1' succeeded

ConfigureOracle Grid Infrastructure for a Cluster ... succeeded

節(jié)點(diǎn)2上執(zhí)行:

[root@rac2~]# /u01/app/grid/product/11.2.0/grid_1/root.sh

Performingroot user operation for Oracle 11g

 

Thefollowing environment variables are set as:

    ORACLE_OWNER= grid

    ORACLE_HOME=  /u01/app/grid/product/11.2.0/grid_1

 

Enterthe 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...

Entrieswill be added to the /etc/oratab file as needed by

DatabaseConfiguration Assistant when a database is created

Finishedrunning generic part of root script.

Nowproduct-specific root actions will be performed.

Usingconfiguration parameter file:/u01/app/grid/product/11.2.0/grid_1/crs/install/crsconfig_params

Creatingtrace directory

Userignored Prerequisites during installation

InstallingTrace File Analyzer

OLRinitialization - successful

AddingClusterware entries to upstart

 terminating

Anactive cluster was found during exclusive startup, restarting to join thecluster

ConfigureOracle Grid Infrastructure for a Cluster ... succeeded

 

點(diǎn)擊ok繼續(xù)安裝:

這里有個(gè)報(bào)錯(cuò),我選擇忽略掉,貌似沒(méi)啥影響。

到此grid已經(jīng)安裝成功。

 

15. 創(chuàng)建ASM磁盤(pán)組

以grid用戶(hù)登陸,執(zhí)行asmca

選擇【create】

 

16. 安裝Oracle RDBMS軟件

在創(chuàng)建完磁盤(pán)組之后,即可安裝RDBMS軟件

注意:安裝RDBMS軟件,需要使用oracle用戶(hù)創(chuàng)建

./runInstaller

這里僅安裝軟件

忽略上面2個(gè)報(bào)錯(cuò)

點(diǎn)擊安裝即可

17. 創(chuàng)建數(shù)據(jù)庫(kù)

以oracle用戶(hù)執(zhí)行dbca

點(diǎn)擊執(zhí)行即可

18. 總結(jié)

到此oracle11g rac 安裝完成,期間遇到的各種問(wèn)題,需要耐心的一個(gè)個(gè)解決。

 


發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 开化县| 加查县| 吉首市| 永寿县| 扎赉特旗| 河间市| 南昌市| 双城市| 比如县| 阳春市| 彭水| 开平市| 聂拉木县| 临桂县| 静宁县| 安岳县| 德昌县| 扶余县| 新沂市| 大厂| 建水县| 新郑市| 当涂县| 呼伦贝尔市| 启东市| 临桂县| 都匀市| 通辽市| 宜阳县| 台前县| 兴义市| 正蓝旗| 鹿邑县| 广西| 亚东县| 淮安市| 泰安市| 桂阳县| 阜新| 德令哈市| 祁门县|