Oracle會話超時退出設定

路途中的人2012發表於2016-12-22

        在itpub上寫部落格,感覺要比在CSDN上面寫方便很多,第一次申請使用CSDN部落格是在2010年,至今記憶猶新啦,但願在這部落格上面可以一直堅持下去,也給大家分享下原來寫的一些部落格:http://blog.csdn.net/dream19881003,感慨就發到這裡吧,還是說下前一段時間預計客戶的一個問題吧。
        前一段時間客戶打電話說自從資料庫搬遷後連線資料庫總是提示會話不可用,和客戶溝通才知到他們連線資料庫的程式是從早上連上資料庫後就一直保持連線狀態,一天中需要執行幾次操作,由於資料庫中的會話連線有超時限制,造成客戶端長時間沒有操作,就會斷開連線。
        
        經過這次事件總結了Oracle關於超時退出的一些設定:

          1 profile的idle_time限制

          2 profile的connect_time限制

          3 sqlnet的expire_time限制

           4 sqlnet的INBOUND_CONNECT_TIMEOUT_listener_name限制

          5 listener的CONNECT_TIMEOUT_listener_name限制

1,profile的idle_time限制
    oracle使用者的配置檔案的密碼策略是實時生效的,所見即所得。但是使用者配置檔案的資源限制是由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表示沒有等待時間限制。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29067253/viewspace-2131210/,如需轉載,請註明出處,否則將追究法律責任。

相關文章