• 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

Why Server Tomcat v8.0 Server at localhost failed to start in Windows from Eclipse

 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I am quit frustrated. I an using windows 8 64 bit, Eclipse Mars. Trying to learn J2EE. The tomcat was working properly but suddenly it start to show the message

Server Tomcat v8.0 Server at localhost failed to start.

Step 1 : Then i removed the server and reset it. Then i deleted the eclipse and its "workspace" directory. I deleted the tomcat installation folder. I also deleted all the files related to eclipse from app data.

Again i started to use eclipse by Extracting it from the zip file that was downloaded into my hard disk.I also extracted again the tomcat server from the zip file that was downloaded in my hard disk. Then it was working well but suddenly it started to show the same fail message for tomacat. Then i googled and found a solution



Find the bellow configuration in your catalina.bat :

noJuliConfig
set "JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG%"
:noJuliManager
set "JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER%"

Just remove the double quotes

:noJuliConfig
set JAVA_OPTS=%JAVA_OPTS% %LOGGING_CONFIG%
:noJuliManager
set JAVA_OPTS=%JAVA_OPTS% %LOGGING_MANAGER%



I have done this but no change.The problem with tomcat remains.

Then i again do step 1. Then it was working for sometimes and again started to show to the same problem. I have repeated step 1 and applied the googled solution for several times, but unable to solve.
 
Bartender
Posts: 1810
28
jQuery Netbeans IDE Eclipse IDE Firefox Browser MySQL Database Chrome Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Forget about Eclipse for now. You should be able to run Tomcat with out even having Eclipse installed. Look in the tomcat/bin folder and you should find startup.bat. Run that and see what messages you get.
 
reply
    Bookmark Topic Watch Topic
  • New Topic