Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Each WebLogic Server domain contains a central configuration file called the config.xml, which is stored in the DOMAIN_HOME\config directory. Both the Admin Server and the Managed Servers derive their run-time configuration information from the config.xml file. In addition to the config .xml file, there are subsidiary configuration files. Note that each server in a domain maintains its own copy of the domain configuration documents. Here's an excerpt from a domain's configuration file, config.xml:
<domain xsi:schemaLocation="http://xmlns.oracle.com/weblogic/security/wls - <name>My_domain</name> <default-realm>myrealm</default-realm> <server> <name>My_AdminServer</name> <machine>My_Machine_1</machine> <server> <name>My_ManagedServer_1</name> <machine>My_Machine_1</machine> <listen-port>7003</listen-port> <listen-address /> </server> <name>My_domain</name> <configuration-version>10.3.4.0</configuration-version> <machine> <name>My_Machine_1</name> <node-manager> <name>My_Machine_1</name> <listen-address>localhost</listen-address> </node-manager> </machine> <admin-server-name>My_AdminServer</admin-server-name> </domain>