Install Apache Tomcat
1. Go to http://tomcat.apache.org/index.html and download the binary file of Tomcat for the type of OS you are running.
2. Set JRE or JDK installation directory for the environment variable JAVA_HOME.
3. Install downloaded Tomcat file.
* We recommend setting autoDeploy=”false” and liveDeploy=”false” in the server.xml file at Tomcat installation directory/conf/ as below:
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="false" liveDeploy="false" xmlValidation="false" xmlNamespaceAware="false">
or
<Host name="localhost" appBase="webapps"
Optional Settings:
Increas maxThreads
Example: Increas maxThread of Connector in the server.xml file.
<Connector port="8443" protocol="org.apache.coyote.http11.Http11AprProtocol"
maxThreads="1000" SSLEnabled="true" >