您的位置:首页 > 运维架构 > Tomcat

tomcat-users.xml配置Manager登陆用户

2017-09-14 09:21 447 查看
添加用来登陆tomcat-manager的用户

<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="manager-gui"/>
<role rolename="manager-script"/>

<user username="manager" password="manager" roles="manager-gui,manager-script"/>
</tomcat-users>


 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: