Tuesday, June 3, 2008

Manager Application of Tomcat

Manager Application is a special web application that allows you to manage other web applications while the Tomcat server is running. You can, for example, deploy, undeploy, start, and stop web applications on the server using this tool.

To enable it on Tomcat 6.x, you need add a user with the manager role to this file "\conf\tomcat-users.xml"

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

Save the file, restart the tomcat.

Here is the url to visit the manager application
http://localhost:8080/manager/html

No comments:

Post a Comment