Issue
I have a problem regarding the installation of Apache-Tomcat. I've downloaded the Zip-File Picture Download Page , unpacked it and saved it, set the environmental variables JAVA-HOME (set the value to jdk) , JRE_HOME (set the value to jre) and CATALINA_Home (set to apache tomcat) but it doesn't seem to work. After starting startup.bat with cmd.exe, following occurs: Picture Startup.bat Typing localhost:8080 into the browser, following occurs: Localhost Error 404 and Localhost 500
Solution
From the error messages in your screenshot, I would think that tomcat wants to create subdirectories but does not have the required rights. c:\Porgram Files\ can only be written with administrative rights, so you could test it (but only test it) to start it with administrative rights (e.g. open the cmd windows with administrative rights).
If that solves the issue: Do not run tomcat as administrator. Instead grant full access to the folders required (I think it is mainly temp, work and logs folder that tomcat has to write to.)
Answered By - Konrad Neitzel