Here are some suggestions for debugging problems with a domain after your Domain or Cluster YAML files are deployed.
When debugging, it helps to understand failure types, failure severities, retry behavior, and retry tuning, see Domain failure retry processing. These apply to failures reported in the resource status, events, introspector jobs, and pods.
To check the Domain status: kubectl -n MY_NAMESPACE describe domain MY_DOMAIN_RESOURCE_NAME
.
For more information, see Domain conditions.
Note:
If .status.observedGeneration
does not equal .metadata.generation
,
then this is an indication that the status is not up-to-date
with respect to the latest changes to the .spec
or .metadata
.
Either the operator is in the process of updating of the status
or the operator is not running.
If you have deployed cluster resources,
then you can optionally check the status of
each using kubectl -n MY_NAMESPACE describe cluster MY_CLUSTER_NAME
.
The same information is reported in the Domain resource status under domain.status.clusters
.
For more information, see Cluster conditions.
Note: If .observedGeneration
for a particular cluster status
does not equal .metadata.generation
for the corresponding cluster resource,
then this is an indication that the status is not up-to-date
with respect to the latest changes to the .spec
or .metadata
.
Either the operator is in the process of updating of the status
or the operator is not running.
To check events for the Domain: kubectl -n MY_NAMESPACE get events --sort-by='.lastTimestamp'
.
For more information, see Domain events.
If your introspector job failed, then examine the kubectl describe
of the job and its pod, and also examine its log, if one exists.
To prevent the introspector job from retrying while you are debugging a failure, configure domain.spec.failureRetryLimitMinutes
to 0
.
For more information, see Domain failure retry processing.
For example, assuming your domain UID is sample-domain1
and your domain namespace is sample-domain1-ns
.
Here we see a failed introspector job pod among the domain’s pods:
$ kubectl -n sample-domain1-ns get pods -l weblogic.domainUID=sample-domain1
NAME READY STATUS RESTARTS AGE
sample-domain1-admin-server 1/1 Running 0 19h
sample-domain1-introspector-v2l7k 0/1 Error 0 75m
sample-domain1-managed-server1 1/1 Running 0 19h
sample-domain1-managed-server2 1/1 Running 0 19h
First, look at the output from the job’s describe
command.
$ kubectl -n sample-domain1-ns describe job/sample-domain1-introspector
Now, look at the job’s pod describe
output; in particular look at its events
.
$ kubectl -n sample-domain1-ns describe pod/sample-domain1-introspector-v2l7k
Last, look at the job’s pod’s log.
$ kubectl -n sample-domain1-ns logs job/sample-domain1-introspector
Here’s an alternative log command that will have same output as shown in the previous command.
$ kubectl -n sample-domain1-ns logs pod/sample-domain1-introspector-v2l7k
A common reason for the introspector job to fail in a Model in Image domain is because of an error in a model file. Here’s some sample log output from an introspector job that shows such a failure:
...
SEVERE Messages:
1. WLSDPLY-05007: Model file /u01/wdt/models/model1.yaml,/weblogic-operator/wdt-config-map/..2020_03_19_15_43_05.993607882/datasource.yaml contains an unrecognized section: TYPOresources. The recognized sections are domainInfo, topology, resources, appDeployments, kubernetes
The introspector log is mirrored to the Domain resource spec.logHome
directory
when spec.logHome
is configured and spec.logHomeEnabled
is true.
If a model file error references a model file in your spec.configuration.model.configMap
, then you can correct the error by redeploying the ConfigMap with a corrected model file and then initiating a domain restart or roll. Similarly, if a model file error references a model file in your model image, then you can correct the error by deploying a corrected image, modifying your Domain YAML file to reference the new image, and then initiating a domain restart or roll.
If your introspector job succeeded, then there will be no introspector job or pod, the operator will create a MY_DOMAIN_UID-weblogic-domain-introspect-cm
ConfigMap for your domain, and the operator will then run the domain’s WebLogic Server pods.
If kubectl -n MY_NAMESPACE get pods
reveals that your WebLogic Server pods have errors, then use kubectl -n MY_NAMESPACE describe pod POD_NAME
, kubectl -n MY_NAMESPACE logs POD_NAME
, and/or kubectl -n MY_NAMESPACE get events --sort-by='.lastTimestamp'
to debug.
If you are performing an online update to a running domain’s WebLogic configuration, then see Online update status and labels.
Common issues that have corresponding documentation include:
describe
of an introspector job or WebLogic Server pod reveals image access errors,
see the Cannot pull image FAQ.If the problem is specific to the operator itself, or its namespace management, then consult the operator Troubleshooting documentation.