ORACLE RAC11G 更改IP地址

环境:oracle 11.2.0.4  rac

修改前IP地址

# public ip

192.168.2.71 db1

192.168.2.72 db2

192.168.2.76 db3

#priv ip

200.100.100.11 db1-priv

200.100.100.12 db2-priv

200.100.100.13 db3-priv

#vip ip

192.168.2.73 db1-vip

192.168.2.74 db2-vip

192.168.2.77 db3-vip

#scan ip

192.168.2.75 db-scan

修改后IP地址

# public ip

192.168.1.71 db1

192.168.1.72 db2

192.168.1.76 db3

#priv ip

100.100.100.11 db1-priv

100.100.100.12 db2-priv

100.100.100.13 db3-priv

#vip ip

192.168.1.73 db1-vip

192.168.1.74 db2-vip

192.168.1.77 db3-vip

#scan ip

192.168.1.75 db-scan

1、查看ocr的备份

[[email protected] bin]# ./ocrconfig -showbackup

2、备份OCR

[[email protected] bin]# ./ocrconfig -manualbackup

db3     2015/01/29 19:58:22     /u01/app/11.2.0/grid/cdata/db-scan/backup_20150129_195822.ocr

3、关闭数据库

srvctl stop database -d db

4、在任意节点上修改:

这里我是在节点1上面操作的

[[email protected] ~]# cd /u01/app/11.2.0/grid/bin/

[[email protected] bin]# ./oifcfg getif

eth0  192.168.2.0  global  public

eth1  200.100.100.0  global  cluster_interconnect

[[email protected] bin]# ./oifcfg delif -global eth0

[[email protected] bin]# ./oifcfg setif -global eth0/192.168.1.0:public

[[email protected] bin]# ./oifcfg getif

eth1  200.100.100.0  global  cluster_interconnect

eth0  192.168.1.0  global  public

[[email protected] bin]# ./oifcfg delif -global eth1

PRIF-31: Failed to delete the specified network interface because it is the last private interface

这里不允许删除最后一个私有接口,可以先添加一个私有接口再来删除

[[email protected] bin]# ./oifcfg setif -global eth1/200.100.100.0:cluster_interconnect

[[email protected] bin]# ./oifcfg getif

eth1  100.100.100.0  global  cluster_interconnect

eth0  192.168.2.0  global  public

eth1  200.100.100.0  global  cluster_interconnect

[[email protected] bin]# ./oifcfg delif -global eth1/100.100.100.0:cluster_interconnect

[[email protected] bin]# ./oifcfg getif

eth0  192.168.2.0  global  public

eth1  200.100.100.0  global  cluster_interconnect

在某节点停止oracle高可能用性服务

[[email protected] bin]# ./crsctl stop cluster -all

5、修改IP地址及/etc/hosts文件并测试

6、在所有节点重新启动所有服务

[[email protected] bin]#./crsctl start cluster -all

7、停止scan_listener和scan

[[email protected] bin]#./srvctl stop scan_listener

[[email protected] bin]#./srvctl stop scan

8、删除scan_listener和scan

[[email protected] bin]#./srvctl remove scan_listener -f

[[email protected] bin]#./srvctl remove scan -f

9、添加scan和scan_listener

[[email protected] bin]#./srvctl add scan -n db-scan -k 2 -S 192.168.1.0/255.255.255.0/eth0

说明:上面命令中-k 为1(network number)会报错,因为之前已经被使用过

[[email protected] bin]# ./srvctl config scan

SCAN name: db-scan, Network: 2/192.168.1.0/255.255.255.0/eth0

SCAN VIP name: scan1, IP: /db-scan/192.168.1.75

[[email protected] bin]#./srvctl add scan_listener

10、启动scan和scan_listener

[[email protected] bin]#./srvctl start scan

[[email protected] bin]#./srvctl start scan_listener

11、停止VIP资源

[[email protected] bin]# ./crsctl stop resource ora.db1.vip -f

[[email protected] bin]# ./crsctl stop resource ora.db2.vip -f

[[email protected] bin]# ./crsctl stop resource ora.db3.vip -f

这里可以通过下面命令查看vip的状态

[[email protected] bin]# ./crsctl stat res -t

ora.db1.vip

1        OFFLINE OFFLINE

ora.db2.vip

1        OFFLINE OFFLINE

ora.db3.vip

1        OFFLINE OFFLINE

12、修改vip地址

[[email protected] bin]# ./srvctl modify nodeapps -A 192.168.1.73/255.255.255.0/eth0 -n db1

[[email protected] bin]# ./srvctl modify nodeapps -A 192.168.1.74/255.255.255.0/eth0 -n db2

[[email protected] bin]# ./srvctl modify nodeapps -A 192.168.1.77/255.255.255.0/eth0 -n db3

13、启动VIP资源:

[[email protected] bin]# ./crsctl start resource ora.db1.vip -f

CRS-2672: Attempting to start ‘ora.db1.vip‘ on ‘db1‘

CRS-2676: Start of ‘ora.db1.vip‘ on ‘db1‘ succeeded

[[email protected] bin]# ./crsctl start resource ora.db2.vip -f

CRS-2672: Attempting to start ‘ora.db2.vip‘ on ‘db2‘

CRS-2676: Start of ‘ora.db2.vip‘ on ‘db2‘ succeeded

[[email protected] bin]# ./crsctl start resource ora.db3.vip -f

CRS-2672: Attempting to start ‘ora.db3.vip‘ on ‘db3‘

CRS-2676: Start of ‘ora.db3.vip‘ on ‘db3‘ succeeded

启动VIP资源后本地监听就已经启动了,下面第14步操作可以不执行

14、启动本地监听:

[[email protected] bin]# ./srvctl start listener -n db1

[[email protected] bin]# ./srvctl start listener -n db2

[[email protected] bin]# ./srvctl start listener -n db3

问题:操作完成之后执行oifcfg getif,出现在下面的提示信息

[[email protected] peer]$ oifcfg getif

eth0  192.168.1.0  global  public

eth1  100.100.100.0  global  cluster_interconnect

Only in OCR: eth1:  100.100.100.0  global  cluster_interconnect

PRIF-30: Network information in OCR and GPnP profile differs

说网络信息在OCR与GPnP不一致,这里重新配置一下即可

[[email protected] peer]$ oifcfg setif -global eth1/100.100.100.0:cluster_interconnect

[[email protected] peer]$ oifcfg getif

eth0  192.168.1.0  global  public

eth1  100.100.100.0  global  cluster_interconnect

时间: 2024-11-03 22:13:50

ORACLE RAC11G 更改IP地址的相关文章

使用DOS批处理更改IP地址

有时候电脑在家需要自动获取IP,在公司需要手动填写IP,改来改去很麻烦,于是做一个批处理一键修改很方便: @echo off cls color 0A @echo off echo. echo ===修改 [本地连接] ip地址=== echo. echo 1:自动获取 echo. echo 2:重通ip地址 echo. echo. set/p sel=请选择修改方式: if "%sel%"=="1" goto auto if "%sel%"==

Oracle 使用本地IP地址连接异常的解决方法

前几天的安装的Oracle测试环境,今天发现不能使用本地IP连接,连接提示错误 "Oracle the network adapter could not establish the connection" 这个问题折腾我时间比较长,网上很多资料都不太适合我的情况.不过最后还是被找到了 花了很多时间在其他方面没有锁定问题根源. 1 开始以为是防火墙 server client端都排除 2 oracle client端问题 (ubuntu 安装的client端) 3 最后用程序测试发现还

Linux学习(一):linux更改ip地址命令_更改DNS_更改默认网关_更改子网掩码_主机名

如何使用命令来更改linux的IP .DNS .子网掩码,在虚拟机(vitrualBox)上添加一个Linux的虚拟机; 安装方法:http://pan.baidu.com/s/1sjJPhP7 安装完以后,进入到Linux桌面,是一个这样的桌面: 按CTRL+ALT+F2  进入命令行窗口,然后登录 ,在登录成功以后在命令下输入: vi /etc/sysconfig/network-scripts/ifcfg-ethx 就打开了设置窗口,默认哪果你只有一个网卡的话,就这样就可以,如果多个网卡那

oracle无法通过IP地址进行连接

在oracle安装完成之后有时候后无法使用IP地址进行连接或者压根无法进行连接,此时我们可以通过配置oracle的监听来解决这个问题: 在开始菜单中找到oracle文件夹的net manager,如下图所示,将所示位置改为本机的IP地址 然后选择数据库服务,修改默认的数据库服务信息为自己安装时默认安装的数据库实例信息 配置完成后点击文件,保存网络配置,然后重启service的监听服务: 但是这种方式配置之后无法再使用localhost或者127.0.0.1来进行访问,我们可以在上面的listen

命令更改ip地址一

使用netsh命令添加IP地址 如用户需要在本地连接里添加一个IP,使用netsh添加如下信息: netsh int ip add address "本地连接" 192.168.0.100 255.255.255.0 cmd /k netsh interface ip set dns name="本地连接" source=static addr=202.103.96.68 1.更改静态IP地址: 命令:netsh interface ip set address &

命令更改ip地址2

设置DNS: 自动获取DNS c:/>netsh interface ip set address name="本地连接" sourse=dhcp 手动设置单个DNS c:/>netsh interface ip set address name="本地连接" sourse=static addr=210.52.149.2 register=primary 手动设置多个DNS c:/>netsh interface ip set address n

orcale 数据库更改IP地址后需配置监听服务

描述: 某数据库服务器 IP地址192.168.1.100.已在该服务器上配置了orcale的监听服务,端口1521.现在在服务器上新增1网卡,配置ip地址192.168.200.5 .远程电脑无法访问192.168.200.5 的1521端口. 这一现象与常见的web服务不同,web服务开通80端口后,无论ip怎么更换,远程电脑均能访问其80端口.但orcale数据库必须配置监听服务的ip地址后才能保证远程电脑访问192.168.200.5的1521端口.

git文件夹下项目更改ip地址小结

在我们开发的过程中,经常切换项目IP地址是很正常的,之前弄过一次,没有记住,现在简单的总结下: 找到要切换IP地址的项目,点击鼠标右键,弹出下图: 打开该项目的路径后,双击打开该项目,具体参考自己项目的实际,我的结果如下: 到这步的时候,可能有的人会找不到.git这个文件,解决方法如下: 接着双击打开.git文件,找到config文件,你可以随意选择你喜欢的打开方式,本人用的是用记事本打开,如下图: 这个适合像我这种前端小白,欢迎大家点评! 作者:Plbowter 出处:http://www.c

在vm中安装oracle linux设置IP地址

1.查看网卡   ifconfig    ifconfig -a 2.启动网卡   ifconfig eth1 up 3.配置网卡IP,在/etc/sysconfig/network-scrip下找到ifcfg-eth1,如果没有cp ifcfg-l0 建立文件, vi ifcfg-eth1 修改IP地址:以上使用的桥接模式,IP地址应该跟安装vm的主机在一个网段内. 4.vi保存后,重启网络服务:  ifconfig network restart