Managing Server Startup and Shutdown
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
The series of states through which a WebLogic Server instance can transition is called the server life cycle. At any time, a WebLogic Server instance is in a particular operating state. Commands—such as start, stop, and suspend—cause specific changes to the operational state of a server instance. The following sections describe WebLogic Server states, state transitions, and life cycle commands.
Figure 5-1 illustrates the server life cycle and the relationships between states and life cycle commands.
Figure 5-1 State Transitions for Server Life Cycle Commands
To understand each state and the relationships among states, see Understanding Server States in the Server Life Cycle. For information on life cycle commands, see Using Server Life Cycle Commands.
WebLogic Server displays and stores information about the current state of a server instance, and state transitions that have occurred since the server instance started up. This information is useful to administrators who:
SERVER_NAME
getState()
method on the server's weblogic.management.runtime.ServerRuntimeMBean
. For example, to monitor the progress of a long-running graceful shutdown process, issue a getstate
inquiry on a separate thread. For more information, see ServerRuntimeMBean in WebLogic Server MBean Reference.
These sections describe each state in the WebLogic Server life cycle.
In the SHUTDOWN
state, a WebLogic Server instance is configured but inactive.
A server instance enters the SHUTDOWN
state as result of a Shutdown or Force Shutdown command. In addition, a server instance can kill itself when it detects, as a result of self-health monitoring, that it has become unstable. Only a server instance with its Auto Kill If Failed
attribute is true will kill itself when it detects that it is failed. For more information, see Automatic Restart for Failed Server Instances.
You can transition a server instance in the SHUTDOWN
state to the STARTING
state with the Start, Start in Admin, or Start in Standby commands.
During the STARTING
state, a WebLogic Server instance transitions from SHUTDOWN
to STANDBY
, as a result of a Start, Start in Admin, or Start in Standby command.
In the STARTING
state, a server instance cannot accept any client or administrative requests.
The server instance obtains its configuration data:
config
directory. Note: If the Managed Server cannot contact its Administration Server, by default, it starts up in Managed Server Independence mode, using its locally cached copy of the domain config
directory. See Understanding Managed Server Independence Mode.
The server instance starts the services listed in Table 5-1, in the order listed.
Table 5-1 Services Started in STARTING State
A server instance in STANDBY
does not process any request—its regular Listen Port is closed. The Administration Port is open, and accepts life cycle commands that transition the server instance to either the RUNNING
or the SHUTDOWN
state. Other Administration requests are not accepted.
Starting a server instance in standby is a method of keeping it available as a "hot" backup, a useful capability in high-availability environments.
The only life cycle command that causes a server instance to enter the STANDBY
state and remain in that state is the Start in Standby command. A server instance transitions through the STANDBY
state when you issue a Start or a Start in Admin command.
In the ADMIN
state, WebLogic Server is up and running, but available only for administration operations, allowing you to perform server and application-level administration tasks without risk to running applications. When a server instance is in the ADMIN
state:
admin
role. Requests from non-admin
users are refused.ADMIN
state. They accept requests only from users with the admin
role. A user with the admin
role can continue to run any application that is deployed on a server in a suspended state. Note: You do not have to be an admin user to use these subsystems when the server is in a suspended state.
ADMIN
to the RUNNING
state (using the Resume command).ClusterService
is active and listens for heartbeats and announcements from other cluster members. It can detect that other Managed Servers have joined the cluster, but is invisible to other cluster members. You can transition a server instance to the ADMIN
state using the Start in Admin, Suspend, or Force Suspend commands.
A server instance transitions through the ADMIN
state as a result of Start, Shutdown, and Force Shutdown commands.
You can transition a server instance in the ADMIN
state to RUNNING
with the Resume command, or to SHUTDOWN
, with the Shutdown or Force Shutdown command.
During this transitional state, WebLogic Server performs the operations required to move itself from the STANDBY
or ADMIN
state to the RUNNING
state.
A server instance transitions to the RESUMING
state when you issue the Resume command. A server instance transitions through the RESUMING
state when you issue the Start command.
In the RUNNING
state, WebLogic Server is fully functional, offers its services to clients, and can operate as a full member of a cluster.
A server instance transitions to the RUNNING
state as a result of the Start command, or the Resume command from the ADMIN
or STANDBY
states.
You can transition a server instance in the RUNNING
state to the SUSPENDING
state or the FORCE_SUSPENDING
state using graceful and force Suspend and Shutdown commands.
During this transitional state, WebLogic Server performs the operations required to place itself in the ADMIN
state, suspending a subset of WebLogic Server subsystems and services in an ordered fashion, and completing a predefined portion of the application work currently in process ("in-flight" work).
A server instance transitions to the SUSPENDING
state when you issue the Suspend command. A server instance transitions through the SUSPENDING
state when you issue a Shutdown command.
For information about in-flight work, see Processing In-Flight Work During Suspend and Shutdown.
Note: While in the SUSPENDING
state, Work Managers complete in-flight processing for pending work in application threads. For more information, see "Understanding Work Managers" in Configuring WebLogic Server Environments.
During this transitional state, WebLogic Server performs the operations required to place itself in the ADMIN
state, suspending a subset of WebLogic Server subsystems and services in an ordered fashion. During the FORCE_SUSPENDING
state, WebLogic Server does not complete in-flight work gracefully; application work in progress is abandoned.
A server instance transitions through the FORCE_SUSPENDING
state when you issue the Force Suspend or Force Shutdown command.
During this transitional state, WebLogic Server completes the suspension of subsystems and services and does not accept application or administration requests.
A server instance transitions to the SHUTTING_DOWN
state when you issue a Shutdown or Force Shutdown command.
A running server instance can fail as a result of out-of-memory exceptions or stuck application threads, or if one or more critical services become dysfunctional. A server instance monitors its health, and upon detecting that one or more critical subsystems are unstable, it declares itself FAILED
.
A FAILED
server instance cannot satisfy administrative or client requests.
When a server instance enters the FAILED
state, it attempts to return to a non-failed state. If it failed prior to reaching the ADMIN
state, the server instance shuts itself down with an exit code that is less than zero. For information about server exit codes, see WebLogic Server Exit Codes and Restarting After Failure.
If the server instance fails after reaching the ADMIN
state, in the RESUMING
or RUNNING
state, by default, it returns to the ADMIN
state, if the administration port is enabled.
Note: If desired, you can configure a server instance that fails after reaching the ADMIN
state, to shut itself down, rather than return to the ADMIN
state
A server instance can enter the FAILED
state from any other state.
This section describes each life cycle command, how to issue it, and its effect on the state of a server instance. For more information on:
For an illustration of the relationship between server states and server life cycle, see Figure 5-1.
The Start command transitions a server instance from the SHUTDOWN
state to the RUNNING
state. Depending on the initial state of a server instance, the Start command causes these state transitions:
SHUTDOWN
STARTING
STANDBY
ADMIN
RESUMING
RUNNING
The ServerMBean.StartupMode attribute lets you specify the state in which a server instance should be started. Its values are displayed and configurable in the Administration Console, using WLST, or when specified as a java weblogic.Server
startup option. If you do not specify a startup mode value (either on the command line, in the Administration Console, or in config.xml), the default is to start in the RUNNING state.
For more information, see "Specify a Startup Mode" in the Administration Console Online Help and "Options for Configuring Server Attributes" in WebLogic Server Command Reference.
See "start
", "startServer
", and "nmStart
" in WebLogic Scripting Tool and "Start Managed Servers from the Administration Console" in the Administration Console Online Help.
The Start command, with Standby mode enabled, transitions a server instance from the SHUTDOWN
state to the STANDBY
state, with this sequence of state transitions.
See -Dweblogic.management.startupmode
in WebLogic Server Command Reference and "Start Managed Servers in Standby Mode" in the Administration Console Online Help.
The Start command, with Admin mode enabled, transitions a server instance from the SHUTDOWN
state to the ADMIN
state, with this sequence of state transitions:
SHUTDOWN
STARTING
STANDBY
ADMIN
See -Dweblogic.management.startupmode
in WebLogic Server Command Reference and "Start Managed Servers in Admin Mode" in the Administration Console Online Help.
The Resume command transitions a server instance from the STANDBY
or ADMIN
state to the RUNNING
state, with this sequence of state transitions:
STANDBY
ADMIN
RESUMING
RUNNING
See "resume" in WebLogic Scripting Tool and "Resume a Server" in the Administration Console Online Help.
The Graceful Suspend command transitions a server instance from the RUNNING
state to the ADMIN
state, allowing work in process to be handled gracefully, with this sequence of state transitions:
See "suspend" in WebLogic Scripting Tool and "Suspend a Server" in the Administration Console Online Help.
The Force Suspend command transitions a server instance from the RUNNING
state to the ADMIN
state, without handling work in process gracefully, with this sequence of state transitions:
RUNNING
FORCE_SUSPENDING
ADMIN
See "Forcibly Suspend Servers" in the Administration Console Online Help.
The Graceful Shutdown command transitions a server instance from the RUNNING
state to the SHUTDOWN
state, allowing work in process to be handled gracefully, with this sequence of state transitions:
RUNNING
SUSPENDING
ADMIN
SHUTTING_DOWN
SHUTDOWN
See "shutdown" in WebLogic Scripting Tool and "Shut Down a Server Instance" in the Administration Console Online Help.
ServerMBean
has two attributes for controlling the length of the graceful shutdown process. Their values are displayed and configurable on the SERVER_NAME
See "Control Graceful Shutdowns" and "Shut Down Servers in a Cluster" in the Administration Console Online Help.
During both graceful and forced shutdown, subsystems undeploy applications as appropriate. This processing can result in invocation of application code, such as servlet destroy()
or ejbRemove()
during shutdown. During the shutdown sequence, JMS, JDBC, and transactions are shutdown after applications are shutdown, allowing application code to access JMS, JDBC, and transaction services.
The Force Shutdown command transitions a server instance from the any state to the SHUTDOWN
state, without allowing work in process to be handled gracefully. When run for a server instance in the RUNNING
state, the Force Shutdown command results in these state transitions:
RUNNING
FORCE_SUSPENDING
ADMIN
STANDBY
SHUTDOWN
See "shutdown" in WebLogic Scripting Tool and "Forcibly Shutdown Servers" in the Administration Console Online Help.
A forced shutdown is immediate—WebLogic Server subsystems stop all application processing currently in progress. A forced shutdown can be performed on a server instance in any state.
If a fatal exception causes the forced shutdown to fail, the server will exit after the number of seconds specified by the ServerLifecycleTimeoutVal
attribute in ServerMBean
.
Note: When you force shutdown a server instance in a cluster, a clustered service will fail over to another server instance in the cluster, if its state is replicated on another server instance. However:
For information about undeployment processes during a forced shutdown, and related programming considerations, see Shutdown Operations and Application Undeployment.
The following sections describe how each subsystem handles work in process during SUSPENDING
and SHUTTING_DOWN
operations.
The Remote Method Invocation (RMI) subsystem suspends in three steps. Each step in this process completes before the following step commences.
After these steps are completed, no remote client requests are allowed. Requests with administrative privileges and internal system calls are accepted.
When a clustered server instance is instructed to prepare to suspend, the RMI system refuses any in-memory replication calls, to allow other cluster members to choose new hosts for replicated sessions.
After the Web Container subsystem is instructed to prepare to suspend, it rejects new sessions requests. Existing sessions are handled according to the persistence method:
The completion of pending sessions is optional. To drop all sessions immediately, use the Ignore Sessions During Shutdown option on the SERVER_NAME
—>Control—>Start/Stop page in the Administration Console, or the -ignoreSessions
option with the WLST shutdown command.
In a cluster, when a primary session is dropped, the corresponding replicated sessions on another clustered instance will be also destroyed, in addition to the primary session on the server that is being gracefully shut down.
The Timer Service cancels all triggers running on application execute queues. Application execute queues include the default queue and queues configured through the ExecuteQueueMBean
.
The Application Service completes pending work in the application queues before suspending. Application execute queues include the default queue and queues configured through the ExecuteQueueMBean
.
The EJB Container suspends Message Drive Beans (MDBs.)
The Java Messaging Service (JMS) marks itself as suspending, which causes new requests to be rejected. The JMS system suspends gracefully in this fashion:
If the server instance being shut down has a JMS server:
If the server instance being shutdown has a JMS connection factory:
Generally each step in the graceful suspend of the JMS subsystem occurs quickly—in less than a second. Potentially, completion of a client request could take longer, if the request requires higher than normal disk I/O, for example, a request for a persistent "send" of a 100-megabyte message.
You can monitor the number of connections to a JMS server, the number of consumers to a JMS connection factory, and related run-time information using JMS runtime MBeans, including JMSRuntimeMbean
, JMSConnectionRuntimeMBean
, JMSConsumerRuntimeMBean
.
The JDBC Service closes idle connections in the connection pools.
Note: If connections are still in use, the shutdown of the JDBC service will fail, and the graceful shutdown will not complete. To shut down a server instance while applications still hold connections, use a forced shutdown command, described in Force Shutdown.
The Transaction Service waits for the pending transaction count in the Transaction Manager to drop to zero before suspending. Completing all pending transactions can be a lengthy process, depending on the configured transaction timeout.
If a graceful shutdown takes too long because of pending transactions, you can halt it with a forced shutdown command. Force Shutdown suspends all pending work in all subsystems.
![]() ![]() |
![]() |
![]() |