How to configure tomcat in windows 7? [closed]

3

How to configure Tomcat 7 on windows 7?

Do I need to configure java environment variables?

    
asked by anonymous 26.08.2015 / 18:01

1 answer

1

Old scheduler ,

To configure Tomcat in a windows environment, follow these steps:

Download of Tomcat 7

Download for Java + JDK (if you're going to develop )

Java Configuration

Installing Java does not have much secret, choose the location you want and install it. After the end it is necessary to indicate where it is installed for windows:

  

My computer > properties > advanced system settings >   environment variables > new:

Variablename:JAVA_HOME

Variablevalue:Thepathwhereitisinstalled.

TomcatConfiguration

Generallyformytestsinstallasaserviceonwindows,butifyoupreferjustunzipthefileandplacewhereyouwant.Choosetheportsthattomcatwilluse,thedefaultisusually8080butyoucanchangethisintomcatmanager.

Tomcatalsoneedstobeplacedinenvironmentvariables,followthesamestepsuntilyougettoenvironmentvariablesandclicknew:

Variable name: CATALINA_HOME

Variable value: path to the tomcat7 folder

With this your Tomcat can already run normally in the windows environment, remembering that the configuration is the same for windows xp,vista,7,8 e 8.1

    
26.08.2015 / 18:58