为了账号安全,请及时绑定邮箱和手机立即绑定

tomcat查看后台管理怎么设置用户名和密码.我这边没法查看,然后报401,没权限

54741442000185b005000316.jpg

求对策

正在回答

15 回答

<?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 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">
<!--
  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. It is
  strongly recommended that you do NOT use one of the users in the commented out
  section below since they are intended for use with the examples web
  application.
-->
<!--
  NOTE:  The sample user and role entries below are intended for use with the
  examples web application. They are wrapped in a comment and thus are ignored
  when reading this file. If you wish to configure these users for use with the
  examples web application, do not forget to remove the <!.. ..> that surrounds
  them. You will also need to set the passwords to something appropriate.
-->
<!--
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
  <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
  <user username="role1" password="<must-be-changed>" roles="role1"/>
-->
  <role rolename="manager-gui"/>
  <role rolename="manager-script"/>
  <role rolename="admin-gui"/>
  <role rolename="manager-jmx"/>
  <role rolename="manager-status"/>
  <user username="tomcat" password="123456" roles="manager-status"/>
</tomcat-users>


0 回复 有任何疑惑可以回复我~
#1

qq_阿良_5

step1. 修改conf目录下的tomcat-users.xml文件内容如上 step2. 重启tomcat step3. 再次进入server status页面,输入用户名和密码分别为:tomcat/123456 即可
2016-11-23 回复 有任何疑惑可以回复我~
#2

慕粉1851516597

试了这么多,就你的可以用。多谢大神
2017-02-10 回复 有任何疑惑可以回复我~

在tomcat-users.xml中配置账号密码后,记得重启tomcat,修改的东西才有效

0 回复 有任何疑惑可以回复我~

为什么设置好了用户名和密码之后可以进入后台,但再次重启tomcat用户名就登录不上了?失效了!!!                tomcat-users.xml里面也没有了刚刚的配置!

0 回复 有任何疑惑可以回复我~

.o0.0o.  哈哈 谢谢

0 回复 有任何疑惑可以回复我~

O(∩_∩)O非常感谢!~

0 回复 有任何疑惑可以回复我~
<?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="manager-gui"/>
<user username="tomcat" password="tomcat" roles="manager-gui"/>
<!--
  <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"/>
-->
</tomcat-users>


4 回复 有任何疑惑可以回复我~
#1

qq_韶华易逝_1

谢谢了
2016-04-28 回复 有任何疑惑可以回复我~

<role rolename="manager-gui"/>
<user username="tomcat" password="123" roles="manager-gui"/>

直接在tomcat-user.xml文件中的<tomcat-users></tomcat-users>之间加入上面这一句即可,这句话的意思是吧用户名设置为tomcat,密码设为123。

不要把<!-- -->这个符号去掉,这里是注释,举例说明你可以把名字密码设置为各种类型。


1 回复 有任何疑惑可以回复我~
#1

Refactor易先生

亲,按照你的方法进去输入密码还是不行。。。。。。。。。。
2015-10-14 回复 有任何疑惑可以回复我~
#2

鲜衣 回复 Refactor易先生

我的全文是这样的。你看下一条回答。
2015-10-14 回复 有任何疑惑可以回复我~

我只加了一个角色manager-gui就可以访问了,role="admin-gui"是什么意思,也是系统里内置的么?@诺颜宁

0 回复 有任何疑惑可以回复我~
#1

xingoo

manager-gui - Allows access to the html interface manager-gui是使用户具有 页面登录管理 的权限,所以仅仅设置这一个角色 就可以了。至于上面提供的admin-gui猜想是自定义的角色吧
2015-03-21 回复 有任何疑惑可以回复我~
#2

小小鸟002

我也觉得奇怪,以为只有admin就可以,但是还要加一个gui才行
2015-05-02 回复 有任何疑惑可以回复我~

非常感谢,已成功.

0 回复 有任何疑惑可以回复我~
#1

qq_XXIT郁_0

怎么弄好的?教教我……
2016-02-03 回复 有任何疑惑可以回复我~

打开Tomcate安装文件中的conf文件夹,之后打开tomcat-users.xml文件,在<tomcat-users></tomcat-users>的标签之间j加入一下代码,此时你的用户名和密码是admin,这样就可以实现你想要的了

54752dc800010a8b05000045.jpg

1 回复 有任何疑惑可以回复我~
#1

无计留春住 提问者

谢谢啦.
2014-11-26 回复 有任何疑惑可以回复我~
#2

human123

<!-- <role rolename="tomcat"/> <role rolename="role1"/> <user username="admin" password="admin" roles="admin-gui,manager-gui"/> 我按你这样子改了之后 输入用户名还有密码 但是还是不行
2015-04-10 回复 有任何疑惑可以回复我~
#3

小小鸟002 回复 human123

你那个注释符号应该没有取消吧? <!---第一行的这个是注释符
2015-05-02 回复 有任何疑惑可以回复我~
#4

嗨糊萝卜 回复 human123

user 后面的roles写的不对 ,要跟role 的rolename相同
2016-11-23 回复 有任何疑惑可以回复我~
#5

慕粉13212751343 回复 小小鸟002

改后要重启服务器
2017-05-17 回复 有任何疑惑可以回复我~
查看2条回复
首页上一页12下一页尾页

举报

0/150
提交
取消

tomcat查看后台管理怎么设置用户名和密码.我这边没法查看,然后报401,没权限

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信