#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にもう一度アクセスする。