tomcat学习(二)为tomcat开启用户管理功能
程序员文章站
2022-04-26 10:01:42
...
1、修改conf/tomcat-users.xml
添加用户和角色
<role rolename="manager-gui"/>
<role rolename="admin-gui"/>
<user username="tomcat" password="s3cret" roles="manager-gui,admin-gui"/>
重启tomcat
systemctl restart tomcat
2、登陆
默认只能在本机使用管理功能,在tomcat所在本机访问localhost:[port]
使用框内的各个功能,使用配置的用户"tomcat"登陆即可
3、配置远程使用
修改webapps/manager/META-INF/context.xml
注释Valve配置的地址限制
<Context antiResourceLocking="false" privileged="true" >
<!--<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="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>
systemctl restart tomcat
这样管理界面就可以远程访问了
上一篇: 聊聊用户裂变的那些事
下一篇: 聊聊ThreadLocal那些事