一个侦听,多个ip(aix平台)-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3503010
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2020-11-24 15:17:26


有时为了特殊需要,在单机上要配置多个ip地址供客户端访问,例如:原先是rac,目前是单机dg,切换为主库后,为了减少客户端改动,单机也要多个ip对外服务(奇葩要求就是多),也不复杂,改一下就好。

一、先停止侦听服务
lsnrctl stop


二、主机层面增加ip 
1.检查主机是否添加1001 vlan虚拟网卡
entstat -d en0 | grep “vlan id”


2.添加虚拟网卡
关闭分区shutdown -f
修改分区profile文件增加vlan 1001虚拟网卡
启动分区


3.禁用192.168.0.203网卡
ifconfig en0 down
ifconfig en0 detach
smit chinet 


4.新增网卡配置地址 192.168.0.112
smit chinet 


5.增加生产其他网卡到主机
smit ---> communications applications and services ---> tcp/ip ---> further configuration ---> network interfaces
---> network interface selection ---> configure aliases ---> add an ipv4 network alias
增加网卡别名192.168.0.113、114、115


6.检查ip配置
ifconfig -a


7.修改hosts
修改/etc/hosts,将原先的修改为
192.168.0.112 db01 
192.168.0.113 db01 
192.168.0.114 db01 
192.168.0.115 db01 


三、侦听配置
vi $oracle_home/network/admin/listener.ora 修改为如下
listener =
  (description_list =
    (description =
      (address = (protocol = tcp)(host = 192.168.0.112)(port = 1521))
)
  (description_list =
    (description =
      (address = (protocol = tcp)(host = 192.168.0.113)(port = 1521))
)
  (description_list =
    (description =
      (address = (protocol = tcp)(host = 192.168.0.114)(port = 1521))
)
  (description_list =
    (description =
      (address = (protocol = tcp)(host = 192.168.0.115)(port = 1521))
)
    (description =
      (address = (protocol = ipc)(key = extproc0))
    )
  )
  
四、启动侦听
lsnrctl start

阅读(1296) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图