javajakarta-eeweblogicapplication-serverbea

What is and what do a WebLogic Server domain?


I am a Java developer and I am pretty new in web application development using Java and I have the following doubts.

We are developing web app deployed on Oracle WebLogic Server.

What exactly is the weblogic domains? From what I understand each application use a definied domain. But what it exactly does?


Solution

  • From Oracle documentation:

    A domain is the basic administrative unit of WebLogic Server. It consists of one or more WebLogic Server instances, and logically related resources and services that are managed, collectively, as one unit.

    Weblogic Domain img

    So it's an administrative container, you should think of the following: 1 domain equals 1 Administration Server.

    The Administration Server:

    A domain includes one WebLogic Server instance that is configured as an administration server. All changes to configuration and deployment of applications are done through the administration server.

    The administration server provides a central point for managing the domain and providing access to the WebLogic Server administration tools. These tools include the following:

    • WebLogic Server Administration Console: Graphical user interface to the administration server.

    • WebLogic Server Node Manager: A Java program that enables you to start and stop server instances—both administration servers and managed servers—remotely, and to monitor and automatically restart them after an unexpected failure.

    • Note that the node manager is installed on all the machines that host any server instance – both administration server and managed servers.