Weblogic study summary (three) - to create, configure and start the Managed server

  WebLogic Server domain is always only one management server . This particular instance of WebLogic server is responsible for configuration of the entire domain. Other servers in the domain are called managed servers, which are usually a server running the application . Domain can contain any number of managed servers.

Oracle WebLogic Server domain a properly configured, contain a management server and the following settings:

Domain directory

Administration Server listen address and port number

Domain administrator credentials: specify when you create a domain user name and password.

First, create a managed server

To create a managed server within the domain, the following steps:

1, if the domain management server is not already running, start it, that started startWebLogic.cmd

2, after the management server is running, access the WebLogic Server Administration Console, that http: // localhost: 7001 / console

3. In the left pane of the console, expand Environment in the domain structure, and then select Servers.

  On the Servers page, you can view all server-defined domain.

  To create a managed server or domain configuration change anything, you must first lock the domain configuration (to prevent other accounts to make changes during your editing session) and enable editing session.

4, in the "Change Center", click "Lock and edit."

5. In the Servers table, click New.

  Enter the desired new server properties, namely Server Name: Managedserver_1 and Server Listen Port: 7003

6, in the "Change Center", click "Activate Changes."

Second, the configuration server hosting

Configure managed server, the following steps:

1, on the Servers page, select a server hosting a Managedserver_1.

2, in the "Change Center", click "Lock and edit."

3, is provided at server1, Logging selection, and select General.

4, change the file size of the scroll 7500. This will increase the size of the server log file before creating a new log file.

 5. Click Save.

6, in the "Change Center", click "Activate Changes."

Third, start the managed server

Start the managed server, the following steps:

1, run managed server startup script that starts startManagedWebLogic.cmd the bin directory under the domain directory

  Note: Running startManagedWebLogic.cmd, requires two parameters: URL name and server management to start hosting server

  startManagedWebLogic.cmd Managedserver_1 http://localhost:7001

2, the terminal waits for the output message:

  <Aug 23, 2018 9:57:34,722 AM EDT> <Notice> <WebLogicServer> <BEA-000360> <The server started in RUNNING mode.>
  <Aug 23, 2018 9:57:34,817 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING.>

3. Repeat steps 1 and 2 to start the other managed servers.

4, in the Administration Console

  If you need to log in again, please sign in again

  Expand the "environment" in the "domain structure", and then select the "server."

  In the Servers table, check all managed servers. Their status should be displayed as RUNNING.

Guess you like

Origin www.cnblogs.com/lqs649646508/p/11616677.html