• 【练习】监听改端口


    第一步:更改Local_listener

    SYS@PROD1>alter system set local_listener='(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526)))';
    
    System altered.

    第二步:更改监听文件,添加1526监听器LSNR2

    [oracle@edbjr2p1 admin]$ more listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_
    1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    
           
    LSNR2=
      (DESCRIPTION=
          (ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526))
      )
    LISTENER=
      (DESCRIPTION=
        (ADDRESS_LIST=
          (ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1521))
          (ADDRESS=(PROTOCOL=ipc)(KEY=extproc))))
    SID_LIST_LISTENER=
      (SID_LIST=
        (SID_DESC=
          (GLOBAL_DBNAME=PROD1.us.oracle.com)
          (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)
          (SID_NAME=PROD1))
        ) 

    第三步:使1526端口LSNR2监听器生效

    LSNRCTL> start lsnr2
    Starting /u01/app/oracle/product/11.2.0/dbhome_1/bin/tnslsnr: please wait...
    
    TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    System parameter file is /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/diag/tnslsnr/edbjr2p1/lsnr2/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526)))
    
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526)))
    STATUS of the LISTENER
    ------------------------
    Alias                     lsnr2
    Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date                15-SEP-2016 15:18:28
    Uptime                    0 days 0 hr. 0 min. 0 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/diag/tnslsnr/edbjr2p1/lsnr2/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526)))
    The listener supports no services
    The command completed successfully
    LSNRCTL> status lsnr2
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526)))
    STATUS of the LISTENER
    ------------------------
    Alias                     lsnr2
    Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date                15-SEP-2016 15:18:28
    Uptime                    0 days 0 hr. 0 min. 20 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/diag/tnslsnr/edbjr2p1/lsnr2/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.0.2.11)(PORT=1526)))
    Services Summary...
    Service "PROD1.us.oracle.com" has 1 instance(s).
      Instance "PROD1", status READY, has 4 handler(s) for this service...
    Service "PROD1_DGB.us.oracle.com" has 1 instance(s).
      Instance "PROD1", status READY, has 4 handler(s) for this service...
    The command completed successfully

    第四步:手工注册

    alter system register;

    二、更改Local_listener里的字符串别名
    第一步:更改tnsnames.ora,添加如下:

    LSNR2=
        (ADDRESS = (PROTOCOL = TCP)(HOST = edbjr2p1.example.com)(PORT = 1526))

    第二步:更改local_listener参数

    SYS@PROD1>alter system set local_listener='lsnr2';
  • 相关阅读:
    MISP版本嵌入式QT编译时出现mips-linux-gcc command not found
    数据传输对象(DTO)介绍及各类型实体比较
    signalR例子
    WebAPI GET和POST请求的几种方式
    github教程
    Asp.net MVC + EF + Spring.Net 项目实践3
    SpringMVC
    SignalR
    SignalR的实时高频通讯
    开发视频教程
  • 原文地址:https://www.cnblogs.com/tomatoes-/p/6142625.html
Copyright © 2020-2023  润新知