• 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

Problem starting Tomcat server

 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have Tomcat5 installed on my system,but not very comfortable with environment variable settings.I am trying to start tomcat server i.e c:\tomcat5\jakarta-tomcat-5.5.9\bin>startup
but I get following error:

The system cannot find the file -Djava.util.logging.manager=org.apache.juli.ClassloaderManager

Any suggestions!

Thanks.
 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi Mishaal
i am also getting same problem,but i able to start server from services.msc.
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i think path is not having in your bin .please set the path jdk and tomcat directory in your bin directory or environment variables
 
Ranch Hand
Posts: 300
Eclipse IDE Oracle Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Your JAVA_HOME is not set correctly, Set it to the location where your java is installed.
 
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

Your JAVA_HOME is not set correctly, Set it to the location where your java is installed.



I doubt that is the problem since Tomcat is at least starting.

I am runing 5.5.9 but ClassloaderManager is not used anywhere.

I do have the following in catalina.bat
-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager

What has been modified from the original install of Tomcat5.5.9? Did somebody fiddle with catalina.bat?

ClassLoaderLogManager lives in the tomcat-juli.jar found in ..\bin of your tomcat home directory. If it is not being found then I suspect you need to set the environment variable CATALINA_HOME.

Bill
[ September 28, 2008: Message edited by: William Brogden ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic