oracle資料庫客戶端登不了

2021-08-15 20:35:28 字數 1246 閱讀 7200

新安裝的資料庫可以通過後台**連線資料庫即:

第一步:sqlplus

第二步:輸入使用者名稱 scott

第三步:輸入密碼 tiger

以上三步可以連線到資料庫,但是通過命令 : sqplus scott/tiger@orcl 不能連線到資料庫,可能報錯:

error:

ora-12514: tns: 監聽程式當前無法識別連線描述符中請求的服務

以上原因是因為監聽不能識別服務名,需要在d:\oracle_install\oracle_1\network\admin\listener.ora的資料夾下新增一些配置

listener.ora檔案如下

# listener.ora network configuration file: d:\oracle_install\oracle_1\network\admin\listener.ora

# generated by oracle configuration tools.

sid_list_listener =

(sid_list =

(sid_desc =

(sid_name = clrextproc)

(oracle_home = d:\oracle_install\oracle_1)

(program = extproc)

(envs = "extproc_dlls=only:d:\oracle_install\oracle_1\bin\oraclr11.dll")

)(sid_desc =

(global_dbname = orcl)

(oracle_home = d:\oracle_install\oracle_1)

(sid_name = orcl)

)

)listener =

(description_list =

(description =

(address = (protocol = ipc)(key = extproc1521))

(address = (protocol = tcp)(host = localhost)(port = 1521))))

adr_base_listener = d:\oracle_install\oracle_base

標紅為新新增的內容,可根據自己的實際情況修改引數。

Oracle,客戶端遠端連線資料庫

用windows下的oracle客戶端工具 net manager遠端連線linux下的oracle資料庫。資料庫端的設定步驟 1.先確定能互相ping通。2.關閉資料庫伺服器的防火牆 root localhost service iptables stop iptables setting cha...

C SQL通用資料庫客戶端

通用sql客戶端通過提供統一的gui訪問介面,這些介面獲取資料可以呼叫標準的dal data access layer 介面定義來實現不同資料庫的資料適配,也就是說使用者只要按照dal定義的資料標準,實現相關的介面,就可以使用sqlclient來展示新型資料庫中的表,檢視,索引等。sqlclient...

解決Oracle資料庫客戶端隨機埠連線的問題

2009 03 06 11 03 要使oracle客戶端能正常連線到設定有防火牆的安裝在windows上的oracle伺服器,單開放乙個1521或自定義的監聽 埠是不夠的。我們有的時候需要對映埠遠端去訪問oracle 資料庫,這裡有個防火牆的 問題,在unix 上沒有問題,但是在win 平台上卻無法...