• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

/admin not accessible in tomcat 5.5

 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I installed tomcat 5.5 and then separately downloaded admin application zip for 5.5. I copied conf\Catalina\localhost\admin.xml and the admin folder under the webapps. Still I am getting the error when I try to access the url thru' http://localhost:8080/admin/.

The error I see is "The requested resource (/admin/) is not available."

On googling I checked web.xml. There nothing seems to be wrong. Also the admin context is visible thru' http://localhost:8080/manager/. any suggestions?
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
On my Tomcat 5.5, admin is under the directory:
TOMCAT\server\webapps\
which also has the "manager" directory, instead of the
TOMCAT\webapps
directory where the standard distribution puts web apps.

Also my tomcat-users.xml file defines an "admin" role.

Bill
 
Padmanabh Sahasrabudhe
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It resolved the issue. Thanks!
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic