Oracle 11g RAC 監聽器使用中出現no services以及no listener分析

來源:互聯網
上載者:User

Oracle 11g RAC 監聽器使用中出現no services以及no listener分析

首先,我們必須知道在Oracle 11g中,官方推薦GI和Oracle 資料庫軟體分開管理,在這種情況下,我們會探索資料庫監聽器其實是位於GI的管理帳號下,即通常我們所建立的grid帳號。在該grid帳號的$ORACLE_HOME/network/admin目錄下我們會發現我們的listener.ORA檔案。同時監聽器的啟動與關閉都是由該grid帳號來控制,若使用oracle帳號此時就會發現報錯如下:

TNS-01190: The user is not authorized to execute the requested listener command 

當然我們仍然可以透過oracle帳號用netca命令建立監聽器,此時的監聽器位於oracle帳號的$ORACLE_HOME/network/admin目錄下。

此外,預設情況下我們的tnsnames.ora檔案仍然存在於oracle帳號下的相關位置。

下面我們就監聽器的具體配置分析下:

首先我們必須清楚地明白在RAC環境下都有哪些執行個體,各個執行個體是否都需要監聽呢,針對該問題我們測試一把:

[grid@RAC01 ~]$ lsnrctl status

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 03-JAN-2014 08:33:35

…………………………

Copyright (c) 1991, 2009, Oracle.  All rights reserved.

………………

Listener Parameter File  /u/app/11.2.0/grid/network/admin/listener.ora

Listener Log File        /u/app/grid/diag/tnslsnr/RAC01/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.134.30.27)(PORT=1521)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.134.30.47)(PORT=1521)))

Services Summary...

Service "+ASM" has 1 instance(s).

  Instance "+ASM2", status READY, has 1 handler(s) for this service...

The command completed successfully

觀察我們的監聽器狀態,此時可以發現只有ASM執行個體的監聽服務,但是資料庫執行個體的監聽去哪兒呢?關於該問題我的推薦關注兩個參數:local_listener、remote_listener。我們再次只需要參數local_listener就ok了。

其實上面所說的no listener、no services都是與該參數有關的。我們看看現在伺服器上該參數的配置:

首先觀察的是ASM執行個體:

SQL> show parameter local_l

NAME                                TYPE

------------------------------------ ---------------------------------

VALUE

------------------------------

local_listener                      string

(DESCRIPTION=(ADDRESS_LIST=(AD

DRESS=(PROTOCOL=TCP)(HOST=RAC0

1-vip)(PORT=1521))))

SQL> select instance_name,status from v$instance;

INSTANCE_N STATUS

---------- ------------------------------------

+ASM2      STARTED

可以看到asm執行個體的local_listener參數實際上使用的是vip。

再看看我們的資料庫執行個體:

SQL> show parameter local_li

NAME                                TYPE        VALUE

------------------------------------ ----------- ------------------------------

local_listener                      string      (DESCRIPTION=(ADDRESS_LIST=(AD

                                                DRESS=(PROTOCOL=TCP)(HOST=RACS

                                                 CAN.localdomain.)(PORT=1521)))

                                                )

SQL> select instance_name,status from v$instance;

INSTANCE_N STATUS

---------- ------------

RACDB2    OPEN

我們觀察到資料庫執行個體使用的是scan-ip。

那是不是就是應為使用的ip情況的不同,listener監聽器中的監聽服務不同呢?

我們來測試一把:

此處我們只測試asm執行個體的參數local_listener即可,其他服務的雷同。

SQL> alter system set local_listener='(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=RACSCAN.localdomain.)(PORT=1521))))';

System altered.

SQL> host lsnrctl status

Listener Parameter File  /u/app/11.2.0/grid/network/admin/listener.ora

Listener Log File        /u/app/grid/diag/tnslsnr/RAC01/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.134.30.27)(PORT=1521)))

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.134.30.47)(PORT=1521)))

The listener supports no services

The command completed successfully

我們觀察到監聽還是那個監聽,但是服務卻不是那個服務了,此時no services了。

此時我們在透過tnsnames.ora檔案的配置從用戶端登陸資料庫時就會出現如下錯誤:

ORA-12520: TNS:listener could not find available handler for requested type of

server

Enter user-name:

無論是vip還是透過scan-ip都是不行的。從此處我們可以得出結論:ASM執行個體的監聽地址必須是VIP而不能是scan-ip。否側會出現上述報錯。

將ASM執行個體的監聽器修改回來。

alter system set local_listener='(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=RAC01-vip)(PORT=1521))))';

那麼資料庫執行個體應該使用那個類型的ip呢,是scan-ip還是vip呢,其實這兩個ip都行,就看你怎麼用了。如果local_listener參數配置為指向vip,此時用戶端只能透過vip訪問資料庫,如果local_listener參數配置為scan-ip此時用戶端必須透過scan-ip訪問,否則登陸同樣報錯如下:

ORA-12520: TNS:listener could not find available handler for requested type of

server

Enter user-name:

總結:

    在oracle11g RAC環境中,監聽器是由grid帳號來維護的,此外ASM執行個體使用的一定是vip,資料庫執行個體vip、scan-ip均可使用。如果資料庫參數local_listener配置了vip,此時用戶端只能透過vip訪問資料庫,如果資料庫參數local_listener參數設定為scan-ip此時用戶端只能透過scan-ip訪問資料庫。建議使用scan-ip,這樣資料庫在增刪節點的時候就不會影響到用戶端的使用,用戶端也無需也節點的變化而修改配置。Oracle官方建議在使用scan-ip時最少配置3個scan-ip。這樣透過冗餘可防止某個scan-ip不可用導致用戶端無法訪問資料庫。

以上測試僅為個人測試分析,若有不對請各位及時指出,鄙人自當萬分感謝。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.