Display the Tomcat Manager Application?

后端 未结 7 847
闹比i
闹比i 2020-12-20 11:17

using this tutorial http://www.eclipse.org/birt/phoenix/deploy/viewerSetup.php#install_viewer

And it tells me to display the Tomcat manager application through this

相关标签:
7条回答
  • 2020-12-20 12:01
    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
    0 讨论(0)
提交回复
热议问题