发布网友 发布时间:2022-04-11 22:34
共4个回答
懂视网 时间:2022-04-12 02:55
先进入manager所在目录
[root@localhost tomcat]# cd webapps/manager/WEB-INF/
查看 web.xml
[root@localhost WEB-INF]# more web.xml
HTML Manager interface (for humans) /html/* 对应:http://localhost:8080/manager/htmlmanager-gui 定义了访问这个页面的角色名:manage-guiText Manager interface (for scripts) /text/*manager-script JMX Proxy interface /jmxproxy/*manager-jmx Status interface /status/* 对应:http://localhost:8080/manager/statusmanager-gui manager-script manager-jmx manager-status
进入host-manager所在目录
[root@localhost tomcat]# cd webapps/host-manager/WEB-INF/
查看 web.xml
[root@localhost WEB-INF]# more web.xml
HTMLHostManager commands /html/* 对应:http://192.168.14.219:8080/host-manager/htmladmin-gui 定义了管理角色名称
The role that is required to log in to the Host Manager Application HTML interface admin-gui The role that is required to log in to the Host Manager Application text interface admin-script
编辑Tomcat用户配置文件,添加角色
[root@localhost tomcat]# vi conf/tomcat-users.xml
that surrounds them. --> --> 这里有个注释符号去掉,是下面的生效
重启 tomcat
[root@localhost tomcat]# ./bin/shutdown.sh
[root@localhost tomcat]# ./bin/startup.sh
总结:
虚拟目录/WEB-INF/web.xml一般定义了访问这个目录的安全角色名称,得知这个安全角色名称后便可在conf/tomcat-users.xml添加对应的访问角色,获得访问权限。(于是这里也是个黑客可以利用的后门。。。)
热心网友 时间:2022-04-12 00:20
e Status report message /- description The requested resource (/) is not available、、热心网友 时间:2022-04-12 01:54
付费内容限时免费查看回答造成HTTP Status 404一般是以下3种原因导致的:1、所访问网站的服务器问题,用户所访问的网站对应的服务器网页已被删除或者修改,也可能是用户所访问的网站服务器没有部署Web服务器应用,导致服务器未能响应用户的请求,所以网站会返回404错误状态码。
2、所访问网站的URL问题,这是因为用户输入的网站地址链接错误或者输入了不存在的网站的网址。也可能是所访问的网站的域名服务到期,网站管理者没有续费,导致该网址失效,从而使得浏览器无法找到对应的网络资源,造成HTTP Status 404错误。
希望我的解答可以帮助到您亲
热心网友 时间:2022-04-12 03:46
打不开,是什么原因。