Oracle 学习之RAC(二) 环境准备

本次安装选择VMmare Workstation 10.0.1 ,创建四台虚拟机。如下:

Openfiler (openfileresa-2.99.1-x86_64)

机器名 IP地址
openfiler.localdomain.com 192.168.199.219

RAC节点  (OracleLinux-R6-U4-Server-x86_64)

机器名 Public-IP Private-IP VIP
11grac1 192.168.199.10 192.168.10.10 192.168.199.20
11grac2 192.168.199.11 192.168.10.11 192.168.199.21
11grac3 192.168.199.12 192.168.10.12 192.168.199.22
  1. 三台机器都配置/etc/hosts,内容如下
#node1
192.168.199.10    11grac1.localdomain.com               11grac1
192.168.199.20    11grac1-vip.localdomain.com           11grac1-vip
192.168.10.10     11grac1-priv.localdomain.com          11grac1-priv
#node2
192.168.199.11    11grac2.localdomain.com               11grac2
192.168.199.21    11grac2-vip.localdomain.com           11grac2-vip
192.168.10.11     11grac2-priv.localdomain.com          11grac2-priv
#node3
192.168.199.12    11grac3.localdomain.com               11grac3
192.168.199.22    11grac3-vip.localdomain.com           11grac3-vip
192.168.10.12     11grac3-priv.localdomain.com          11grac3-priv
#scanip
192.168.199.30    scan-cluster.localdomain.com          scan-cluster

2.三台机器都关闭防火墙

chkconfig iptables off
service iptables stop

3.关闭SeLinux

vi /etc/sysconfig/selinux
SELINUX=enforcing 改为 SELINUX=disabled

4.配置DNS服务器(在11grac3服务器上)

4.1 安装rpm包

[[email protected] Packages]# rpm -ivh bind-9.8.2-0.17.rc1.0.2.el6.x86_64.rpm 
warning: bind-9.8.2-0.17.rc1.0.2.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing...                ########################################### [100%]
   1:bind                   ########################################### [100%]

4.2 编辑/etc/named.conf,替换成如下内容

options {
     directory      "/var/named";
};

zone "." IN {
     type hint;
     file "named.ca";
};

zone "localhost" IN {
        type master;
        file "named.loopback";
};

zone "0.0.127.in-addr.apra" IN {
        type master;
        file "named.localhost";
};

zone "localdomain.com" IN {
       type master;
       file "localdomain.com.zone";
};

4.3 在/var/named/目录下,新建localdomain.com.zone文件,内容如下

$TTL 1D
$ORIGIN localdomain.com.
@     IN SOA     ns.localdomain.com.    admin (
                         0     ; serial
                         1D     ; refresh
                         1H     ; retry
                         1W     ; expire
                         3H )     ; minimum
                     IN         NS     ns
ns                   IN         A       172.168.199.12
11grac3              IN         A       192.168.199.12
11grac1              IN         A       192.168.199.10
11grac2              IN         A       192.168.199.11
scan-cluster         IN         A       192.168.199.30

4.4 启动DNS服务器

[[email protected] named]# service named restart
Stopping named:                                            [  OK  ]
Starting named:                                            [  OK  ]

如果发生了错误,尝试执行如下命令试试

[[email protected] named]# rndc-confgen -r /dev/urandom -a
wrote key file "/etc/rndc.key"

4.5 修改各服务器dns指向

[[email protected] named]# vi /etc/resolv.conf

添加如下内容

search localdomain.com
nameserver 192.168.199.12

4.6 验证dns

[[email protected] named]# nslookup 11grac1
Server:		192.168.199.12
Address:	192.168.199.12#53

Name:	11grac1.localdomain.com
Address: 192.168.199.10

[[email protected] named]# nslookup 11grac2
Server:		192.168.199.12
Address:	192.168.199.12#53

Name:	11grac2.localdomain.com
Address: 192.168.199.11

[[email protected] named]# nslookup 11grac3
Server:		192.168.199.12
Address:	192.168.199.12#53

Name:	11grac3.localdomain.com
Address: 192.168.199.12

[[email protected] named]# nslookup scan-cluster
Server:		192.168.199.12
Address:	192.168.199.12#53

Name:	scan-cluster.localdomain.com
Address: 192.168.199.30

5. 建立用户、建立目录、修改参数文件等 (脚本见附件)

[[email protected] scripts]# ./1preusers.sh 
[[email protected] scripts]# ./2predir.sh 
[[email protected] scripts]# ./3prelimits.sh 
[[email protected] scripts]# ./4prelogin.sh 
[[email protected] scripts]# ./5preprofile.sh 
[[email protected] scripts]# ./6presysctl.sh

6. 建立grid、oracle用户的无密码登录

6.1 在三台机器上都执行如下命令

[[email protected] scripts]# su - oracle
11grac1-> ssh-keygen -t rsa #后面都直接回车
Generating public/private rsa key pair.
Enter file in which to save the key (/home/oracle/.ssh/id_rsa): 
Created directory ‘/home/oracle/.ssh‘.
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/oracle/.ssh/id_rsa.
Your public key has been saved in /home/oracle/.ssh/id_rsa.pub.
The key fingerprint is:
31:43:2d:7e:30:bb:c9:d9:d9:8a:01:a2:51:bc:8b:2d [email protected]
The key‘s randomart image is:
+--[ RSA 2048]----+
|   .    ..       |
|    o  .+ .      |
|   . . .+=       |
|  . o . o+.      |
|   = o oS* o     |
|  E o   * o .    |
|   .     o .     |
|        . .      |
|                 |
+-----------------+

6.2 在三台机器上执行如下命令

11grac1-> ssh-copy-id -i .ssh/id_rsa.pub 11grac1
The authenticity of host ‘11grac1 (192.168.199.10)‘ can‘t be established.
RSA key fingerprint is cc:d0:c3:de:37:33:a7:cb:91:40:c5:5f:18:07:06:9f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘11grac1,192.168.199.10‘ (RSA) to the list of known hosts.
[email protected]‘s password: 
Now try logging into the machine, with "ssh ‘11grac1‘", and check in:

  .ssh/authorized_keys

to make sure we haven‘t added extra keys that you weren‘t expecting.

11grac2-> ssh-copy-id -i .ssh/id_rsa.pub 11grac1    
The authenticity of host ‘11grac1 (192.168.199.10)‘ can‘t be established.
RSA key fingerprint is cc:d0:c3:de:37:33:a7:cb:91:40:c5:5f:18:07:06:9f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘11grac1,192.168.199.10‘ (RSA) to the list of known hosts.
[email protected]‘s password: 
Now try logging into the machine, with "ssh ‘11grac1‘", and check in:

  .ssh/authorized_keys

to make sure we haven‘t added extra keys that you weren‘t expecting.

11grac3-> ssh-copy-id -i .ssh/id_rsa.pub 11grac1
The authenticity of host ‘11grac1 (192.168.199.10)‘ can‘t be established.
RSA key fingerprint is cc:d0:c3:de:37:33:a7:cb:91:40:c5:5f:18:07:06:9f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘11grac1,192.168.199.10‘ (RSA) to the list of known hosts.
[email protected]‘s password: 
Now try logging into the machine, with "ssh ‘11grac1‘", and check in:

  .ssh/authorized_keys

to make sure we haven‘t added extra keys that you weren‘t expecting.

6.3 以上命令会在11grac1的/home/oracle/.ssh目录下生成authorized_keys,将该文件copy到其他两机器上

11grac1-> scp authorized_keys 11grac2:/home/oracle/.ssh/
11grac1-> scp authorized_keys 11grac3:/home/oracle/.ssh/

6.4 重复6.1~6.3步骤,生成grid用户的无密码验证。

7. 验证各节点必须直接是否能无密码登录

   ssh 11grac1 date
   ssh 11grac2 date
   ssh 11grac3 date
   ssh 11grac3-priv date
   ssh 11grac2-priv date
   ssh 11grac1-priv date
   ssh 11grac1.localdomain.com date
   ssh 11grac2.localdomain.com date
   ssh 11grac3.localdomain.com date
   ssh 11grac3-priv.localdomain.com date
   ssh 11grac2-priv.localdomain.com date
   ssh 11grac1-priv.localdomain.com date

8. 挂载iscsi硬盘(每台机器上都执行)

8.1 查找iscsi硬盘

[[email protected] scripts]# iscsiadm -m discovery -t sendtargets -p 192.168.199.219
192.168.199.219:3260,1 iqn.2006-01.com.openfiler:fast_recover_area01
192.168.199.219:3260,1 iqn.2006-01.com.openfiler:rac_oradata01
192.168.199.219:3260,1 iqn.2006-01.com.openfiler:rac_ocrdisk03
192.168.199.219:3260,1 iqn.2006-01.com.openfiler:rac_ocrdisk02
192.168.199.219:3260,1 iqn.2006-01.com.openfiler:rac_ocrdisk01

8.2 设置开机自动挂载iscsi盘

iscsiadm -m node -T iqn.2006-01.com.openfiler:rac_oradata01 -p 192.168.199.219 --op update -n node.startup -v automatic
iscsiadm -m node -T iqn.2006-01.com.openfiler:fast_recover_area01 -p 192.168.199.219 --op update -n node.startup -v automatic
iscsiadm -m node -T iqn.2006-01.com.openfiler:rac_ocrdisk01 -p 192.168.199.219 --op update -n node.startup -v automatic
iscsiadm -m node -T iqn.2006-01.com.openfiler:rac_ocrdisk02 -p 192.168.199.219 --op update -n node.startup -v automatic
iscsiadm -m node -T iqn.2006-01.com.openfiler:rac_ocrdisk03 -p 192.168.199.219 --op update -n node.startup -v automatic

9.创建asm磁盘

9.1 安装oracleasm-support、oracleasmlib (三台机器都执行)

注:因oracle linux已经将oracleasm内置到内核中了,所以无需安装oracleasm的rpm包。如果使用非oracle Linux操作系统。请按装kmod-oracleasm-2.0.6.rh1-2.el6.x86_64.rpm 包。

[[email protected] /]# rpm -ivh oracleasm-support-2.1.8-1.el6.x86_64.rpm 
warning: oracleasm-support-2.1.8-1.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing...                ########################################### [100%]
   1:oracleasm-support      ########################################### [100%]
[[email protected] /]# rpm -ivh oracleasmlib-2.0.4-1.el6.x86_64.rpm 
warning: oracleasmlib-2.0.4-1.el6.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing...                ########################################### [100%]
   1:oracleasmlib           ########################################### [100%]
[[email protected] Packages]# oracleasm configure -i
Configuring the Oracle ASM library driver.

This will configure the on-boot properties of the Oracle ASM library
driver.  The following questions will determine whether the driver is
loaded on boot and what permissions it will have.  The current values
will be shown in brackets (‘[]‘).  Hitting <ENTER> without typing an
answer will keep that current value.  Ctrl-C will abort.

Default user to own the driver interface []: grid
Default group to own the driver interface []: asmdba
Start Oracle ASM library driver on boot (y/n) [n]: y
Scan for Oracle ASM disks on boot (y/n) [y]: y
Writing Oracle ASM library driver configuration: done

9.2 将磁盘分区(只需单节点执行)

9.3 创建asm磁盘

[[email protected] ~]# ll /dev/disk/by-path/
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:fast_recover_area01-lun-0 -> ../../sde
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:fast_recover_area01-lun-0-part1 -> ../../sde1
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_ocrdisk01-lun-0 -> ../../sdb
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_ocrdisk01-lun-0-part1 -> ../../sdb1
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_ocrdisk02-lun-0 -> ../../sdd
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_ocrdisk02-lun-0-part1 -> ../../sdd1
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_ocrdisk03-lun-0 -> ../../sdc
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_ocrdisk03-lun-0-part1 -> ../../sdc1
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_oradata01-lun-0 -> ../../sdf
ip-192.168.199.219:3260-iscsi-iqn.2006-01.com.openfiler:rac_oradata01-lun-0-part1 -> ../../sdf1

注意以上iscsi磁盘与/dev/sd*的对应关系。

[[email protected] ~]# oracleasm createdisk oradata /dev/sdf1 
Writing disk header: done
Instantiating disk: done
[[email protected] ~]# oracleasm createdisk fra /dev/sde1 
Writing disk header: done
Instantiating disk: done
[[email protected] ~]# oracleasm createdisk ocr01 /dev/sdb1 
Writing disk header: done
Instantiating disk: done
[[email protected] ~]# oracleasm createdisk ocr02 /dev/sdd1 
Writing disk header: done
Instantiating disk: done
[[email protected] ~]# oracleasm createdisk ocr03 /dev/sdc1

查看磁盘

[[email protected] ~]# oracleasm listdisks
FRA
OCR01
OCR02
OCR03
ORADATA
[[email protected] ~]#

在另外两台机器上执行磁盘扫描操作

[[email protected] ~]# oracleasm scandisks
Reloading disk partitions: done
Cleaning any stale ASM disks...
Scanning system for ASM disks...
Instantiating disk "OCR01"
Instantiating disk "OCR03"
Instantiating disk "OCR02"
Instantiating disk "FRA"
Instantiating disk "ORADATA"

至此,准备工作完全完成,后续可以安装grid Infrastructure软件啦~

时间: 2024-11-08 22:30:39

Oracle 学习之RAC(二) 环境准备的相关文章

oracle学习笔记(二)

设置归档模式(mount状态) ALTER database ARCHIVELOG; //关闭数据库 shutdown immediate //启动数据库到mount状态 startup mount alter database archivelog; //查看归档状态 archive log list; SQL> archive log list; 数据库日志模式 存档模式 自动存档 启用 存档终点 USE_DB_RECOVERY_FILE_DEST 最早的联机日志序列 1 下一个存档日志序列

【我的Oracle学习笔记(二)】----- select语句补充

一.多表查询 多表查询是指从多个有关联的表中查询数据,其语法与单表查询类似.一般来说,多表查询的表要用连接联系起来,如果没连接,则查询结果是这多个查询表的笛卡尔积(注释1). 模拟查询雇员姓名和所在部门名称: select [雇员姓名],[部门名称] from [雇员表] a,scott,[部门表] b where a.[部门编号]=b.[部门编号]; 上例中,为每一个查询表指定了别名,便于SQL语句的书写. 模拟查询在”sales“部门工作的雇员其雇员姓名 select [雇员姓名] from

oracle学习笔记1(环境搭建)

学习的开始先剧透一下,本人有点笨,本来想用oracle vbox,装个red hat+oracle,但是虚拟机一直报错,0x00000000内存不能written.所以便想到其他的办法,刚好接触了golang,然后就知道了docker这个伟大的项目,所以本环境使用docker来搭建.省去了一大部分时间可以直接开始Oracle的学习. 特此留下笔记,以供参考.... 工具:一共需要三个工具 docker-install.exe DockerToolbox-1.12.0.exe SecureCRT.

Oracle 学习之RAC(八) 向集群中添加节点

我们前面安装了两个节点的RAC. 我们现在将第三个节点11grac3,添加到我们集群中.第三个节点一定要按照集群环境准备一文描述,准备环境.请参考 http://lqding.blog.51cto.com/9123978/1684159 安装前检查 11grac1-> pwd /u01/app/11.2.0/grid/bin 11grac1-> ./cluvfy stage -pre nodeadd -n 11grac3 -fixup -verbose 检查结果 Performing pre-

Oracle 学习之RAC(九) 集群负载均衡及故障转移

查看监听,使用grid用户 11grac1: 11grac1-> lsnrctl status LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 14-AUG-2015 00:30:26 Copyright (c) 1991, 2011, Oracle.  All rights reserved. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER))) STAT

Oracle学习笔记(十二)

十三.存储过程和存储函数1.掌握存储过程(相当于建立一个函数或者方法体,然后通过外部对其调用) 指存储在数据库中供所有程序调用的子程序叫做存储过程或存储函数. 相同点: 完成特定功能的程序 区别: 是否用return语句返回值 (1)创建和使用存储过程 用create procedure命令建立存储过程和存储函数 语法: create or replace procedure 过程名(参数列表) as PL/SQL 子程序体(说明部分); 事例: (a)打印一个存储过程:打印HelloWorld

Oracle 学习之RAC(三) Grid Infrastructure 安装

将Grid Infrastructure安装包上传到服务器,并解压 unzip p10404530_112030_Linux-x86-64_3of7.zip -d /database/ 2. 更改/database所属组 [[email protected] database]# chown grid.oinstall -R /database/ [[email protected] database]# su - grid 11grac1-> cd /database/grid/ 11grac

Oracle学习笔记(二)——临时表

在针对大数据量的多表级联查询或复杂事务处理的时候,引入Oracle临时表是一种不错的策略.因此,在解决实际需求时经常会遇到需要使用存储过程和临时表相互配合的情况.下面就Oracle如何创建临时表以及注意事项做出总结: 一.创建临时表 Oracle临时表分为回话期和事务期两种类型,他们的创建语法基本一致: 会话期临时表 CREATE GLOBAL TEMPORARY TABLE ON COMMIT PRESERVE ROWS; 事务期临时表 CREATE GLOBAL TEMPORARY TABL

oracle学习篇:二、参数文件

2 参数文件 2.1 参数文件的获取 oracle的初始化参数可以通过查询v$parameter视图得到,在SQL*PLUS中,可以用过show parameter命令来显示某些参数的设置值. 2.2 参数文件 初始化参数文件:pfile 服务器参数文件:spfile 视图v$spparamter记录spfile参数的设置. 没啥好说的,直接学习一下案例分析. 2.3 诊断案例 问题描述:数据库在重新启动时无法正常启动,检查发现undo表空间丢失. 2.3.1 检查alert日志文件 警报日志文