7.1解压文件
注意,安装Grid时需要以grid用户身份执行,在那之前需要以root身份执行xhost+,即命令:
代码1
[root@sgdb1~]# xhost+

[root@sgdb1~]# su - grid
[grid@sgdb1~]$ unzip /tmp/p10404530_112030_Linux-x86-64_3of7.zip
解压得到/tmp/grid文件夹

1  执行xhost+
[grid@sgdb1~]$ cd /tmp/grid

[grid@sgdb1~]$ ./runInstaller

2  执行runInstaller
7.2 跳过软件更新
选择【Skip software updates】,点击【Next】

3  跳过软件更新

7.3 Grid安装选项

选择【Install and configure oracle grid infrastructure for a cluster】,点击【Next】

4  Grid安装选项

7.4 Grid安装方式

选择【Advanced Installation】,选择高级安装方式,点击【Next】

5  Grid安装方式

7.5 Grid安装语言

在左侧选择【Simplified Chinese】加入到右侧中,点击【Next】

6  Grid安装语言

7.6 设置SCAN IP

在SCAN Name中添加scan-ip对应的主机名,如不明确,可去/etc/hosts文件中查询
取消【Configure GNS】
点击【Next】

7  设置SCAN Name

7.7 配置集群服务器SSH服务

默认情况下,一般只有sgdb1,需要手动添加sgdb2与sgdb2-vip(添加后要保证SSH Connectivity的正确性),点击【Add】按钮,添加节点

8  配置集群服务器SSH服务
输入另外一个节点的相关主机名:sgdb2、sgdb2-vip,点击【OK】

9  配置集群服务器SSH服务
配置SSH属性,点击【SSH Connectivity】

10       配置集群服务器SSH服务
输入grid用户的密码,点击【Setup】按钮,建立互信

11       配置集群服务器SSH服务
互信建立完毕,点击【OK】,点击【Next】

12       配置集群服务器SSH服务

7.8 设置网络

确认网络,包括私网网段与公网网段,确认无误后,点击【Next】

13       设置网络

7.9 选择存储方式

选择【ASM】方式,点击【Next】

14       选择存储方式

7.10  选择OCR+投票盘

输入磁盘组名称:BJ_SGDB_OCR;
冗余方式【Redundancy】- 选择【Extenal】(根据实际场景可选择High、Normal)
勾选投票盘/dev/asm-ocr,
点击【Next】
注意:如果使用ASM块设备方式,路径为/dev;如果使用裸设备方式,路径为/dev/raw/*;如果找不到磁盘,点击右下方的【Change Discovery Path】修改路径。

15       选择投票盘

7.11 设置ASM管理用户密码

(密码一般为oracle),点击【Next】

16       设置ASM管理用户密码
点击【Yes】

17       设置ASM管理用户密码

7.12 设置IPM

勾选【Do not use intelligent platform management interface(IPMI)】(默认)
点击【Next】

18       设置IPMI

7.13 设置ASM管理用户与用户组

DBA                    选择asmdba组
Operator              选择asmoper组
Adminstrator 选择asmadmin组

19       ASM管理用户与组

7.14 设置Grid软件安装路径

一般由Grid用户的环境变量设置,默认即可。点击【Next】

20       设置Grid软件安装路径

7.15 设置oraInventory路径

(默认即可),点击【Next】

21       设置oraInventory路径

7.16 执行安装前检查

有若干错误,没有关系,可以通过点击【Fix & Check Again】来解决

22       执行安装前检查
此时将有对话框弹出,以root身份运行/tmp/CVU_11.2.0.4_grid/runfixup.sh,(sgdb1与sgdb2两台都需要执行)

23       执行自动fix脚本
代码22
[root@sgdb1 CVU_11.2.0.4.0_grid]# ./runfixup.sh

Response file being used is :./fixup.response
Enable file being used is :./fixup.enable
Log file location: ./orarun.log
Installing Package /tmp/CVU_11.2.0.4.0_grid//cvuqdisk-1.0.9-1.rpm
Preparing...                ########################################### [100%]
1:cvuqdisk               ########################################### [100%]
 
代码23
[root@sgdb2 CVU_11.2.0.4.0_grid]# ./runfixup.sh

Response file being used is :./fixup.response
Enable file being used is :./fixup.enable
Log file location: ./orarun.log
Installing Package /tmp/CVU_11.2.0.4.0_grid//cvuqdisk-1.0.9-1.rpm
Preparing...                ########################################### [100%]
1:cvuqdisk               ########################################### [100%]
执行完成后,点击【OK】
确认无特殊问题,点击【Ignore All】
点击【Next】

24       再次执行检查
点击【Yes】

25       确认忽略问题

7.17 安装信息统计

点击【Install】,开始安装

26       安装前信息汇总

7.18 安装过程

27       安装过程

7.19 安装结束前,需要执行脚本

安装到最后阶段,需要以root身份执行这两个脚本,注意顺序一定不能错
执行顺序为
SGDB1节点执行orainstRoot.sh
SGDB2节点执行orainstRoot.sh
SGDB1节点执行root.sh
SGDB2节点执行root.sh

28       安装过程中执行脚本
在执行之前,需要查看/oracle目录下的所有目录的属主和权限,如果权限不正确,下面步骤将执行错误
步骤一:SGDB1节点执行orainstRoot.sh
代码24
[root@sgdb1 ~]# /oracle/oraInventory/orainstRoot.sh

Changing permissions of /oracle/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /oracle/oraInventory to oinstall.
The execution of the script is complete.
步骤二:SGDB2节点执行orainstRoot.sh
代码25
[root@sgdb2 ~]# /oracle/oraInventory/orainstRoot.sh

Changing permissions of /oracle/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /oracle/oraInventory to oinstall.
The execution of the script is complete.
)步骤三:  SGDB1节点执行root.sh
代码26
[root@sgdb1 ~]# /oracle/crs/root.sh

Performing root user operation for Oracle 11g
The following environment variables are set as:
ORACLE_OWNER= grid
ORACLE_HOME=  /oracle/crs
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.
Using configuration parameter file: /oracle/crs/crs/install/crsconfig_params
Creating trace directory
User ignored Prerequisites during installation
Installing Trace File Analyzer
OLR initialization - 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
Adding Clusterware entries to upstart
CRS-2672: Attempting to start 'ora.mdnsd' on 'sgdb1'
CRS-2676: Start of 'ora.mdnsd' on 'sgdb1' succeeded
CRS-2672: Attempting to start 'ora.gpnpd' on 'sgdb1'
CRS-2676: Start of 'ora.gpnpd' on 'sgdb1' succeeded
CRS-2672: Attempting to start 'ora.cssdmonitor' on 'sgdb1'
CRS-2672: Attempting to start 'ora.gipcd' on 'sgdb1'
CRS-2676: Start of 'ora.cssdmonitor' on 'sgdb1' succeeded
CRS-2676: Start of 'ora.gipcd' on 'sgdb1' succeeded
CRS-2672: Attempting to start 'ora.cssd' on 'sgdb1'
CRS-2672: Attempting to start 'ora.diskmon' on 'sgdb1'
CRS-2676: Start of 'ora.diskmon' on 'sgdb1' succeeded
CRS-2676: Start of 'ora.cssd' on 'sgdb1' succeeded
ASM created and started successfully.
Disk Group BJ_SGDB_DATA created successfully.
clscfg: -install mode specified
Successfully accumulated necessary OCR keys.
Creating OCR keys for user 'root', privgrp 'root'..
Operation successful.
CRS-4256: Updating the profile
Successful addition of voting disk 3766451fc40a4fb4bf5638920562eefe.
Successfully replaced voting disk group with +BJ_SGDB_DATA.
CRS-4256: Updating the profile
CRS-4266: Voting file(s) successfully replaced
##  STATE    File Universal Id                File Name Disk group
--  -----    -----------------                --------- ---------
1. ONLINE   3766451fc40a4fb4bf5638920562eefe (/dev/asm-data1) [BJ_SGDB_DATA]
Located 1 voting disk(s).
CRS-2672: Attempting to start 'ora.BJ_SGDB_DATA.dg' on 'sgdb1'
CRS-2676: Start of 'ora.BJ_SGDB_DATA.dg' on 'sgdb1' succeeded
Configure Oracle Grid Infrastructure for a Cluster ... succeeded
步骤四:SGDB2节点执行root.sh
代码27
[root@sgdb2 ~]# /oracle/crs/root.sh

Performing root user operation for Oracle 11g
The following environment variables are set as:
ORACLE_OWNER= grid
ORACLE_HOME=  /oracle/crs
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.
Using configuration parameter file: /oracle/crs/crs/install/crsconfig_params
Creating trace directory
User ignored Prerequisites during installation
Installing Trace File Analyzer OLR initialization - successful
Adding Clusterware entries to upstart
CRS-4402: The CSS daemon was started in exclusive mode but found an active CSS daemon on node sgdb1, number 1, and is terminating
An active cluster was found during exclusive startup, restarting to join the cluster
Configure Oracle Grid Infrastructure for a Cluster ... succeeded
 
意外情况:
代码28
执行/oracle/crs/root.sh报出:

Failed to create keys in the olr错误
问题原因是缺少包导致的,在节点上安装compat-libcap包
[root@sgdb2 # yum -y install compat-libcap*
执行以下命令,清空当前CRS的配置
[root@sgdb2 #perl /oracle/crs/crs/install/rootcrs.pl -verbose -deconfig -force
再次执行/oracle/crs/root.sh
 

7.20 Grid继续安装

如果上一步全部成功,则可以点击【OK】,继续完成安装

29       点击OK继续安装

30       继续安装

7.21 Grid完成安装

安装到100%的时候,会报错,直接点击【OK】即可:

31       报错信息

7.22 Grid安装完毕,有一项错误

错误为【Oracle Cluster Verification Utility Failed】,不影响集群的使用,点击【Close】

32       安装完毕

第7步:安装Grid的更多相关文章

  1. 【RAC】 RAC For W2K8R2 安装--grid的安装(四)

    [RAC] RAC For W2K8R2 安装--grid的安装(四) 一.1  BLOG文档结构图 一.2  前言部分 一.2.1  导读 各位技术爱好者,看完本文后,你可以掌握如下的技能,也可以学 ...

  2. linux下一步一步安装禅道项目管理工具

    linux下一步一步安装禅道项目管理工具 因为禅道官网的安装教程实在是太简陋了,所以记录在此. 1.安装apache服务 archlinux下直接 sudo pacman -S apache ubun ...

  3. Mac系统下使用VirtualBox虚拟机安装win7--第一步 安装vbox虚拟机

    Mac系统下使用VirtualBox虚拟机安装win7操作步骤: 第一步 安装vbox虚拟机 1.先下载vbox,下载地址:: https://www.virtualbox.org/wiki/Down ...

  4. 安装GRID时跑root.sh脚本报错(ORA-27091: unable to queue I/O)

    在安装GRID过程中,运行root.sh脚本时报如下信息: Adding Clusterware entries to upstart CRS-2672: Attempting to start 'o ...

  5. 基于CentOS与VmwareStation10搭建Oracle11G RAC 64集群环境:4.安装Oracle RAC FAQ-4.5.安装Grid,创建ASM磁盘组空间不足

    因之前分区时,分区的Last cylinder的值选了“1”,导致创建磁盘组空间不足.解决办法是先删除分区,重新创建分区并删除ASM磁盘,然后重建ASM磁盘 1. 先删除分区,重新创建分区: 1)查询 ...

  6. 基于CentOS与VmwareStation10搭建Oracle11G RAC 64集群环境:4.安装Oracle RAC FAQ-4.4.无法图形化安装Grid Infrastructure

    无法图形化安装: [grid@linuxrac1 grid]$ ./runInstaller Starting Oracle Universal Installer... Checking Temp ...

  7. 安装grid之前检查配置 ,报错如下

    centos 5 _x86_64 oracle 11.2 安装grid之前检查配置 ,报错如下 : ./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -fi ...

  8. Linux下搭建Oracle11g RAC(6)----安装Grid Infrastructure

    从此步骤开始,我们正式安装Grid软件: ① 以grid用户登录图形界面,执行/home/grid/grid/runInstaller,进入OUI的图形安装界面: ② 进入OUI安装界面后,选择第3项 ...

  9. rac安装grid报INS-41112错误

    原创作品,出自 "深蓝的blog" 博客,欢迎转载,转载时请务必注明下面出处,否则追究版权法律责任. 深蓝的blog:http://blog.csdn.net/huangyanlo ...

随机推荐

  1. vue - webpack.dev.conf.js for HtmlWebpackPlugin

    描述: 这是一个webpack插件,可以简化HTML文件的创建,为您的webpack捆绑服务提供服务. 这对于webpack包含文件名中包含哈希值的bundle 来说尤其有用,它会更改每个编译. 您可 ...

  2. 用filter:grayscale将图片过滤成灰色

    设置成百分之百直接过滤成灰色: img{filter:gray; filter:grayscale(100%); -0-filter:grayscale(100%); -moz-filter:gray ...

  3. (原创)开发使用Android studio所遇到的一些问题总结

    1.Android studio下载链接地址(无需FQ):包括先行版和正式版(推荐使用正式版bug少) http://www.androiddevtools.cn/ 2.第一次安装避免成功先不要急着打 ...

  4. linux svn恢复删除的文件夹和文件(转)

    我觉得在window下面,查找被删除的svn文件夹和文件是件比较麻烦的事,恢复就更麻烦了.有的时候,命令还是比鼠标要好用的. 下面做一个例子来说明一下,删除和恢复的例子. [root@BlackGho ...

  5. python selenium--常用函数1

    新建实例driver = webdriver.Chrome() 1.通过标签属性Id查找元素 方法:find_element_by_id(element_id) 实例:driver.find_elem ...

  6. STL 容器(vector 和 list )

    1.这个容器的知识点比较杂 迭代器的理解: 1.erase()函数的返回值,它的迭代器在循环遍历中的奇特之处: #define _CRT_SECURE_NO_WARNINGS #include < ...

  7. 在linux下运行jmeter

    之前在用JMeter做性能测试时基本都用自己的笔记本电脑. 考虑到网络传输和占用系统资源情况时进行了以下分析: 1 在笔记本上,开始-cmd "ping 服务器",得到传输时间.在 ...

  8. android studio - 修改logcat颜色字体

     修改logcat 颜色 (1) 在Android Studio 菜单栏 打开 Preferences -> Editer -> Colors & Fonts -> Andr ...

  9. 蓝桥杯第五届B组 李白打酒

    外面的小雨下着,风吹着,在实验室敲着代码 时隔一年之后再次做这道题,依然神一样的回溯出来: 标题:李白打酒 话说大诗人李白,一生好饮.幸好他从不开车. 一天,他提着酒壶,从家里出来,酒壶中有酒2斗.他 ...

  10. 什么是ETag

    ETag 是 Entity Tag 的缩写,中文译过来就是实体标签的意思.在HTTP1.1协议中其实就是请求HEAD中的一个属性而已. HTTP/1.1 200 OK Date: Mon, 23 Ma ...