web-dev-qa-db-ja.com

Tomcat 7マネージャー-認証方法

Tomcatマネージャーアプリにログインしようとしていますが、Tomcat-users.xmlにログインユーザーを正常に作成できません。初期コンテンツはこれでした:

<?xml version="1.0" encoding="UTF-8"?>
<!--
  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>
<!--
  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.
-->
<!--
  NOTE:  The sample user and role entries below are wrapped in a comment
  and thus are ignored when reading this file. Do not forget to remove
  <!.. ..> that surrounds them.
-->
<!--
  <role rolename="Tomcat"/>
  <role rolename="role1"/>
  <user username="Tomcat" password="Tomcat" roles="Tomcat"/>
  <user username="both" password="Tomcat" roles="Tomcat,role1"/>
  <user username="role1" password="Tomcat" roles="role1"/>
-->
</Tomcat-users>

公式ページ を読んで、このようにファイルを変更しましたが、結果はありませんでした。

<?xml version="1.0" encoding="utf-8"?>
<Tomcat-users>
  <role rolename="manager-gui"/>
  <role rolename="manager-status"/>
  <role rolename="manager-script"/>
  <role rolename="manager-jmx"/>
  <user username="admin" password="admin" roles="manager-gui"/>
</Tomcat-users>
18
Jack Willson

これは正しい構成のようです。役割をスペースで区切らないように注意してください!

<?xml version="1.0" encoding="UTF-8"?>
<Tomcat-users>  
  <role rolename="manager-gui"/>
  <role rolename="manager-script"/>
  <role rolename="manager-jmx"/>
  <role rolename="manager-status"/>
  <role rolename="admin-gui"/>
  <role rolename="admin-script"/>
  <user username="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-gui,admin-script"/>
</Tomcat-users>
28
Jack Willson

受け入れられた答えは詳細には間違っていますが、非常に重要なものです-このリストはカンマで区切られる必要があるため、管理者の役割の間にスペースを入れてはいけません(ここで指摘したように Tomcat 7 Managerはログインできません )。私はちょうど同じ問題を抱えていて、同じ方法で解決しました。

したがって、これの代わりに(いくつかの回答で示唆されているように:

<user username="admin" password="admin" roles="manager-gui, manager-script, manager-jmx, manager-status, admin-gui, admin-script"/>

次のようになります。

  <user username="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-gui,admin-script"/>

したがって、全体として次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<Tomcat-users>
  <role rolename="manager-gui"/>
  <role rolename="manager-script"/>
  <role rolename="manager-jmx"/>
  <role rolename="manager-status"/>
  <role rolename="admin-gui"/>
  <role rolename="admin-script"/>
  <user username="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-gui,admin-script"/>
</Tomcat-users>
8
Nenad Bulatovic

クロスサイトスクリプティング保護が危険にさらされるため、manager-guiロールをmanager-scriptロールまたは-jmxロールと組み合わせないでください。最後の管理者ロールは、guiロールのように保護できません。

6
Tilman

Confフォルダーのserver.xmlでデータベースレルムを構成しましたか?デフォルトのserver.xmlにはUserDatabaseリソースが既にセットアップされているため、Tomcat-user xmlのセットアップ方法に関係なく変更すると、認証できなくなります。

Conf/server.xmlファイルで... GlobalNamingResourceタグで、MemoryUserDatabaseFactoryを使用するリソースを定義し、エンジン内でUserDatabaseRealmを使用するレルムを定義します。元のserver.xmlを開いて(Tomcat 7.0.62を使用しています)、これらの名前を検索すると、構成が表示されます。アプリとニーズに基づいて、追加の変更が必要になる場合があります。

2
Denise

この機能にアクセスするには、マネージャーロールユーザーを追加します。この編集についてTomcat-users.xmlのファイルApache-Tomcat-7.0.56-windows-x64\Apache-Tomcat-7.0.56\conf uがWindows上にある場合。検索する <role rolename= >行。これはおそらくコメントされるでしょう。このコードを追加:-

<role rolename="manager-gui"/>
<user username="your-user-name" password="your-password" roles="manager-gui,manager-script"/>
0
viper