zoukankan      html  css  js  c++  java
  • TNS-01189 During Listener Monitoring Using Enterprise Manager

    oracle 12.2 RAC
    监听日志报错:
    15-JAN-2020 22:27:53 * (CONNECT_DATA=(COMMAND=VERSION)) * version * 1189
    TNS-01189: The listener could not authenticate the user

    BUG: 20476343

    Solution

    1) The workaround for this issue is to set the following listener.ora file parameter:  IP=V4_ONLY

    Example:

    LISTENER =
       (DESCRIPTION_LIST =
           (DESCRIPTION =
              (ADDRESS = (PROTOCOL = IPC)(KEY = <KEY>))
              (ADDRESS = (PROTOCOL = TCP)(HOST = <hostname>)(PORT = 1521)(IP=V4_ONLY))
            )
         )

     Following this change, a LSNRCTL stop and start would be necessary.

    This issue is fixed in versions 12.1.0.2 and 12.2. At the time of this writing, there are interim patches available for lower versions where this problem might be present.

    2) Add the following lines to the GRID_HOME/network/admin listener.ora for all the nodes in the RAC, stop and start all the listeners

    LOCAL_OS_AUTHENTICATION_<listener_name>=off
    LOCAL_OS_AUTHENTICATION_LISTENER_SCAN1=off
    LOCAL_OS_AUTHENTICATION_LISTENER_SCAN2=off
    LOCAL_OS_AUTHENTICATION_LISTENER_SCAN3=off

    参考文档:MOS 2009044.1

  • 相关阅读:
    JS_ECMA基本语法中的几种封装的小函数-1
    DOM_06之定时器、事件、cookie
    DOM_05之DOM、BOM常用对象
    OC数组中文排序
    uiwebview加载中文URL
    ios判断点击的坐标点
    获取字符串在另一个字符串中出现的次数
    NSFileHandle
    NSFileManager
    NSData
  • 原文地址:https://www.cnblogs.com/oracle-ziyuhou/p/12200149.html
Copyright © 2011-2022 走看看