This document describes how you can start, stop, and restart the domain's servers.
There are properties on the domain resource that specify which servers should be running and which servers should be restarted.
To start, stop, or restart servers, modify these properties on the domain resource
(for example, by using kubectl
or the Kubernetes REST API). The operator will notice the changes and apply them.
The serverStartPolicy
property on the domain resource controls which servers should be running.
The operator runtime monitors this property and creates or deletes the corresponding server pods.
You can specify the serverStartPolicy
property at the domain, cluster, and server levels. Each level supports a different set of values.
Level | Default Value | Supported Values |
---|---|---|
Domain | IF_NEEDED |
IF_NEEDED , ADMIN_ONLY , NEVER |
Cluster | IF_NEEDED |
IF_NEEDED , NEVER |
Server | IF_NEEDED |
IF_NEEDED , ALWAYS , NEVER |
Domain | Admin Server | Started / Stopped |
---|---|---|
NEVER |
any value | Stopped |
ADMIN_ONLY , IF_NEEDED |
NEVER |
Stopped |
ADMIN_ONLY , IF_NEEDED |
IF_NEEDED , ALWAYS |
Started |
Domain | Standalone Server | Started / Stopped |
---|---|---|
ADMIN_ONLY , NEVER |
any value | Stopped |
IF_NEEDED |
NEVER |
Stopped |
IF_NEEDED |
IF_NEEDED , ALWAYS |
Started |
Domain | Cluster | Clustered Server | Started / Stopped |
---|---|---|---|
ADMIN_ONLY , NEVER |
any value | any value | Stopped |
IF_NEEDED |
NEVER |
any value | Stopped |
IF_NEEDED |
IF_NEEDED |
NEVER |
Stopped |
IF_NEEDED |
IF_NEEDED |
ALWAYS |
Started |
IF_NEEDED |
IF_NEEDED |
IF_NEEDED |
Started if needed to get to the cluster's replicas count |
Note: Servers configured as ALWAYS
count toward the cluster's replicas
count.
Note: If more servers are configured as ALWAYS
than the cluster's replicas
count, they will all be started and the replicas
count will be ignored.
Normally, the Administration Server, all of the standalone Managed Servers, and enough Managed Servers in each cluster to satisfy its replicas
count, should be started.
In this case, the domain resource does not need to specify serverStartPolicy
, or list any clusters
or servers
, but it does need to specify a replicas
count.
For example:
domain:
spec:
image: ...
replicas: 10
Sometimes you need to completely shut down the domain (for example, take it out of service).
domain:
spec:
serverStartPolicy: "NEVER"
...
Sometimes you want to start the Administration Server only, that is, take the domain out of service but leave the Administration Server running so that you can administer the domain.
domain:
spec:
serverStartPolicy: "ADMIN_ONLY"
...
To shut down a cluster (for example, take it out of service), add it to the domain resource and set its serverStartPolicy
to NEVER
.
domain:
spec:
clusters:
- clusterName: "cluster1"
serverStartPolicy: "NEVER"
...
To shut down a specific standalone server, add it to the domain resource and set its serverStartPolicy
to NEVER
.
domain:
spec:
managedServers:
- serverName: "server1"
serverStartPolicy: "NEVER"
...
Normally, all of the Managed Servers in a cluster are identical and it doesn't matter which ones are running as long as the operator starts enough of them to get to the cluster's replicas
count.
However, sometimes some of the Managed Servers are different (for example, support some extra services that the other servers in the cluster use) and need to always be started.
This is done by adding the server to the domain resource and setting its serverStartPolicy
to ALWAYS
.
domain:
spec:
managedServers:
- serverName: "cluster1_server1"
serverStartPolicy: "ALWAYS"
...
Note: The server will count toward the cluster's replicas
count. Also, if you configure more than the replicas
servers count to ALWAYS
, they will all be started, even though the replicas
count will be exceeded.
The operator runtime automatically recreates (restarts) server pods when properties on the domain resource that affect server pods change (such as image
, volumes
, and env
).
The restartVersion
property on the domain resource lets you force the operator to restart a set of server pods.
The operator runtime does rolling restarts of clustered servers so that service is maintained.
The operator will restart servers when any of the follow properties on the domain resource that affect the server are changed:
containerSecurityContext
domainHome
domainHomeInImage
env
image
imagePullPolicy
imagePullSecrets
includeServerOutInPodLog
logHomeEnabled
logHome
livenessProbe
nodeSelector
podSecurityContext
readinessProbe
resources
restartVersion
serverStartState
volumes
volumeMounts
Note: if the only change detected is the addition or modification of a domain-specified label or annotation, the operator will patch the server's pod rather than restarting it. Removing a label or annotation from the domain resource will cause neither a restart nor a patch. It is possible to force a restart to remove such a label or annotation by modifying the restartVersion.
Clustered servers that need to be restarted are gradually restarted (for example, rolling restarted
) so that the cluster is not taken out of service and in-flight work can be migrated to other servers in the cluster.
The maxUnavailable
property on the domain resource determines how many of the cluster's servers may be taken out of service at a time when doing a rolling restart.
It can be specified at the domain and cluster levels and defaults to 1 (that is, by default, clustered servers are restarted one at a time).
When using in-memory session replication, Oracle WebLogic Server employs a primary-secondary session replication model to provide high availability of application session state (that is, HTTP and EJB sessions).
The primary server creates a primary session state on the server to which the client first connects, and a secondary replica on another WebLogic Server instance in the cluster.
Specifying a maxUnavailable
property value of 1
protects against inadvertent session state loss which could occur if both the primary and secondary
servers are shut down at the same time during the rolling restart process.
The restartVersion
property lets you force the operator to restart servers.
It's basically a user-specified string that gets added to new server pods (as a label) so that the operator can tell which servers need to be restarted. If the value is different, then the server pod is old and needs to be restarted. If the value matches, then the server pod has already been restarted.
Each time you want to restart some servers, you need to set restartVersion
to a different string (the particular value doesn't matter).
The operator will notice the new value and restart the affected servers (using the same mechanisms as when other properties that affect the server pods are changed, including doing rolling restarts of clustered servers).
The restartVersion
property can be specified at the domain, cluster, and server levels. A server will be restarted if any of these three values change.
Note: The servers will also be restarted if restartVersion
is removed from the domain resource (for example, if you had previously specified a value to cause a restart, then you remove that value after the previous restart has completed).
Set restartVersion
at the domain level to a new value.
domain:
spec:
restartVersion: "domainV1"
...
Set restartVersion
at the cluster level to a new value.
domain:
spec:
clusters:
- clusterName : "cluster1"
restartVersion: "cluster1V1"
maxUnavailable: 2
...
Set restartVersion
at the adminServer
level to a new value.
domain:
spec:
adminServer:
restartVersion: "adminV1"
...
Set restartVersion
at the managedServer
level to a new value.
domain:
spec:
managedServers:
- serverName: "standalone_server1"
restartVersion: "v1"
- serverName: "cluster1_server1"
restartVersion: "v1"
...
To do a full domain restart, first shut down all of the domain's servers (Administration and Managed Servers), taking the domain out of service, then restart them. Unlike rolling restarts, the operator cannot detect and initiate a full domain restart; you must always manually initiate it.
To manually initiate a full domain restart:
-
Change the domain level
serverStartPolicy
on the domain resource toNEVER
.domain: spec: serverStartPolicy: "NEVER" ...
-
Wait for the operator to stop ALL the servers for that domain.
-
To restart the domain, set the domain level
serverStartPolicy
back toIF_NEEDED
. Alternatively, you do not have to specify theserverStartPolicy
as the default value isIF_NEEDED
.domain: spec: serverStartPolicy: "IF_NEEDED" ...
-
The operator will restart all the servers in the domain.