PATHS

 
PATHS
Weblogic Directory Structure:

/apps/oracle/weblogic10.3.6/user_projects/domains/raghu_domain
||
bin
config
lib
security
servers
startWebLogic.sh
tmp

/apps/oracle/weblogic10.3.6

||
coherence_3.7
domain-registry.xml
logs
modules
user_projects
utils
wlserver_10.3

<
/apps/oracle/weblogic10.3.6/wlserver_10.3/common/bin

ll
commEnv.sh
config.sh
pack.sh
unpack.sh
upgrade.sh....etc
/apps/oracle/weblogic10.3.6/wlserver_10.3/server/bin

ll
setWLSEnv.sh
startNodeManager.sh
/apps/oracle/weblogic10.3.6/wlserver_10.3/uninstall

ll
uninstall.sh
wls_uninstall.xml


/apps/oracle/weblogic10.3.6/wlserver_10.3/common/quickstart
||
images
quickstart.sh
resources
wls_qsConfig.xml

/apps/oracle/weblogic10.3.6/wlserver_10.3/common/nodemanager

||
nm_data.properties
nodemanager.domains
nodemanager.log
nodemanager.log.1
nodemanager.properties

/apps/oracle/weblogic10.3.6/wlserver_10.3/common/lib

||
upgrade.sh

/apps/oracle/weblogic10.3.6/logs
||
log.txt

/apps/oracle/weblogic10.3.6/utils/uninstall
||
uninstall.sh


/apps/oracle/weblogic10.3.6/utils/bsu

||
bsu.sh

========================================== Tomcat Directory Structure:

/apps/tomcat/current
bin
conf
lib
logs
temp
webapps
work

/apps/tomcat/current/bin

||
startup.sh
shutdown.sh
setclasspath.sh
version.sh
digest.sh
daemon.sh
configtest.sh
catalina.sh

/apps/tomcat/current/conf

ll
catalina.policy
catalina.properties
context.xml
logging.properties
server.xml
tomcat-users.xml
web.xml

/apps/tomcat/current/lib

||
/apps/tomcat/current/logs


/apps/tomcat/current/webapps

||
docs
examples
host-manager
manager
ROOT

TOMCAT


bin
conf
lib
logs
temp
webapps
work

bin


startup.sh --> To Start the tomcat instance.
    - shutdown.sh --> To Shutdown the tomcat instance.
    - catlaina.sh -> We can use/customize this to stop/start/status for tomcat.
    - version.sh --> It shows the tomcat version (Java should have been set to execute this command.)

conf

tomcat-users.xml --> This file contains the user details, roles. We can create an user and provide access to the user by defining roles and configuring the password for that user.

 - server.xml --> It will have the connector port and redirect port information along with the host/instance details. It will also have the access log configuration information, we can customize it.
 - logging.properties --> It will have the logging information (eg: Log levels, logging framework eg: JULI) 
 - catalina.properties --> Depends on the usage we will use this file, check the file for more information.
 - catalina.policy --> It will have the general policy for catalina.
 - web.xml --> It is actually a deployment descriptor, we use this to configure the MIME Types, loggin info, etc. Check the file for more details.
        - context.xml --> This is the file we use to create the Data Sources.

webapps

Root
 

We will place the applications here (.war files)

Note: When we restart the tomcat instance, it will create a folder structure of the application deployed.

eg: calendar.war

    calendar --> (This is an exploded format).

logs


Tomcat logs will be appeared here. eg: catalina.out --> It will have the log information, it will create when we start the tomcat instance.

temp

It will be empty when we install & configure tomcat
temp/Catalina/localhost --> This folder structure will be created when we deploy applications and restart/start the tomcat.

work

It will be empty when we install & configure tomcat work/Catalina/localhost --> This folder structure will be created when we access application after the deployment.

Comments

Popular posts from this blog

Bsu

linux

Domain