のWindows 7 TomEE-プルーム1.7.4(ローカル) のFedora 23 TomEE-プルーム1.7.4(リモート) Firefoxの46tomcat-users.xmlが無視されるのはなぜですか?
http://localhost:8080 http://192.168.0.100
のApache Tomcat(TomEE(リモートのFedora 23の) )/7.0.68(1.7.4)ページは、ローカルインスタンスとリモートインスタンスの両方で正常に動作します。
私はTomEEのドキュメントとインターネット検索を読んでデューデリジェンスを行っています。
次のいずれかのボタンがクリックされると、ローカルWindowsインスタンスでブラウザがページに直接移動します。しかしTomEEのリモートインスタンスで同じボタンを押すと小さなサインオンダイアログがポップアップします。 tomcat-users.xmlファイルには1つのユーザーIDしかありません。ユーザーIDとパスワードが使用されると、アクセスは拒否されます。 TomEE-plumeを実行するために使用されたFedora IDは "nologin"として設定されるべきであると私は理解していました。
質問1)TomEEプルームを実行するために使用されるFedora IDは "nologin"として設定する必要があります。 質問2)tomcat-users.xmlのidが動作しないのはなぜですか?
<?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"/>
-->
<!-- Activate those lines to get access to TomEE GUI -->
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-status"/>
<role rolename="manager-jmx"/>
<user username="tomee" password="mypassword" roles="manager-gui,manager-script,manager-status,manager-jmx" />
</tomcat-users>
tomcat-users.xmlファイルは起動時にのみ読み込まれるようです。一度リサイクルされるとすべてが働いた。 – paulhr