Page 1 of 1

How to configure tomcat manager in tomcat 6.

Posted: Sun Apr 28, 2013 9:44 am
by a24uall
SSH to server and open the file /etc/tomcat6/tomcat-users.xml
vi /etc/tomcat6/tomcat-users.xml
Inside that add the below lines
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager"/>
<user username="arun" password="Pass123" roles="manager"/>
</tomcat-users>
That will create the tomcat user as : arun with password "Pass123".
You can access the admin panel using the link :
http://IP_ADDRESS:8080