进入
http://localhost/manager/html
大概这样的界面吗?
Applications 
Path Display Name Running Sessions Commands 
/ Welcome to Tomcat true 0  Start   Stop   Reload   Undeploy   
/admin Tomcat Administration Application true 0  Start   Stop   Reload   Undeploy   
/gsd   true 0  Start   Stop   Reload   Undeploy   
/jsp-examples JSP 2.0 Examples true 0  Start   Stop   Reload   Undeploy   
/manager Tomcat Manager Application true 0  Start   Stop   Reload   Undeploy   
/servlets-examples Servlet 2.4 Examples true 0  Start   Stop   Reload   Undeploy   
/tomcat-docs Tomcat Documentation true 0  Start   Stop   Reload   Undeploy   

解决方案 »

  1.   

    修改文件
    tomcat/conf/tomcat-users.xml<?xml version='1.0' encoding='utf-8'?>
    <tomcat-users>
      <role rolename="tomcat"/>
      <role rolename="role1"/>
      <role rolename="manager"/>
      <role rolename="admin"/>
      <user username="tomcat" password="tomcat" roles="tomcat,role1,admin,manager"/>
      <user username="both" password="tomcat" roles="tomcat,role1"/>
      <user username="role1" password="tomcat" roles="role1"/>
    </tomcat-users>出现登陆提示框时,用tomcat/tomcat登陆不知道是不是这个