Link to home
Start Free TrialLog in
Avatar of kuching
kuching

asked on

Tomcat 5.5.15 - Manager/html

anyone is using this tomcat 5.5.15 so far?

I wonder what is this message prompt when i click on the Tomcat Manager link on the left frame or issues this url : http://localhost:8080/manager/html

i will have this message...

type Status report

message /manager/html

description The requested resource (/manager/html) is not available.

Apache Tomcat/5.5.15

* do i need to download another package like how i did on the admin?
Avatar of Mick Barry
Mick Barry
Flag of Australia image

yes, Adminitration webapp

http://tomcat.apache.org/download-55.cgi
Avatar of kuching
kuching

ASKER

sorry, i manage to sovled it..

**
To enable access to the Manager web application, you must either create a new username/password combination and associate the role name manager with it, or add the manager role to some existing username/password combination. Exactly where this is done depends on which Realm implementation you are using:

**
think i havent create a user with amnager role.
haha
Avatar of kuching

ASKER

sucks.. i added this... in the /conf/tomcat-user.xml but it;s still didnt work....

..
..
<user username ="abc" password="password" roles="admin, manager"/>
..
..
Avatar of kuching

ASKER

done..

There are two ways to configure the Manager web application Context:

    * Install the manager.xml context configuration file in the $CATALINA_HOME/conf/[enginename]/[hostname] folder.
    * Configure the Manager Context within the Host configuration in your Tomcat server.xml configuration. Here is an example:

<Context path="/manager" debug="0" privileged="true"
         docBase="/usr/local/kinetic/tomcat5/server/webapps/manager">
</Context>

If you have Tomcat configured to support multiple virtual hosts (websites) you would need to configure a Manager for each.
ASKER CERTIFIED SOLUTION
Avatar of CetusMOD
CetusMOD
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial