Wednesday, March 15, 2023

Tomcat

Tomcat is an Open Source, Java based, Web Application Server.
We can deploy only the WAR files.
In the Tomcat Server we are not able to deploy EAR Files.
In Jboss / Wildfly we can be able to deploy WAR & EAR files.


Application Servers
Tomcat ---------------------------------> Apache
Jboss / Wildfly   ----------------------->RedHat---------> IBM

Webspere Application Server ----------------------------> IBM
Weblogic  -------------------------------> BEA------------> Oracle


Directory Structure
  • bin   
    • startup.sh
    • startup.bat
    • .
    • shutdown.sh
    • shutdown.bat
    • .
    • catalina.sh
    • catalina.bat
    • .
    • Version.sh
    • Version.bat
  • conf
    • Servers.xml
    • Tomcat-Users.xml
  • lib
    • jar files

  • webapps
    • What ever we are goint to store web application.
    • That application are stored in here.

  • work
    • After deploying out application.
    • Application it may generate some files those files are stored in here.

  • logs
    • Catalina.out

  • temp




ln -s /opt/apache-tomcat-10.1.7/bin/startup.sh /usr/bin/startTomcat
ln -s /opt/apache-tomcat-10.1.7/bin/shutdown.sh /usr/bin/stopTomcat






0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home