Apache Tomcat Webアプリケーションマネージャの設定

便利なwebツールですが、インストール後は使用できない状態になっています。
インストール後はlocal(127.0.0.1)の8080ポートで起動していますが、右側の[Server Status]等のメニューは機能しません(ログインができない)。また、ローカルホスト以外からのアクセスもできません。

Webアプリケーションマネージャの機能を使う

ログインができないので、ログインするためのアカウントとパスワードを設定する必要があります。

tomcatのインストールパス\conf配下にある[tomcat-users.xml]編集が必要になります。標準では下記の通りです。

<?xml version='1.0' encoding='ms932'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<tomcat-users 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"
              version="1.0">
<!--
  NOTE:  By default, no user is included in the "manager-gui" role required
  to operate the "/manager/html" web application.  If you wish to use this app,
  you must define such a user - the username and password are arbitrary. It is
  strongly recommended that you do NOT use one of the users in the commented out
  section below since they are intended for use with the examples web
  application.
-->
<!--
  NOTE:  The sample user and role entries below are intended for use with the
  examples web application. They are wrapped in a comment and thus are ignored
  when reading this file. If you wish to configure these users for use with the
  examples web application, do not forget to remove the <!.. ..> that surrounds
  them. You will also need to set the passwords to something appropriate.
-->
<!--
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
  <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
  <user username="role1" password="<must-be-changed>" roles="role1"/>
-->
</tomcat-users>

下記のように <role rolename=”manager-gui”/> <role rolename=”admin-gui”/> <user username=”admin” password=”admin” roles=”manager-gui,admin-gui”/> を追加します。
ID:admin パスワード:adminなので、本番環境ではもう少しパスワードは複雑にしてください。

<?xml version='1.0' encoding='ms932'?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<tomcat-users 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"
              version="1.0">
<!--
  NOTE:  By default, no user is included in the "manager-gui" role required
  to operate the "/manager/html" web application.  If you wish to use this app,
  you must define such a user - the username and password are arbitrary. It is
  strongly recommended that you do NOT use one of the users in the commented out
  section below since they are intended for use with the examples web
  application.
-->
<!--
  NOTE:  The sample user and role entries below are intended for use with the
  examples web application. They are wrapped in a comment and thus are ignored
  when reading this file. If you wish to configure these users for use with the
  examples web application, do not forget to remove the <!.. ..> that surrounds
  them. You will also need to set the passwords to something appropriate.
-->
<!--
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
  <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
  <user username="role1" password="<must-be-changed>" roles="role1"/>
-->
  <role rolename="manager-gui"/>
  <role rolename="admin-gui"/>
  <user username="admin" password="admin" roles="manager-gui,admin-gui"/>

</tomcat-users>

tomcat-users.xml を保存したら、tomcatを停止・起動します。
※再起動するまで設定は反映されません

右サイドの機能ボタンをクリックするとユーザ名とパスワードの入力を求められるので、設定した値を入力して[ログイン]を選択します。

この設定で、[Server Status] [Manager App] [Host manager]にアクセスできます。
権限は以下の通りです。
ロール:manager-guiは [Server Status] [Manager App] を許可する権限
ロール: admin-gui は [Host manager] を許可する権限

Server Status
Manager App
Host manager

リモートからの Webアプリケーションマネージャ へのアクセス

ここまでの設定ではTomcatがインストールされたローカルホストからのアクセスに限定されているため、リモートからアクセスを可能にします。

以下のフォルダのcontext.xmlを編集します。
インストールパス\webapps\host-manager\META-INF
インストールパス \webapps\manager\META-INF

2つのファイル両方に下記のエントリ(アクセスをローカルホストに限定する)がありますので、コメントアウトするか正規表現で適切なIPアドレスを指定します。
今回はコメントアウトしてすべてのホストからのアクセスを許可にしています。

  <Valve className="org.apache.catalina.valves.RemoteAddrValve"
         allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" />

<!--
  <Valve className="org.apache.catalina.valves.RemoteAddrValve"
         allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" />
-->

xmlファイルのコメントアウト(無効化)は<!–から–>の間にある設定を無効化します。

両方のcontext.xml の編集が完了したら、 tomcatを停止・起動します。
※再起動するまで設定は反映されません

ご参考まで。

関連記事

TOP