1
0

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.

Tomcat8にてWebアプリケーションマネージャ画面を表示する

Posted at

#Tomcat8でマネージャ画面を出すと404エラー

Webアプリのセッション数をざっと調べたくWebアプリマネージャ画面を出そうとしたのですがなかなか表示されなかった時の対応策

##起動URL
http://localhost:8080/manager/html

##現象
404エラーで表示されない

##環境
pleiades all in one 4.4
eclipseにてTomcatサーバを作成している。

##対応策
eclipseのプロジェクトエクスプローラーの「Servers」プロジェクトの「tomcat-users.xml」にタグを追加

tomcat-users.xml
<tomcat-users version="1.0" xmlns="http://tomcat.apache.org/xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd">
  <role rolename="manager-gui" />
  <role rolename="manager-status" />
  <user username="admin" password="pass" roles="manager-gui,manager-status" />
</tomcat-users>

同じく「server.xml」に以下のタグを追加

server.xml
<Engine>
  <Context docBase="tomcatのインストールディレクトリ\webapps\manager" path="/manager" privileged="true" reloadable="true" />
</Engine>

サーバを再起動してURLにもう一度アクセスする。

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?