apache-tomcat-10.0.0-M8 を設定しているのですが、
http://localhost:8080/には入れるのですが、
管理画面の
http://localhost:8080/manager/html
にUSERIDとPASSをはじかれてログインできません。
各ファイルには以下を設定しました。
何か設定が足りないでしょうか?
tomcat-users.xml**
<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"> <role rolename="manager-gui"/> <role rolename="manager-script"/> <user username="manager" password="s3cret" roles="manager-gui,manager-script"/> </tomcat-users>
server.xml
<Connector port="9009" protocol="AJP/1.3" redirectPort="9443" address="192.168.56.1" useIPVHosts="true" />
context.xml
<Connector port="9009" protocol="AJP/1.3" redirectPort="9443" address="192.168.56.1" useIPVHosts="true" />
[tomcat-install-dir]/webapps/manager/META-INF/context.xml***
<Context antiResourceLocking="false" privileged="true" > <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="192.168.56.1|127.\d+.\d+.\d+|::1|0:0:0:0:0:0:0:1" /> ←追加した行 <Manager sessionAttributeValueClassNameFilter="java.lang.(?:Boolean|Integer|Long|Number|String)|org.apache.catalina.filters.CsrfPreventionFilter$LruCache(?:$1)?|java.util.(?:Linked)?HashMap"/> </Context>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。