Reputation: 18712
I
tomcat-users.xml
following line: <user name="tomcat-admin" password="mypassword" roles="manager,admin" />
and http://myhost:8080/manager
.This didn't work - I got the 404
error message. http://myhost:8080/manager/html
doesn't work, either.
Then I looked into the directory var/lib/tomcat6/webapps
and found no manager
directory there (see below).
What is the correct way to install the Tomcat6 manager application in EC2 linux?
Upvotes: 7
Views: 17917
Reputation: 18712
I fixed the problem by removing Tomcat 6 and installing Tomcat 7 according to this tutorial using following command line statement:
sudo yum install tomcat7-webapps tomcat7-docs-webapp tomcat7-admin-webapps
Upvotes: 11