2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

tomcatとXDBのHTTPポート競合でtomcat起動エラー

Posted at

XDBのポート番号はデフォルトで8080なので、tomcatのポート番号と重複するため、起動時にエラーとなる。
XDBを削除するには、sqlplusに接続し、以下のsqlを実行する。
c:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\catnoqm.sql
その後、再起動を行う。

SQL> SHUTDOWN IMMEDIATE
データベースがクローズされました。
データベースがディスマウントされました。
ORACLEインスタンスがシャットダウンされました。
SQL> STARTUP
ORACLEインスタンスが起動しました。

Total System Global Area 535662592 bytes
Fixed Size 1384760 bytes
Variable Size 213913288 bytes
Database Buffers 314572800 bytes
Redo Buffers 5791744 bytes
データベースがマウントされました。
データベースがオープンされました。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?