【EZCONNECT】 sqlnet.ora檔案中EZCONNECT引數與Easy Connect Naming Method方法
如果對tnsnames.ora檔案沒有做充分的配置,也可以使用Oracle的Easy Connect Naming Method方法測試資料庫是否可以訪問。
這裡不對這種方法的原理和詳細用法展開描述,這方面的資訊可以透過以下Oracle連線獲得。
或直接訪問下屬文章進行參考。
Net Services Administrator's Guide - 2 Quick Start to Oracle Net Connections - Task 3: Configure the Client for Connection to a Database
Net Services Administrator's Guide - 8 Configuring Naming Methods - Using the Easy Connect Naming Method
簡單列一下該方法的使用語法,供參考。
CONNECT username/password@host[:port][/service_name][/instance_name]
CONNECT username/password@[//]host[:port][/service_name]
本文想要強調指出的是,如果想要使用Easy Connect Naming Method方法測試資料庫的連通性,需要在sqlnet.ora檔案中增加“NAMES.DIRECTORY_PATH= (EZCONNECT)”資訊,否則該功能將無法使用。
1.sqlnet.ora檔案的位置
該檔案與listener.ora和tnsnames.ora檔案處於同一目錄,具體目錄為:$ORACLE_HOME/network/admin。
2.體驗報錯,以此為鑑
如果是Windows客戶端沒有配置相應的引數,會收到如下報錯:
C:\Users\secooler>sqlplus sec/sec@10.17.193.211:1521/ora10g
SQL*Plus: Release 10.2.0.3.0 - Production on 星期一 8月 2 21:19:01 2010
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
ERROR:
ORA-12154: TNS: 無法解析指定的連線識別符號
請輸入使用者名稱:
ERROR:
ORA-12560: TNS: 協議介面卡錯誤
請輸入使用者名稱:
ERROR:
ORA-12560: TNS: 協議介面卡錯誤
SP2-0157: 在 3 次嘗試之後無法連線到 ORACLE, 退出 SQL*Plus
C:\Users\secooler>
如Linux伺服器端的sqlnet.ora檔案沒有設定相應的引數,將會收到如下錯誤:
sec@secdb /home/oracle$ sqlplus sec/sec@10.17.193.211:1521/ora10g
SQL*Plus: Release 10.2.0.3.0 - Production on Mon Aug 2 21:21:34 2010
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Enter user-name:
ERROR:
ORA-01017: invalid username/password; logon denied
Enter user-name:
ERROR:
ORA-01017: invalid username/password; logon denied
SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
兩種錯誤內容是一樣的,從錯誤提示上看,很難直接定位是由於sqlnet.ora檔案配置問題導致的。這就需要我們對Easy Connect Naming Method的原理深入瞭解。
3.向sqlnet.ora檔案中新增“EZCONNECT”資訊,解決該問題
“EZCONNECT”這個單詞很好理解,從發音上即可等同於“Easy Connect”。從此,該引數將不再陌生。
sec@secdb /home/oracle$ cat $ORACLE_HOME/network/admin/sqlnet.ora
# sqlnet.ora Network Configuration File: /oracle/app/oracle/product/10.2.0/db_1/network/admin/sqlnet.ora
# Generated by Oracle configuration tools.
NAMES.DIRECTORY_PATH= (TNSNAMES,EZCONNECT)
在新增完引數後嘗試連線,成功。
sec@secdb /oracle$ sqlplus sec/sec@10.17.193.211:1521/ora10g
SQL*Plus: Release 10.2.0.3.0 - Production on Mon Aug 2 21:31:50 2010
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
sec@ora10g>
4.小結
Oracle提供了很多類似文中提到的Easy Connect Naming Method小技巧。建議在使用這些便捷方法之前充分了解工具使用的前提和約束,這樣可以在提高效率的同時不至於帶來太多的障礙。
Good luck.
secooler
10.08.02
-- The End --
這裡不對這種方法的原理和詳細用法展開描述,這方面的資訊可以透過以下Oracle連線獲得。
或直接訪問下屬文章進行參考。
Net Services Administrator's Guide - 2 Quick Start to Oracle Net Connections - Task 3: Configure the Client for Connection to a Database
Net Services Administrator's Guide - 8 Configuring Naming Methods - Using the Easy Connect Naming Method
簡單列一下該方法的使用語法,供參考。
CONNECT username/password@host[:port][/service_name][/instance_name]
CONNECT username/password@[//]host[:port][/service_name]
本文想要強調指出的是,如果想要使用Easy Connect Naming Method方法測試資料庫的連通性,需要在sqlnet.ora檔案中增加“NAMES.DIRECTORY_PATH= (EZCONNECT)”資訊,否則該功能將無法使用。
1.sqlnet.ora檔案的位置
該檔案與listener.ora和tnsnames.ora檔案處於同一目錄,具體目錄為:$ORACLE_HOME/network/admin。
2.體驗報錯,以此為鑑
如果是Windows客戶端沒有配置相應的引數,會收到如下報錯:
C:\Users\secooler>sqlplus sec/sec@10.17.193.211:1521/ora10g
SQL*Plus: Release 10.2.0.3.0 - Production on 星期一 8月 2 21:19:01 2010
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
ERROR:
ORA-12154: TNS: 無法解析指定的連線識別符號
請輸入使用者名稱:
ERROR:
ORA-12560: TNS: 協議介面卡錯誤
請輸入使用者名稱:
ERROR:
ORA-12560: TNS: 協議介面卡錯誤
SP2-0157: 在 3 次嘗試之後無法連線到 ORACLE, 退出 SQL*Plus
C:\Users\secooler>
如Linux伺服器端的sqlnet.ora檔案沒有設定相應的引數,將會收到如下錯誤:
sec@secdb /home/oracle$ sqlplus sec/sec@10.17.193.211:1521/ora10g
SQL*Plus: Release 10.2.0.3.0 - Production on Mon Aug 2 21:21:34 2010
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Enter user-name:
ERROR:
ORA-01017: invalid username/password; logon denied
Enter user-name:
ERROR:
ORA-01017: invalid username/password; logon denied
SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
兩種錯誤內容是一樣的,從錯誤提示上看,很難直接定位是由於sqlnet.ora檔案配置問題導致的。這就需要我們對Easy Connect Naming Method的原理深入瞭解。
3.向sqlnet.ora檔案中新增“EZCONNECT”資訊,解決該問題
“EZCONNECT”這個單詞很好理解,從發音上即可等同於“Easy Connect”。從此,該引數將不再陌生。
sec@secdb /home/oracle$ cat $ORACLE_HOME/network/admin/sqlnet.ora
# sqlnet.ora Network Configuration File: /oracle/app/oracle/product/10.2.0/db_1/network/admin/sqlnet.ora
# Generated by Oracle configuration tools.
NAMES.DIRECTORY_PATH= (TNSNAMES,EZCONNECT)
在新增完引數後嘗試連線,成功。
sec@secdb /oracle$ sqlplus sec/sec@10.17.193.211:1521/ora10g
SQL*Plus: Release 10.2.0.3.0 - Production on Mon Aug 2 21:31:50 2010
Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
sec@ora10g>
4.小結
Oracle提供了很多類似文中提到的Easy Connect Naming Method小技巧。建議在使用這些便捷方法之前充分了解工具使用的前提和約束,這樣可以在提高效率的同時不至於帶來太多的障礙。
Good luck.
secooler
10.08.02
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31397003/viewspace-2135519/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle Easy Connect Naming methodOracle
- 11g下sqlnet.ora及EZCONNECTSQL
- EZCONNECT方式連線服務端服務端
- [20161212]ezconnect與共享服務模式.txt模式
- [20180208]ezconnect語法.txt
- oracle 11.2.0.4 使用easy connect naming定義db link淺析之一Oracle
- 引數檔案的恢復方法
- 通過反射獲取上傳檔案方法引數中的檔名反射
- JNDI naming exception: Naming exception trying to connect to: t3://localhosException
- 引數檔案
- 引數檔案/口令檔案
- Oracle引數檔案解析——引數檔案分析獲取Oracle
- /proc虛擬檔案系統與系統核心引數修改方法
- Oracle引數檔案解析——引數解析Oracle
- Oracle 引數檔案Oracle
- SAP引數檔案
- redis配置檔案中各引數詳解Redis
- bash shell 讀取引數檔案常見方法
- Oracle引數檔案 各引數解釋Oracle
- 【原創】sqlnet.ora常用引數研究SQL
- sqlnet.ora常用引數研究(轉帖)SQL
- 引數檔案恢復
- oracle的引數檔案Oracle
- Oracle 引數檔案(轉)Oracle
- sqlnet.ora SQLNET.AUTHENTICATION_SERVICES 引數SQL
- oracle 11G引數檔案之伺服器引數檔案(spfile)與例項啟動的關係Oracle伺服器
- Redhat中透過命令工具和配置檔案設定TCP/IP引數的方法RedhatTCP
- mybatis中mapper.xml檔案引數問題MyBatisAPPXML
- RAC中對DB引數檔案的簡單理解
- oracle控制檔案及引數檔案問題Oracle
- Oracle RAC引數檔案管理Oracle
- Oracle引數檔案基礎Oracle
- oracle 關於--引數檔案Oracle
- 檔案的時間引數
- oracle引數檔案pfile,spfileOracle
- 靜態引數檔案配置
- 冷備份之一查詢引數檔案及備份引數檔案
- 修改二進位制引數檔案(SPFILE)的方法之一