LoginSignup
0
0

More than 5 years have passed since last update.

Oracle でLocal Listener設定時にエラー

Posted at

以下のようなエラーが出た

SQL> alter system set local_listener='LISTENER';
alter system set local_listener='LISTENER'
*
行1でエラーが発生しました。:
ORA-02097: 指定した値が無効なので、パラメータを変更できません。
ORA-00119: システム・パラメータLOCAL_LISTENERの指定が無効です
ORA-00132: 構文エラーまたは未解決のネットワーク名'LISTENER'

tnsnames.oraにパラメータを指定していたはず。だが、以下のように記載した時、最初の列の前に空白を入れないとエラーになる。

LISTENER =
 (DESCRIPTION =
  (ADDRESS_LIST =
   (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.100)(PORT = 1521))
  )
 )
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0