【一】.Tomcat内置角色如下
manager-gui
允许访问 html 图形用户接口与状态页面 (即 URL 路径为 /manager/html/* )
manager-script
允许访问纯文本接口与状态页面 (即 URL 路径为 /manager/text/* )
manager-jmx
允许访问JMX代理接口与状态页面 (即 URL 路径为 /manager/jmxproxy/* )
manager-status
只允许访问 Tomcat 状态页面 (即 URL 路径为 /manager/status/* )
【二】.配置用户文件
修改文件C:\Program Files\apache-tomcat-10.0.22\conf\tomcat-users.xml ,根据自己的实际文件配置
tomcat-users.xml
<?xml version="1.0" encoding="UTF-8"?>
<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"/>
<user username="admin" password="123456" roles="manager-gui"/>
</tomcat-users>
扫描二维码推送至手机访问。
版权声明:本文由高久峰个人博客发布,如需转载请注明出处。
本文链接:https://blog.20230611.cn/post/412.html