HTTP Status 404 Tomcat Apache

I will be honest, I have never used this before, I'm just trying to install it correctly. I start windows 7 and I have jre 6 and 7. I go to system properties, environment variables and enter a new system variable: JRE_HOME C: \ Program Files (x86) \ Java \ jre7. I run startup.bat and switch to localhost: 8080 / "and I get

HTTP Status 404 - /%E2%80%9D type Status report message /%E2%80%9D description The requested resource is not available. Apache Tomcat/7.0.47 

Help will be absolutely amazing.

+7
tomcat apache
source share
3 answers

This is a problem with tomcat and catalina config files :

what you need to do is simply:

  • right click on server tomcat in eclipse
  • click on properties
  • the location of the click switch in the navigation bar will appear a small server.
  • double click on it after starting your server.
  • Then choose to use Tomcat and save

this will solve this common 404 problem.

+10
source

HTTP Status 404 - /% E2% 80% 9D

What is /%E2%80%9D ? First try running it with root '/'

To configure tomcat, you need to follow these steps.

  • Extract tomcat to some directory. Make sure you have read / write permissions in this directory.
  • Make sure Java is installed on the system. (run java -version on the console and you should get the java version on your system).
  • Run startup.bat, a command line will open showing all the logs containing a clean start in XXseconds
  • Then open the URL in the browser http://localhost:8080/ and you will see the default Tomcat7 page loaded.
0
source

I got this problem in my application. And I allowed her. I changed server.xml in the Server.I folder should see the tag in server.xml

-one
source

All Articles