当前位置:  数据库>oracle

Oracle 双监听器的配置

    来源: 互联网  发布时间:2017-05-13

    本文导语: 以Oracle Net看,数据库服务器可能也是客户端,因为tnsnames.ora可以有服务器的描述。也就是,只有监听器才会一直是服务器 实例:监听=n:m ㈠ 双监听器的好处: ① 客户端故障转移--CF ② 客户端负载均衡--CLB ㈡ 注意事项: ① 要...

以Oracle Net看,数据库服务器可能也是客户端,因为tnsnames.ora可以有服务器的描述。也就是,只有监听器才会一直是服务器

实例:监听=n:m

㈠ 双监听器的好处:

① 客户端故障转移--CF

② 客户端负载均衡--CLB

㈡ 注意事项:

① 要保证1521端口可用,否则,OEM将不可用,须emca重配

② 非标端口使用静态注册是个比较好的实践

配置案例:

[oracle@localhost admin]$ cat listener.ora 
think = 
  (DESCRIPTION = 
    (load_balance = on) 
    (failover = on) 
    (ADDRESS_LIST = 
      (ADDRESS=(PROTOCOL = tcp)(HOST= 192.168.1.113)(PORT= 1521) 
      (ADDRESS=(PROTOCOL = tcp)(HOST= 192.168.1.113)(PORT= 1522) 
    ) 
    ) 
  ) 
 
SID_LIST_think = 
  (SID_LIST = 
    (SID_DESC = 
      (GLOBAL_DBNAME = emrep.us.oracle.com) 
      (SID_NAME = emrep) 
      (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1))) 
 
water = 
  (DESCRIPTION = 
    (load_balance = on) 
    (failover = on) 
    (ADDRESS_LIST = 
      (ADDRESS=(PROTOCOL = tcp)(HOST= 192.168.1.113)(PORT= 1521)) 
      (ADDRESS=(PROTOCOL = tcp)(HOST= 192.168.1.113)(PORT= 1522)) 
    ) 
    ) 
  ) 
 
SID_LIST_water = 
  (SID_LIST = 
    (SID_DESC = 
      (GLOBAL_DBNAME = emrep.us.oracle.com) 
      (SID_NAME = emrep) 
      (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1))) 
       
 
[oracle@localhost admin]$ lsnrctl status water 
 
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 10-DEC-2012 21:47:22 
 
Copyright (c) 1991, 2005, Oracle.  All rights reserved. 
 
Connecting to (DESCRIPTION=(load_balance=on)(failover=on)(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.113)(PORT=1521))) 
STATUS of the LISTENER 
------------------------ 
Alias                    LISTENER 
Version                  TNSLSNR for Linux: Version 10.2.0.1.0 - Production 
Start Date                10-DEC-2012 20:02:23 
Uptime                    0 days 1 hr. 44 min. 58 sec 
Trace Level              off 
Security                  ON: Local OS Authentication 
SNMP                      OFF 
Listener Parameter File  /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora 
Listener Log File        /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log 
Listening Endpoints Summary... 
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521))) 
Services Summary... 
Service "emrep.us.oracle.com" has 1 instance(s). 
  Instance "emrep", status READY, has 1 handler(s) for this service... 
Service "emrep_XPT.us.oracle.com" has 1 instance(s). 
  Instance "emrep", status READY, has 1 handler(s) for this service... 
The command completed successfully 
 
  如果1521和1522并存,在业务不繁忙时,listener进程只会使用1521   
   
[oracle@localhost admin]$ lsnrctl status water 
 
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 10-DEC-2012 21:48:45 
 
Copyright (c) 1991, 2005, Oracle.  All rights reserved. 
 
Connecting to (DESCRIPTION=(load_balance=on)(failover=on)(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.113)(PORT=1522))) 
STATUS of the LISTENER 
------------------------ 
Alias                    water 
Version                  TNSLSNR for Linux: Version 10.2.0.1.0 - Production 
Start Date                10-DEC-2012 21:24:17 
Uptime                    0 days 0 hr. 24 min. 28 sec 
Trace Level              off 
Security                  ON: Local OS Authentication 
SNMP                      OFF 
Listener Parameter File  /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora 
Listener Log File        /u01/app/oracle/product/10.2.0/db_1/network/log/water.log 
Listening Endpoints Summary... 
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.113)(PORT=1522))) 
Services Summary... 
Service "emrep.us.oracle.com" has 1 instance(s). 
  Instance "emrep", status UNKNOWN, has 1 handler(s) for this service... 
The command completed successfully 


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 配置Oracle management server /Oracle启动OMS
  • 在Redhat7.2+Oracle8i如果硬件配置中用P4处理器,对oracle的安装有没有影响(100分)
  • weblogic 中怎样配置 oracle JDBC driver?
  • redhat 8.0+oracle 8.1.7下面配置proc环境的问题
  • linux下怎么配置jdbc 访问oracle ,知情者请告知
  • oracle的jdbc的配置
  • 一个jsp的数据库问题-oracle的服务端如何配置
  • 不会配置oracle怎么办?
  • JDBC from ORACLE 8.1.7的配置问题
  • Linux上怎么配置oracle的ODBC数据源?
  • 请问jboss+oracle文件怎样配置,数据库中文字段不为乱码
  • Linux Apache PHP Oracle 安装配置 iis7站长之家
  • 请问哪里有 小性机 +linux +oracle 的配置方案?
  • Linux主机下配置Oracle 10G自动启动过程记
  • 如何配置 linux 下 oracle 的 listener .ora 和
  • 求.bash_profile配置oracle详解
  • 用redhat linux8.0+Oracle8i做网络数据库服务器,我需要怎样配置?
  • 配置Oracle RAC需要注意的问题
  • Oracle数据库安装配置示例
  • Linux Apache PHP Oracle 安装配置
  • Oracle 12c发布简单介绍及官方下载地址
  • 在linux下安装oracle,如何设置让oracle自动启动!也就是让oracle那个服务自动启动,不是手动的
  • oracle 11g最新版官方下载地址
  • 请问su oracle 和su - oracle有什么不同?
  • Oracle 数据库(oracle Database)Select 多表关联查询方式
  • 虚拟机装Oracle R12与Oracle10g
  • Oracle数据库(Oracle Database)体系结构及基本组成介绍
  • Oracle 数据库开发工具 Oracle SQL Developer
  • 如何设置让Oracle SQL Developer显示的时间包含时分秒
  • Oracle EBS R12 支持 Oracle Database 11g
  • Oracle 10g和Oracle 11g网格技术介绍


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,