Posts

How to set up Tomcat 7 and run Python CGI scripts on Linux

What is Apache Tomcat : Apache Tomcat is an open-source web server and servlet system developed by the Apache Software Foundation (ASF). How to Download Tomcat 7.0.68 For Linux :  wget https://archive.apache.org/dist/tomcat/tomcat-7/v7.0.68/bin/apache-tomcat-7.0.68.tar.gz    How to Install Tomcat : The Installation is easy and one step process .  Run the below command to install tomcat : tar -xvzf apache-tomcat-7.0.68.tar.gz All the key config files can be found in the conf directory underneath the home directory of  Tomcat , and some of the most important ones are: server.xml - This is the main config file for Tomcat and contains the settings for most of the key Tomcat components. context.xml - This is a global config file used by all web apps running on Tomcat. If you wish to override the global settings you should create your own context.xml file and place it in the META-INF directory of your web app. web.xml - This is the global deployment descriptor used by a
Recent posts