Oracle會話逾時退出設定

來源:互聯網
上載者:User

標籤:acl   即時   預設值   oracle   使用者設定檔   following   end   orm   default   

 前一段時間客戶打電話說自從資料庫搬遷後串連資料庫總是提示會話不可用,和客戶溝通才知到他們串連資料庫的程式是從早上連上資料庫後就一直保持串連狀態,一天中需要執行幾次操作,由於資料庫中的會話串連有逾時限制,造成用戶端長時間沒有操作,就會中斷連線。
        
        經過這次事件總結了Oracle關於逾時退出的一些設定:

          1 profile的idle_time限制          2 profile的connect_time限制          3 sqlnet的expire_time限制           4 s qlnet的INBOUND_CONNECT_TIMEOUT_listener_name限制          5 listener的CONNECT_TIMEOUT_listener_name限制

1,profile的idle_time限制
    oracle使用者的設定檔的密碼原則是即時生效的,所見即所得 (WYSIWYG)。但是使用者設定檔的資源限制是由resource_limit參數決定的。
    單位是分鐘,預設沒記錯的話應該是10分鐘
    要是修改的資源生效,需要設定resource_limit設定為true
    alter system set resource_limit=true ;
    如果在idle的時間內使用者沒有執行任何操作,會提示ORA-02396:exceeded maximum idle time, please connect again
2,profile的connect_time限制
    預設是UNLIMITED,單位是分鐘
    使用者在到達設定的時候後,不可以在繼續操作,會提示ORA-02399: exceeded maximum connect time, you are being logged off
    如果是設定1分鐘,他會在將近2分鐘的時候提醒你重新登入。
3,sqlnet的expire_time限制:
    expire_time主要是在指定的時間去探測用戶端是否可以連通,如果可以的話重新計時,否則就會斷開
在執行rman的時候遇見:ORA-03135: connection lost contact,可以嘗試將此值設定大些。(ID 729811.1)

4,sqlnet的inbound_connect_timieout_listener_name限制 
單位是秒,預設值是60
Use the INBOUND_CONNECT_TIMEOUT_listener_name parameter to specify the time, in seconds, for the client to complete its connect request to the listener after the network connection had been established.

If the listener does not receive the client request in the time specified, then it terminates the connection. In addition, the listener logs the IP address of the client and an ORA-12525:TNS: listener has not received client‘s request in time allowed error message to the listener.log file.

To protect both the listener and the database server, Oracle Corporation recommends setting this parameter in combination with theSQLNET.INBOUND_CONNECT_TIMEOUT parameter in the sqlnet.ora file. When specifying values for these parameters, consider the following recommendations:

  • Set both parameters to an initial low value.

  • Set the value of the INBOUND_CONNECT_TIMEOUT_listener_name parameter to a lower value than the SQLNET.INBOUND_CONNECT_TIMEOUT parameter.

For example, you can set INBOUND_CONNECT_TIMEOUT_listener_name to 2 seconds and INBOUND_CONNECT_TIMEOUT parameter to 3 seconds. If clients are unable to complete connections within the specified time due to system or network delays that are normal for the particular environment, then increment the time as needed.
如果用戶端在指定的時間內沒有串連上資料庫,會在listener.log日誌中出現 ORA-12525,同時在alert日誌中會報錯ora-03136

 

5,listener的connect_timeout_listener-name限制,很少使用

CONNECT_TIMEOUT_ listener_name= number

 

  This parameter sets the number of seconds that the listener waits to get a valid SQL*Net version 2 connection request after a connection has been started. The listener drops the connection if the timeout is reached. Default is 10; if set to 0, it will wait forever.

 

參數值單位是秒,預設值是10s,如果建立監聽後在設定的時間內沒有反應將會中斷連線。設定為0表示沒有等待時間限制。

Oracle會話逾時退出設定

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.