真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

通過sqlplus連接數(shù)據(jù)庫服務(wù)器很慢的問題


今天在論壇上看到一個(gè)貼子,問題是客戶端sqlplus連接數(shù)據(jù)庫很慢:http://www.itpub.net/thread-2090550-1-1.html,之后根據(jù)問題的描述與分析,在測(cè)試環(huán)境做了一下測(cè)試,將我的虛擬主機(jī)加入域環(huán)境,進(jìn)行測(cè)試;之后就聯(lián)想到去年我所遇到類似的一個(gè)問題:http://www.itpub.net/thread-2072574-1-1.html

10年的鐵東網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。全網(wǎng)整合營(yíng)銷推廣的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整鐵東建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“鐵東網(wǎng)站設(shè)計(jì)”,“鐵東網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

實(shí)驗(yàn)環(huán)境
操作系統(tǒng):Windows Server 2008 R2,加入AD域環(huán)境
數(shù)據(jù)庫:Oracle 11.2.0.4

問題描述:
1、從客戶端使用sqlplus xxx/ssss@yyy的方式連接數(shù)據(jù)庫,第一次連數(shù)據(jù)庫時(shí)很慢,基本上要幾十秒才能連接到數(shù)據(jù)庫,接下來幾次連接很正常,但過會(huì)兒再連接數(shù)據(jù)庫又變慢了
2、數(shù)據(jù)庫的日志文件中,有大量的WARNING: inbound connection timed out (ORA-3136)錯(cuò)誤信息

排除過程:
1、查了ORA-03136的錯(cuò)誤,根據(jù)網(wǎng)上查找的資料,把數(shù)據(jù)庫服務(wù)的監(jiān)聽添加了如下參數(shù)
    LSNRCTL> set inbound_connect_timeout 0  

并保存,此時(shí),數(shù)據(jù)庫中不在報(bào)ORA-03136的錯(cuò)誤了,但是,從客戶端連接到oracle數(shù)據(jù)庫服務(wù)器還是存在很慢的問題
2、客戶端連接數(shù)據(jù)庫服務(wù)時(shí),數(shù)據(jù)庫的那臺(tái)主機(jī)的硬件負(fù)載都不高;
3、服務(wù)器的監(jiān)聽文件和客戶端的tnsname.ora中的主機(jī)地址都是使用ip地址
4、在服務(wù)器上使用sqlplus xxx/ssss@yyy嘗試連接多次,速度正常,感覺服務(wù)器端沒問題
5、從客戶端ping服務(wù)器的監(jiān)聽地址,沒有丟包現(xiàn)像
6、在客戶端使用tnsping測(cè)試到服務(wù)器的解析也很快,毫秒以內(nèi) 
7、通過5和6的測(cè)試,感覺客戶端到服務(wù)器的網(wǎng)絡(luò)是正常的
8、繼續(xù)查詢,在網(wǎng)上發(fā)現(xiàn)這篇文章和我的情況類似,http://blog.csdn.net/jaray/article/details/36008871后來根據(jù)這個(gè)文章上的方法,修改了服務(wù)器上的sqlnet.ora中的SQLNET.AUTHENTICATION_SERVICES的值為none
9、再次使用sqlplus測(cè)試從客戶端測(cè)試到服務(wù)端的連接,速度正常,幾秒內(nèi)連接成功
10、嘗試把那個(gè)值再改成NTS,故障又再次出現(xiàn)

問題分析:

在sqlnet.ora的SQLNET.AUTHENTICATION_SERVICES設(shè)置,如果設(shè)置NTS,則優(yōu)先使用Windows驗(yàn)證,然后使用Oracle驗(yàn)證;而設(shè)置none,則只使用Oracle驗(yàn)證。由于我測(cè)試的環(huán)境加入了AD域,所以如果優(yōu)先Windows驗(yàn)證,則Oracle會(huì)通過遠(yuǎn)程的AD域服務(wù)器進(jìn)行驗(yàn)證,驗(yàn)證失敗后再進(jìn)行Oracle驗(yàn)證,所以速度會(huì)很慢;

解決問題:

將sqlnet.ora的SQLNET.AUTHENTICATION_SERVICES值設(shè)置為none

問題分析到這里,不經(jīng)讓我想起去年遇到一個(gè)同樣類似的問題:通過sqlplus遠(yuǎn)程連接Oracle數(shù)據(jù)庫的時(shí),有時(shí)候能夠連接上,有什么就連接不上?(如下圖所示)

通過sqlplus連接數(shù)據(jù)庫服務(wù)器很慢的問題

以下是Oracle11g官方文檔關(guān)于sqlnet.ora的說明:

************************************************************************************************************************************

The sqlnet.ora file is the profile configuration file. It resides on the client machines and the database server. Profiles are stored and implemented using this file. The database server can be configured with access control parameters in the sqlnet.ora file. These parameters specify whether clients are allowed or denied access based on the protocol.

The sqlnet.ora file enables you to do the following:

·         Specify the client domain to append to unqualified names

·         Prioritize naming methods

·         Enable logging and tracing features

·         Route connections through specific processes

·         Configure parameters for external naming

·         Configure Oracle Advanced Security

·         Use protocol-specific parameters to restrict access to the database

By default, the sqlnet.ora file is located in the ORACLE_HOME/network/admin directory. The sqlnet.ora file can also be stored in the directory specified by the TNS_ADMIN environment variable.

************************************************************************************************************************************

從描述中看出,該文件是控制客戶端訪問數(shù)據(jù)庫服務(wù)器的,可以設(shè)定多種參數(shù)進(jìn)行訪問控制。關(guān)于其他參數(shù)的詳細(xì)配置請(qǐng)參考官方文檔;而接觸到的最多的參數(shù)是 sqlnet.authentication_services,官方說明如下:

************************************************************************************************************************************

SQLNET.AUTHENTICATION_SERVICES

Purpose

To enable one or more authentication services. If authentication has been installed, then it is recommended that this parameter be set to either noneor to one of the authentication methods.

Default

None

Note:

When installing the database with Database Configuration Assistant (DBCA), this parameter may be set to nts in the sqlnet.ora file.

Values

·         Authentication Methods Available with Oracle Net Services:

o   none for no authentication methods, including Microsoft Windows native operating system authentication. WhenSQLNET.AUTHENTICATION_SERVICES is set to none, a valid user name and password can be used to access the database.

o   all for all authentication methods.

o   nts for Microsoft Windows native operating system authentication.

·         Authentication Methods Available with Oracle Advanced Security:

o   kerberos5 for Kerberos authentication.

o   radius for RADIUS authentication.

o   tcps for SSL authentication.

************************************************************************************************************************************

從參數(shù)的說明可以了解到提供兩種服務(wù),net服務(wù)和高級(jí)安全服務(wù)。高級(jí)安全服務(wù)參數(shù)這里不討論了,討論一下 none / all / nts三個(gè)參數(shù)的作用。

設(shè)定sqlnet.authentication_services:

  • none:作用是不允許通過os系統(tǒng)用戶登錄數(shù)據(jù)庫,需要提供用戶名及密碼;
  • all:作用是允許所有的登錄方式;
  • nts:作用是windows的本地操作系統(tǒng)用戶認(rèn)證;

注:需要說明的是該用戶名和密碼是指具有sysdba權(quán)限的用戶;在linux上若用系統(tǒng)用戶oracle登錄數(shù)據(jù)庫需要設(shè)定為all或者不加該字段;

關(guān)于通過SQLNET.ora文件限制IP地址訪問的問題請(qǐng)參考蓋大師的博客:

http://www.eygle.com/archives/2008/01/sqlnetora_ip_limit.html

作者:SEian.G(苦練七十二變,笑對(duì)八十一難)

ITPUB:http://blog.itpub.net/31015730/

51CTO:http://seiang.blog.51cto.com/


本文名稱:通過sqlplus連接數(shù)據(jù)庫服務(wù)器很慢的問題
文章位置:http://weahome.cn/article/ihhsjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部