Centos6.5 + Oracle 11g r2 + nfs搭建RAC环境二

以下检查,最好在二台机器上都进行操作;

  • 检查crs状态:
[[email protected] ~]$ crsctl check crs
CRS-4638: Oracle High Availability Servicesis online
CRS-4537: Cluster Ready Services is online
CRS-4529: Cluster Synchronization Servicesis online
CRS-4533: Event Manager is online
  • 检查集群节点
[[email protected] ~]$ olsnodes -n
rac1 1
rac2 2
  1. 检查监听器进程
[[email protected] ~]$ srvctl status listener
监听程序 LISTENER      已启用
监听程序 LISTENER      正在节点上运行: rac1,rac2
  • 检查Oracle ASM
 [[email protected] ~]$ srvctl status asm -a
ASM         正在 rac1,rac2上运行
ASM         已启用。
  • 检查OCR
[[email protected] ~]$ ocrcheck
Status of Oracle Cluster Registry is asfollows :
Version: 3
Total space (kbytes): 262120
Used space (kbytes): 2248
Available space (kbytes) : 259872
ID : 1968086688 Device/File Name: +OCR_VOTE
Device/File integrity check succeededDevice/File not configured Device/File not configured Device/File notconfigured Device/File not configured
Cluster registry integrity check succeeded
Logical corruption check bypassed due tonon-privileged user
  • 检查表决磁盘
[[email protected] ~]$ crsctl query css votedisk
## STATE        File Universal Id                                File Name Diskgroup
--  -----       -----------------                                ------------------
 ONLINE     433b29a662934f14bf5ce26f5c5f1bbf (ORCL:OCR_VOTE01) [OCR_VOTE]
  • 安装oracle11gR2
[[email protected] ~]$ unziplinux.x64_11gR2_database_1of2.zip
[[email protected] ~]$ unziplinux.x64_11gR2_database_2of2.zip
[[email protected] ~]$ cd database/
[[email protected] database]$ ./runInstaller

在二台机器上运行脚本
[[email protected] ~]#/u01/app/oracle/product/11.2.0/db_1/root.sh  
Running Oracle 11g root.sh script... 
The following environment variables are setas: 
ORACLE_OWNER= oracle 
ORACLE_HOME=    /u01/app/oracle/product/11.2.0/db_1 
Enter the full pathname of the local bindirectory: [/usr/local/bin]: 
The file "dbhome" already existsin /usr/local/bin.    Overwrite it? (y/n)
[n]: y 
Copying dbhome to /usr/local/bin ... 
The file "oraenv" already existsin /usr/local/bin.    Overwrite it? (y/n)
[n]: y 
Copying oraenv to /usr/local/bin ... 
The file "coraenv" already existsin /usr/local/bin.    Overwrite it? (y/n)
[n]: y 
Copying coraenv to /usr/local/bin ... 
 
 
Entries will be added to the /etc/oratabfile as needed by 
Database Configuration Assistant when adatabase is created 
Finished running generic part of root.shscript. 
Now product-specific root actions will beperformed. 
Finished product-specific root actions.

  • 创建数据库
# su  – oracle
$ dbca

至此,oracle 11gr2 rac安装完成,可以使用plsql进行连接测试即可

时间: 2024-10-05 20:17:06

Centos6.5 + Oracle 11g r2 + nfs搭建RAC环境二的相关文章

Centos6.5 + Oracle 11g r2 + nfs搭建RAC环境一

环境要求: 1.2台系统为Centos6.5的机器,其中 1台做nfs(硬盘大小至少4T) 2. 每台机器至少2块网卡 3. 准备5个可用的IP地址(一个为scan,二台配置各配置public和private地址) 4. 内存至少2G以下内存,建议使用4G或者更高 地址规划: 第一台主机:rac1  网卡eth0 IP地址:172.16.0.1/24  网卡eth1地址: 192.168.1.192/24 第一台主机:rac1  网卡eth0 IP地址:172.16.0.2/24  网卡eth1

CentOS6安装 Oracle 11g R2

选型:32位的内存是个瓶颈,已经是64位的时代了.使用64位的CentOS6 和 64位的Oracle 11g R2在虚拟机器安装,采用hostonly方式设置网络注意:能上网的网卡要设置一下ICS(Internet连接共享)给VMware Network Adapter VMnet1这样对于虚拟机,网关是192.168.137.1,IP地址请也要设置在192.168.137.0/24段硬盘40G,内存2G 1.下载软件1.1.CentOS 6(x86_64)http://mirrors.163

CentOS 5.11下Oracle 11G R2 Dataguard搭建

Datagard算是Oracle企业版的一种容灾方案,在企业中广泛应用,我就将搭建过程记录下来以作备用. 主机名    数据库版本    实例名    IP db1    Oracle 11G R2    member    172.16.1.250 db2    Oracle 11G R2    member    172.16.1.251 默认情况下以上都已经安装好了Oracle数据库,但是只在db1上建立了数据库和监听,db2只安装Oracle软件不建库,不建监听. 目录: 打开强制归档日

ORACLE 11g R2数据库安装硬件环境要求

物理内存要求:最小1G,在windows7,windows8,windows8.1上最小2G. 虚拟内存(或分页空间)容量要求: Available RAM Swap Space Required Between 2GB and 16GB Equal to the size of RAM More than 16 GB 16GB 数据库软件硬盘空间要求: Installation Type Requirement for software files TEMP Space 500MB C:\Pr

Oracle 11g R2 ADG 搭建

--============Oracle ADG搭建============== --==========准备阶段========= 1.检查primary为archivelog模式.select log_mode from v$database; 如果为noarchivelog模式,切换到archivelog模式.shutdown immediate;startup mount;alter database archivelog;alter database open; 执行forced lo

CentOS6.5 oracle 11g R2 开机自动启动

1.root 用户下修改ORATAB(将N该为Y): [[email protected] ~]# vim /etc/oratab mytest:/oracle/product/11.2.0/db_1:Y 2.oracle 用户下修改: [[email protected] ~]$cd $ORACLE_HOME/bin [[email protected] bin]$ vim dbstart 找到 ORACLE_HOME_LISTNER=$1 这行, 修改成: ORACLE_HOME_LISTN

Oracle 11g R2 RAC dbca新建实例报错

此oracle问题本人在论坛上作了提问http://bbs.51cto.com/thread-1167548-1.html,最后自己找到方法解决,以此博客再作记录. 环境:CentOS6.5 64位,Oracle 11g R2 11.2.0.1.0 现象:oracle rac生产环境中,已经有一个实例正常使用,有需求再建一实例. 新建实例过程中,最后步骤具体报错如下:    [Thread-829] [ 2015-09-09 11:29:42.007 CST ] [DatabaseImpl.cr

oracle 11g r2 rac ssh两节点互信对等配置Permission denied (publickey,gssapi-with-mic,password)

问题:安装oracle 11g r2 RAC grid 时,配置两节点ssh互信对等配置不成功,具体错误信息如下: ------------------------------------------------------------------------ Verifying SSH connectivity has been setup from rac1 to rac1 -----------------------------------------------------------

Oracle 11G R2 RAC中的scan ip 的用途和基本原理【转】

Oracle 11G R2 RAC增加了scan ip功能,在11.2之前,client链接数据库的时候要用vip,假如你的cluster有4个节点,那么客户端的tnsnames.ora中就对应有四个主机vip的一个连接串,如果cluster增加了一个节点,那么对于每个连接数据库的客户端都需要修改这个tnsnames.ora. 引入了scan以后,就方便了客户端连接的一个接口,顾名思义 single client access name ,简单客户端连接名,这是一个唯一的名称,在整个公司网络内部