Display the Tomcat Manager Application?

Viewed 34474
7 Answers
  1. Right Click On Apache Tomcat
  2. Select Open
  3. Go to Server Locations Tab
  4. Select use tomcat installation
  5. Goto the installation directory
  6. Edit apache-tomcat-8.0/conf/tomcat-users.xml
  7. Add the below users in the xml file

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

  8. Copy tomcat-user.xml file in eclipse workspace server's tomcat directory

  9. Now open tomcat manager page http://localhost:/manager/html/
  10. Use username and password tomcat and manager page will open on your browser
Related