Invalid server folder (Catalina Home)

An attempt to create a Tomcat-based web application. Cannot install Tomcat folder: enter image description here

Error:

The specified Server Location (Catalina Home) folder is not valid.

enter image description here

How to solve this problem?

+4
source share
3 answers

Netbeans 8.1 does not support Tomcat 9.

Upgrade NetBeans to 8.2 or use Tomcat 8 instead.

+7
source

Try setting environment variables:

PATH: ......C:\Progra..\Java\jdk1.7.0_51
C:\apache-tomcat-7.0.52-windows-x86\apache-tomcat-7.0.52\bin
CATALINA_HOME: F:\apache-tomcat-7.0.52-windows-x86\apache-tomcat-7.0.52
JAVA_HOME: C:\Progra..\Java\jdk1.7.0_51
JRE_HOME: C:\Progra..\Java\jre7

and restart apache after it!

+1
source

To solve this problem in (Netbeans 8.2) , simply add the Apache Tomcat server directory (where you unzipped the Tomcat server)

enter image description here

The catalog that you see in Catalina Home in the picture where I unpacked Tomcat.

Set is also located in the system environment:

enter image description here

Do not add a semicolon to the end

0
source

All Articles