cancel
Showing results for 
Search instead for 
Did you mean: 

Tomcat manager problems

alexbromo
Confirmed Champ
Confirmed Champ
Recently i installed the last Alfresco package in my W2003 Server using the AlfrescoCommunity-1.4-Setup.exe.

The server seems to run well and the Alfesco appliance works correctly, but i have some problems with Tomcat: after point the http://localhost:8080 i can see the Tomcat's homepage but if i try to go to the Status or Tomcat Manager link, after logon appears the error page HTTP Status 403 "Access to the specified resource (Access to the requested resource has been denied) has been forbidden."

Where is the problem ?

Alex -
1 REPLY 1

alexbromo
Confirmed Champ
Confirmed Champ
Problem solved.

I've discovered taht tomcat-users.xml should include one more role, 'admin'..e.g.

<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="admin"/>
<role rolename="manager"/>
<role rolename="tomcat"/>
<user username="admin" password="secret" roles="manager,admin"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="both" password="tomcat" roles="tomcat"/>
</tomcat-users>

Now the admin interface is accessible Smiley Surprisedops:

Alex -