INBOUND_CONNECT_TIMEOUT與SQLNET.INBOUND_CONNECT_TIMEOUT小結

来源:http://www.cnblogs.com/kerrycode/archive/2016/02/28/5224483.html
-Advertisement-
Play Games

關於sqlnet.ora的參數SQLNET.INBOUND_CONNECT_TIMEOUT,它表示等待用戶認證超時的時間,單位是秒,預設值是60秒,如果用戶認證超時了,伺服器日誌alert.log顯示出錯信息"WARNING: inbound connection timed out (ORA-31...


   關於sqlnet.ora的參數SQLNET.INBOUND_CONNECT_TIMEOUT,它表示等待用戶認證超時的時間,單位是秒,預設值是60秒,如果用戶認證超時了,伺服器日誌alert.log顯示出錯信息"WARNING: inbound connection timed out (ORA-3136)",sqlnet.log裡面出現TNS-12535: TNS:operation timed out錯誤信息。

   關於listener.ora的參數inbound_connect_timeout_監聽器名,它表示等待用戶連接請求超時的時間,單位是秒,預設值是60秒,如果連接請求超時了,監聽器日誌listener.log顯示出錯信息"TNS-12525: TNS:listener has not received client's request in time allowed"。

   其中sqlnet.ora裡面的參數為SQLNET.INBOUND_CONNECT_TIMEOUT, listener.ora裡面的參數設置為INBOUND_CONNECT_TIMEOUT_listener_name ,其中根據監聽名字來替換listener_name。官方文檔關於兩者的介紹如下所示:

 

SQLNET.INBOUND_CONNECT_TIMEOUT parameter in sqlnet.ora on the database server

Specify the time, in seconds, for a client to connect with the database server and provide the necessary authentication information. If the client fails to establish a connection and complete authentication in the time specified, then the database server terminates the connection. In addition, the database server logs the IP address of the client and an ORA-12170: TNS:Connect timeout occurred error message to the sqlnet.log file. The client receives either an ORA-12547: TNS:lost contact or an ORA-12637: Packet receive failed error message.

INBOUND_CONNECT_TIMEOUT_listener_name in listener.ora

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

 

查看inbound_connect_timeout值

1:查看SQLNET.INBOUND_CONNECT_TIMEOUT的設置值,一般進入$ORACLE_HOME/network/admin下,查看sqlnet.ora參數文件即可。

2:查看監聽INBOUND_CONNECT_TIMEOUT參數,可以查看listener.ora參數文件。但是有時候,例如預設情況,參數文件裡面沒有設置這個參數,或是有些動態監聽沒有配置listener.ora,那麼可以使用lsnrctl命令查看,如下所示:

LSNRCTL> show
The following operations are available after show
An asterisk (*) denotes a modifier or extended command:
 
rawmode                     displaymode                 
rules                       trc_file                    
trc_directory               trc_level                   
log_file                    log_directory               
log_status                  current_listener            
inbound_connect_timeout     startup_waittime            
snmp_visible                save_config_on_stop         
dynamic_registration        
 
LSNRCTL> show inbound_connect_timeout
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
LISTENER parameter "inbound_connect_timeout" set to 60
The command completed successfully
LSNRCTL> 

clip_image001

 

設置SQLNET.INBOUND_CONNECT_TIMEOUT值

我們首先設置SQLNET.INBOUND_CONNECT_TIMEOUT為30秒,這個參數修改後立即生效,不需要做任何其它操作。

[oracle@DB-Server admin]$ vi sqlnet.ora
# sqlnet.ora Network Configuration File: /u01/app/oracle/product/10.2.0/db_1/network/admin/sqlnet.ora
# Generated by Oracle configuration tools.
 
NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
SQLNET.INBOUND_CONNECT_TIMEOUT=30
 
 
C:\Users>sqlplus /@mytest
 
SQL*Plus: Release 11.2.0.1.0 Production on 星期日 2月 28 10:57:09 2016
 
Copyright (c) 1982, 2010, Oracle.  All rights reserved.
 
ERROR:
ORA-01017: invalid username/password; logon denied
 
 
請輸入用戶名:

clip_image002

 

當30秒後,此時,在sqlnet.log裡面就能看到新增了一條關於TNS-12535的錯誤記錄,其中10.20.34.14是我客戶端的IP地址。

clip_image003

 

告警日誌裡面你會看到WARNING: inbound connection timed out (ORA-3136)錯誤。有意思的是,監聽日誌裡面你不會看到任何錯誤信息。(可以用了對比這兩個參數的區別)

clip_image004

 

設置INBOUND_CONNECT_TIMEOUT_listener_name的值

這個參數可以通過lsnrctl命令設置,如下所示,當然最簡單的還是設置listener.ora參數文件。這個參數也是立即生效,不需要重啟監聽。

LSNRCTL> show inbound_connect_timeout
NL-00853: undefined show command "inbound_connect—meout".  Try "help show"
LSNRCTL> show inbound_connect_timeout
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
LISTENER parameter "inbound_connect_timeout" set to 60
The command completed successfully
LSNRCTL> set inbound_connect_timeout 20
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
LISTENER parameter "inbound_connect_timeout" set to 20
The command completed successfully
LSNRCTL> show inbound_connect_timeout
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
LISTENER parameter "inbound_connect_timeout" set to 20
The command completed successfully
LSNRCTL> 

clip_image005

此時我們用telnet來模擬用戶連接請求超時的時間,如下所示,當超過20秒,就會自動退出

[root@test ~]# time telnet 192.168.9.124 1521
Trying 192.168.9.124...
Connected to 192.168.9.124 (192.168.9.124).
Escape character is '^]'.
Connection closed by foreign host.
 
real    0m20.019s
user    0m0.001s
sys     0m0.003s

此時在listener.log裡面,你就能看到TNS-12525的錯誤,如下所示

28-FEB-2016 11:32:20 * <unknown connect data> * (ADDRESS=(PROTOCOL=tcp)(HOST=10.20.34.14)(PORT=38051)) * establish * <unknown sid> * 12525
 
TNS-12525: TNS:listener has not received client's request in time allowed
 
TNS-12535: TNS:operation timed out
 
TNS-12606: TNS: Application timeout occurred

註意:set inbound_connect_timeout只對當前環境生效,如果重啟監聽服務,則會失效,如下所示

LSNRCTL> set inbound_connect_timeout 18
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
LISTENER parameter "inbound_connect_timeout" set to 18
The command completed successfully
LSNRCTL> reload
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
The command completed successfully
LSNRCTL> show inbound_connect_timeout
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
LISTENER parameter "inbound_connect_timeout" set to 60
The command completed successfully

clip_image006

此時需要使用命令set save_config_on_stop on保存配置信息,使其永遠生效。但是我測試發現,動態監聽也無法使用set save_config_on_stop on保存配置信息,需要修改配置文件(註意,修改listener.ora,需要重啟監聽使之生效)。如下所示

clip_image007

 

關於兩者之間的關係,一般INBOUND_CONNECT_TIMEOUT_listener_name的值應該低於SQLNET.INBOUND_CONNECT_TIMEOUT的值,官方文檔介紹如下,

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.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 分類:C#、Android、VS2015; 創建日期:2016-02-28 一、簡介 廣播(Broadcast):其功能類似於收音機的廣播,你只要調到那個台(只要在接收的類中註冊了要接收的廣播),就能收到這個台播放的信息。 通知(Notifications):安卓的服務組件(Android Serv
  • 在iOS開發過程中,我一直習慣於使用C語法里的基本類型,而很少用(除非必須使用)Foundation的數據類型。最近看了一些資料,發現自己這樣寫可能有風險,雖然目前沒遇到過相關的問題,但這是非常需要註意的一點。 新博客 "wossoneri.com" 壞習慣的開端 初寫iOS時,我做的是把原項目從
  • 安卓第四天筆記-Sqlite 1.資料庫的創建運行與更新 1.1.創建一個類繼承SqliteOpenHelper 1.2.創建構造方法 /** * 資料庫創建類 * @author 劉楠 * * 2016-2-20上午10:04:34 */ public class DbSqliteOpenHelp
  • 分類:C#、Android、VS2015; 創建日期:2016-02-27 一、簡介 Android使用的文件系統是基於Linux的文件系統,在Android應用程式中,開發人員既可以建立和訪問程式自身的私有文件,也可以訪問保存在資源目錄中的原始文件和XML文件,同時還可以將文件保存在SD卡等外部存...
  • 我們在開發項目時,喜歡引入好多的第三方包,大大的方便了我們的開發,但同時,因為android方法總數的限制,不能超過65k,然而呢,隨著我們的開發,65k最終還是會超過,所以,google就給出了這個解決方案,但一直好奇它是內部是怎麼實現的,我們今天就來根據源碼來看看這個包到底做了什麼,怎麼把多個d
  • 機器學習 視頻教程 數據挖掘 實戰 開發 應用 演算法 案例 R語言 Hadoop、Redis、Memcached、MongoDB、Spark、Storm、雲計算、R語言、機器學習、Nginx、Linux、MySQL、Java EE、.NET、PHP
  • Hadoop、Redis、Memcached、MongoDB、Spark、Storm、雲計算、R語言、機器學習、Nginx、Linux、MySQL、Java EE、.NET、PHP Hadoop 視頻教程 大數據 高性能 集群 NoSQL 實戰 權威 入門 安裝
  • SQL優化的最終目的是用戶體驗-在最短時間內讓用戶在頁面數據。因此,執行時間是SQL優化的重要指標。在SQL查詢中,I/O操作最占系統性能的。I/O操作量越大,時間越久。減少I/O操作量是優化SQL的目標。同時,CPU,緩存命中率也很重要。 並不是所有SQL都需要被優化,使用頻率高,性能差的SQL語
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...