oracleリモート接続構成


oracleのインストールが完了すると、ローカルからのみ接続できます.他のマシンから接続する場合は、oracleを設定する必要があります.
ネイティブOS:winXP 32 bit
oracle: 11g
1.コントロールパネルでオペレーティングシステムのファイアウォールを閉じる
2.C:appAdministratorproduct11.2.0dbhome_を見つける1\NETWORK\ADMIN\listener.oraファイル、
その中のHOSTがoracleが存在するマシンのホスト名hostnameを変更し、
C:\Documents and Settings\Administrator>hostname
yuanyuan-0a46c6

SIDが設定したoracleを宣言するSID名を追加します(デフォルトはorcl)
(SID_DESC =
      (GLOBAL_DBNAME = ORCL) 
      (RACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
      (SID_NAME = ORCL)
    )

最後に修正したlistener.oraの内容は
# listener.ora Network Configuration File: C:\app\Administrator\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora
# Generated by Oracle configuration tools.

SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
      (PROGRAM = extproc)
      (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Administrator\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    )
	(SID_DESC =
      (GLOBAL_DBNAME = ORCL) 
      (RACLE_HOME = C:\app\Administrator\product\11.2.0\dbhome_1)
      (SID_NAME = ORCL)
    )
  )

LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = yuanyuan-0a46c6)(PORT = 1521))
    )
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    )
  )

ADR_BASE_LISTENER = C:\app\Administrator

3.oracleリスニングサービスを再起動すればよい.
winのサービス管理でOracleOraDb 11 gを再起動します.ホーム1 TNSlistenerサービス、
またはcmのウィンドウでlsnrctl startを実行する.
これにより、oracleデータベースがリモート接続できないという問題を解決できます.
4.よくあるエラー:
以上HOSTを変更しないと、次のエラーが表示されます.
java.sql.SQLException: The Network Adapter could not establish the connection..................Caused by: oracle.net.ns.NetException: The Network Adapter could not establish the connection

SID名が指定されていない場合は、次のエラーが表示されます.
java.sql.SQLException: Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor