• 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

help in starting tomcat..

 
Ranch Hand
Posts: 135
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI.. can anyone help me out in setting the environment variables of tomcat..
I typed the following lines in autoexec.bat:
set path=%path%;c:\j2sdk1.4.2_01\bin;
set classpath=%CLASSPATH%;c:\program files\apache group\tomcat 4.1\common\lib\servlet.jar;
SET JAVA_HOME=c:\j2sdk1.4.2_01
SET TOMCAT_HOME=c:\program files\apache group\tomcat 4.1
SET CATALINA_HOME=c:\program files\apache group\tomcat 4.1
I went to the system settings in control panel and set up the java_home, tomcat_home and catalina_home environment variables.
But when i try to run tomcat from the start menu it gives an error that c:\j2sdk1.4.2_01\bin not found..
where could be the problem?
thx..
jyotsana
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
set path=c:\j2sdk1.4.2_01\bin;%CATALINA_HOME%\bin;
set classpath= %CATALINA_HOME%\bin;C:\j2sdk1.4.1_02\bin;C:\j2sdk1.4.1_02\jre\lib\ext\servlet-api.jar;
SET JAVA_HOME=c:\j2sdk1.4.2_01
SET TOMCAT_HOME=c:\program files\apache group\tomcat 4.1
SET CATALINA_HOME=c:\program files\apache group\tomcat 4.1
try this ..
 
reply
    Bookmark Topic Watch Topic
  • New Topic