虚拟化容器,大数据,DBA,中间件,监控。

ORACLE RAC 监听配置 (listener.ora tnsnames.ora)

24 03月
作者:admin|分类:DBA运维
Oracle RAC 监听器的配置与单实例稍有不同,但原理和实现方法基本上是相同的。在Oracle中 tns进程用于为指定网络地址上的一个或多个Oracle 实例提供服务注册,并响应来自客户端对该服务提出的连接请求。一旦连接请求到达,并派生出一个服务器进程建立服务器与用户端之间的连接(专有服务器dedicated server)或转发服务请求(共享服务器模式shared server)。如果监听器知道多于一个实例提供所请求的服务,则可能会根据客户端与服务器端相关配置将请求定位到较低负载的实例为其提供服务。因此合理正确配置监听器以及tnsnames是Oracle RAC实现负载均衡以及failover的前提,本文将描述基于 suse linux 10 + Oracle 10g RAC 下监听器的配置。

 

有关Oracle 网络配置相关基础请参考:
   配置ORACLE 客户端连接到数据库
   配置非默认端口的动态服务注册
   配置sqlnet.ora限制IP访问Oracle
   Oracle 监听器日志配置与管理
   设置 Oracle 监听器密码(LISTENER)

   配置RAC负载均衡与故障转移 
  
一、节点上监听信息

  1. <span style="font-family:SimSun;">  
  2. 1、两个节点及主机配置信息(bo2dbp,bo2dbs)  
  3.     oracle@bo2dbp:/u01/oracle/db/network/admin> cat /etc/hosts  
  4.       
  5.     127.0.0.1       localhost.2gotrade.com   localhost  
  6.     # Public  
  7.     192.168.7.51   bo2dbp.2gotrade.com        bo2dbp  
  8.     192.168.7.52   bo2dbs.2gotrade.com        bo2dbs  
  9.     #Private  
  10.     10.10.7.51   bo2dbp-priv.2gotrade.com   bo2dbp-priv  
  11.     10.10.7.52   bo2dbs-priv.2gotrade.com   bo2dbs-priv  
  12.     #Virtual  
  13.     192.168.7.61   bo2dbp-vip.2gotrade.com    bo2dbp-vip  
  14.     192.168.7.62   bo2dbs-vip.2gotrade.com    bo2dbs-vip  
  15.   
  16. 2、节点bo2dbp上的listener.ora  
  17.     oracle@bo2dbp:/u01/oracle/db/network/admin> more listener.ora  
  18.     # listener.ora.bo2dbp Network Configuration File: /u01/oracle/db/network/admin/listener.ora.bo2dbp  
  19.     # Generated by Oracle configuration tools.  
  20.       
  21.     LISTENER_BO2DBP =  
  22.       (DESCRIPTION_LIST =  
  23.         (DESCRIPTION =  
  24.           (ADDRESS = (PROTOCOL = TCP)(HOST = bo2dbp-vip.2gotrade.com)(PORT = 1521)(IP = FIRST))  
  25.           (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.51)(PORT = 1521)(IP = FIRST))  
  26.         )  
  27.       )  
  28.       
  29.     SID_LIST_LISTENER_BO2DBP =  
  30.       (SID_LIST =  
  31.         (SID_DESC =  
  32.           (SID_NAME = PLSExtProc)  
  33.           (ORACLE_HOME = /u01/oracle/db)  
  34.           (PROGRAM = extproc)  
  35.         )  
  36.       )  
  37.   
  38. 3、节点bo2dbp上的tnsnames.ora  
  39.     oracle@bo2dbp:/u01/oracle/db/network/admin> more tnsnames.ora  
  40.     #对于连接字符串GOBO1A,GOBO1B,GOBO1在此处可以省略  
  41.     #这些字符串通常用于客户端连接到数据库  
  42.     GOBO1B =  
  43.       (DESCRIPTION =  
  44.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.62)(PORT = 1521))  
  45.         (CONNECT_DATA =  
  46.           (SERVER = DEDICATED)  
  47.           (SERVICE_NAME = GOBO1)  
  48.           (INSTANCE_NAME = GOBO1B)  
  49.         )  
  50.       )  
  51.       
  52.     GOBO1A =  
  53.       (DESCRIPTION =  
  54.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.61)(PORT = 1521))  
  55.         (CONNECT_DATA =  
  56.           (SERVER = DEDICATED)  
  57.           (SERVICE_NAME = GOBO1)  
  58.           (INSTANCE_NAME = GOBO1A)  
  59.         )  
  60.       )  
  61.       
  62.     GOBO1 =  
  63.       (DESCRIPTION =  
  64.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.61)(PORT = 1521))  
  65.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.62)(PORT = 1521))  
  66.         (LOAD_BALANCE = yes)  
  67.         (CONNECT_DATA =  
  68.           (SERVER = DEDICATED)  
  69.           (SERVICE_NAME = GOBO1)  
  70.         )  
  71.       )  
  72.       
  73.     #下面是几个重要的用于设置local_listener 以及remote_listener参数的定义信息  
  74.     LISTENER_BO2DB =  
  75.       (ADDRESS_LIST =  
  76.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.61)(PORT = 1521))  
  77.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.62)(PORT = 1521))  
  78.       )  
  79.       
  80.     LISTENER_BO2DBP =  
  81.       (ADDRESS_LIST =  
  82.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.61)(PORT = 1521))  
  83.       )  
  84.       
  85.     LISTENER_BO2DBS =  
  86.       (ADDRESS_LIST =  
  87.         (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.62)(PORT = 1521))  
  88.       )    
  89.     #Author: Robinson cheng  
  90.     #Blog  : http://blog.csdn.net/robinson_0612    
  91.   
  92. 4、节点bo2dbp上监听器的信息  
  93.     #可以看出只有实例 GOBO1A 注册到监听器 LISTENER_BO2DBP  
  94.     oracle@bo2dbp:/u01/oracle/db/network/admin> lsnrctl status LISTENER_BO2DBP  
  95.       
  96.     LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 25-SEP-2012 17:12:04  
  97.       
  98.     Copyright (c) 19912006, Oracle.  All rights reserved.  
  99.       
  100.     Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bo2dbp-vip.2gotrade.com)(PORT=1521)(IP=FIRST)))  
  101.     STATUS of the LISTENER  
  102.     ------------------------  
  103.     ..............  
  104.     Listener Parameter File   /u01/oracle/db/network/admin/listener.ora  
  105.     Listener Log File         /u01/oracle/db/network/log/listener_bo2dbp.log  
  106.     Listening Endpoints Summary...  
  107.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.61)(PORT=1521)))  
  108.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.51)(PORT=1521)))  
  109.     Services Summary...  
  110.     Service "+ASM" has 1 instance(s).  
  111.       Instance "+ASM1", status BLOCKED, has 1 handler(s) for this service...  
  112.     Service "+ASM_XPT" has 1 instance(s).  
  113.       Instance "+ASM1", status BLOCKED, has 1 handler(s) for this service...  
  114.     Service "GOBO1" has 1 instance(s).  
  115.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  116.     Service "GOBO1XDB" has 1 instance(s).  
  117.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  118.     Service "GOBO1_XPT" has 1 instance(s).  
  119.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  120.     Service "PLSExtProc" has 1 instance(s).  
  121.       Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...  
  122.     The command completed successfully  
  123.   
  124. 5、节点bo2dbs上的listener.ora  
  125.     oracle@bo2dbs:/u01/oracle/db/network/admin> more listener.ora  
  126.     # listener.ora.bo2dbs Network Configuration File: /u01/oracle/db/network/admin/listener.ora.bo2dbs  
  127.     # Generated by Oracle configuration tools.  
  128.       
  129.     LISTENER_BO2DBS =  
  130.       (DESCRIPTION_LIST =  
  131.         (DESCRIPTION =  
  132.           (ADDRESS = (PROTOCOL = TCP)(HOST = bo2dbs-vip.2gotrade.com)(PORT = 1521)(IP = FIRST))  
  133.           (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.7.52)(PORT = 1521)(IP = FIRST))  
  134.         )  
  135.       )  
  136.       
  137.     SID_LIST_LISTENER_BO2DBS =  
  138.       (SID_LIST =  
  139.         (SID_DESC =  
  140.           (SID_NAME = PLSExtProc)  
  141.           (ORACLE_HOME = /u01/oracle/db)  
  142.           (PROGRAM = extproc)  
  143.         )  
  144.       )    
  145.     #由于节点bo2dbs上的tnsnames.ora与节点bo2dbp内容相同,不再列出  
  146.   
  147. 6、节点bo2dbs上的监听器状态  
  148.     #同样可以看到只有一个 instance,即GOBO1B注册到了监听器 LISTENER_BO2DBS  
  149.     oracle@bo2dbs:/u01/oracle/db/network/admin> lsnrctl status LISTENER_BO2DBS  
  150.       
  151.     LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 25-SEP-2012 17:12:31  
  152.       
  153.     Copyright (c) 19912006, Oracle.  All rights reserved.  
  154.       
  155.     Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bo2dbs-vip.2gotrade.com)(PORT=1521)(IP=FIRST)))  
  156.     STATUS of the LISTENER  
  157.     ------------------------  
  158.     .......................  
  159.     Listening Endpoints Summary...  
  160.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.62)(PORT=1521)))  
  161.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.52)(PORT=1521)))  
  162.     Services Summary...  
  163.     Service "+ASM" has 1 instance(s).  
  164.       Instance "+ASM2", status BLOCKED, has 1 handler(s) for this service...  
  165.     Service "+ASM_XPT" has 1 instance(s).  
  166.       Instance "+ASM2", status BLOCKED, has 1 handler(s) for this service...  
  167.     Service "GOBO1" has 1 instance(s).  
  168.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  169.     Service "GOBO1XDB" has 1 instance(s).  
  170.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  171.     Service "GOBO1_XPT" has 1 instance(s).  
  172.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  173.     Service "PLSExtProc" has 1 instance(s).  
  174.       Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...  
  175.     The command completed successfully    
  176.       
  177.     #通过上面的观察可知,当前的两个实例都是在各自所在主机上的监听器进行了注册。</span>  


二、设置remote_listener参数

  1. 1、在节点bo2dbp上执行下列的命令  
  2.     SQL> show parameter instance_name  
  3.       
  4.     NAME                                 TYPE        VALUE  
  5.     ------------------------------------ ----------- ------------------------------  
  6.     instance_name                        string      GOBO1A  
  7.       
  8.     -->为节点bo2dbp设置远程监听器  
  9.     -->这意味着可以将实例GOBO1A上提供的服务可以注册到LISTENER_BO2DBS定义的监听器中  
  10.     SQL> alter system set remote_listener='LISTENER_BO2DBS' sid='GOBO1A';  
  11.       
  12.     System altered.  
  13.       
  14.     -->执行 register 实现注册  
  15.     SQL> alter system register;  
  16.       
  17.     System altered.  
  18.       
  19.     #再次查看节点bo2dbs监听器状态,实例GOBO1A已经注册到bo2dbs节点  
  20.     oracle@bo2dbs:/u01/oracle/db/network/admin> lsnrctl status LISTENER_BO2DBS  
  21.       
  22.     LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 25-SEP-2012 17:23:03  
  23.       
  24.     Copyright (c) 19912006, Oracle.  All rights reserved.  
  25.       
  26.     Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bo2dbs-vip.2gotrade.com)(PORT=1521)(IP=FIRST)))  
  27.     STATUS of the LISTENER  
  28.     ------------------------  
  29.     ..............  
  30.     Listener Parameter File   /u01/oracle/db/network/admin/listener.ora  
  31.     Listener Log File         /u01/oracle/db/network/log/listener_bo2dbs.log  
  32.     Listening Endpoints Summary...  
  33.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.62)(PORT=1521)))  
  34.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.52)(PORT=1521)))  
  35.     Services Summary...  
  36.     Service "+ASM" has 1 instance(s).  
  37.       Instance "+ASM2", status BLOCKED, has 1 handler(s) for this service...  
  38.     Service "+ASM_XPT" has 1 instance(s).  
  39.       Instance "+ASM2", status BLOCKED, has 1 handler(s) for this service...  
  40.     Service "GOBO1" has 2 instance(s).  
  41.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  42.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  43.     Service "GOBO1XDB" has 2 instance(s).  
  44.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  45.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  46.     Service "GOBO1_XPT" has 2 instance(s).  
  47.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  48.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  49.     Service "PLSExtProc" has 1 instance(s).  
  50.       Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...  
  51.     The command completed successfully  
  52.   
  53. 2、节点bo2dbs上设置local_listener,remote_listener  
  54.     SQL> select instance_name from v$instance;  
  55.       
  56.     INSTANCE_NAME  
  57.     ----------------  
  58.     GOBO1B  
  59.       
  60.     SQL> show parameter listener  
  61.       
  62.     NAME                                 TYPE        VALUE  
  63.     ------------------------------------ ----------- ------------------------------  
  64.     local_listener                       string  
  65.     remote_listener                      string  
  66.       
  67.     -->按照节点bo2dbp上的操作方式将节点bo2dbs上的remote_listener只向节点bo2dbp  
  68.     SQL> alter system set remote_listener='LISTENER_BO2DBP' sid='GOBO1B';  
  69.       
  70.     System altered.  
  71.       
  72.     SQL> alter system register;  
  73.       
  74.     System altered.  
  75.       
  76.     -->在bo2dbp节点上也可以看到实例GOBO1B也注册到了第一个节点上  
  77.     oracle@bo2dbp:/u01/oracle/db/network/admin> lsnrctl status LISTENER_BO2DBP  
  78.       
  79.     LSNRCTL for Linux: Version 10.2.0.3.0 - Production on 25-SEP-2012 17:32:19  
  80.       
  81.     Copyright (c) 19912006, Oracle.  All rights reserved.  
  82.       
  83.     Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=bo2dbp-vip.2gotrade.com)(PORT=1521)(IP=FIRST)))  
  84.     STATUS of the LISTENER  
  85.     ------------------------  
  86.     ............  
  87.     Listener Parameter File   /u01/oracle/db/network/admin/listener.ora  
  88.     Listener Log File         /u01/oracle/db/network/log/listener_bo2dbp.log  
  89.     Listening Endpoints Summary...  
  90.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.61)(PORT=1521)))  
  91.       (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.7.51)(PORT=1521)))  
  92.     Services Summary...  
  93.     Service "+ASM" has 1 instance(s).  
  94.       Instance "+ASM1", status BLOCKED, has 1 handler(s) for this service...  
  95.     Service "+ASM_XPT" has 1 instance(s).  
  96.       Instance "+ASM1", status BLOCKED, has 1 handler(s) for this service...  
  97.     Service "GOBO1" has 2 instance(s).  
  98.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  99.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  100.     Service "GOBO1XDB" has 2 instance(s).  
  101.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  102.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  103.     Service "GOBO1_XPT" has 2 instance(s).  
  104.       Instance "GOBO1A", status READY, has 1 handler(s) for this service...  
  105.       Instance "GOBO1B", status READY, has 1 handler(s) for this service...  
  106.     Service "PLSExtProc" has 1 instance(s).  
  107.       Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...  
  108.     The command completed successfully  


三、总结(缺省1521端口)
1、RAC 监听的配置当使用缺省的监听器时则监听器名字为 LISTENER_${NODE}
2、如未设置remote_listener,本地实例只在本地的监听器注册。而当设置了正确的remote_listener,则本地实例可以实现远程注册
3、缺省情况下,PMON进程自动将instance_name和service_names等信息注册到已启动的缺省侦听器
4、可以使用alter system register 实现快速注册

Important:

Do not set the GLOBAL_DBNAME parameter in the SID_LIST_listener_name section of the listener.ora.
A statically configured global database name disables connect-time failover.

 

四、更多参考

基于用管理的备份备份请参

    Oracle 冷备份

    Oracle 热备份

    Oracle 备份恢复概念

    Oracle 实例恢复

    Oracle 基于用户管理恢复的处理(详细描述了介及其)

    SYSTEM 表空间管理及备份恢复

    SYSAUX表空间管理及恢复

   Oracle 基于备份控制文件的恢复(unsing backup controlfile)

 

RMAN的备份复与管理请参

    RMAN 概述及其体系结构

    RMAN 配置、监控与管理

    RMAN 备份详解

    RMAN 还原与恢复

    RMAN catalog 的创建和使用

    基于catalog 创建RMAN存储脚本

    基于catalog 的RMAN 备份与恢复

    RMAN 备份困惑(使用plus archivelog)

 

ORACLE体系结构请参

    Oracle 表空间与数据文件

    Oracle 密码文件

    Oracle 参数文件

    Oracle 联机重做日志文件(ONLINE LOG FILE)

    Oracle 控制文件(CONTROLFILE)

    Oracle 归档日志

    Oracle 回滚(ROLLBACK)和撤销(UNDO)

    Oracle 数据库实例启动关闭过程

    Oracle 10g SGA 的自动化管理

    Oracle 实例和Oracle数据库(Oracle体系结构

浏览1941 评论0
返回
目录
返回
首页
RHCS+ORACLE双机热备安装配置 配置 RAC 负载均衡与故障转移