Tomcat6 Manager Webapp is 404 on apt-get install on Ubuntu 10.10
Posted
by
Noel
on Server Fault
See other posts from Server Fault
or by Noel
Published on 2011-03-17T21:59:24Z
Indexed on
2011/03/18
0:12 UTC
Read the original article
Hit count: 1091
http://localhost:8080/manager/html gives a 404 error on apt-get install of tomcat6 (6.0.28 on JVM 1.6.0_20-b20 on 2.6.35-27-generic amd64).
http://localhost:8080/host-manager/html works. Lists one Host name, localhost.
cat /usr/share/tomcat6/conf/tomcat-users.xml
<tomcat-users>
<role rolename="admin"/>
<role rolename="manager" />
<user username="tomcatuser" password="Password1" roles="admin,manager"/>
</tomcat-users>
cat /usr/share/tomcat6/conf/Catalina/localhost/manager.xml
<Context path="/manager"
docBase="/usr/share/tomcat6-admin/manager"
antiResourceLocking="false" privileged="true" />
<role name="manager" />
<user name="manager" password="Password1" roles="manager" />
<user name="tomcatuser" password="Password1" roles="manager" />
Those two files are the only documentation I've seen on how to setup the Manager webapp, and they seem to be compliant with the requirements.
© Server Fault or respective owner