Sunday, February 7, 2021

Create Oracle Weblogic Docker image using Centos 8

 HOWTO

 

GitHub repo

 

Docker file

On Centos add link to JDK
RUN ln -s  /usr/java/latest/ /usr/java/jdk-8

 

[dave@dave docker-weblogic-centos-8]$ more Dockerfile.generic 
#Copyright (c) 2014-2019 Oracle and/or its affiliates. All rights reserved.
#
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
#
# ORACLE DOCKERFILES PROJECT
# --------------------------
# This is the Dockerfile for Oracle WebLogic Server 12.2.1.4 Generic Distro
#
# REQUIRED FILES TO BUILD THIS IMAGE
# ----------------------------------
# (1) fmw_12.2.1.4.0_wls_Disk1_1of1.zip
#     Download the Generic installer from http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-for-dev-1703574.html
#
# (2) server-jre-8uXX-linux-x64.tar.gz
#     Download from http://www.oracle.com/technetwork/java/javase/downloads/server-jre8-downloads-2133154.html
#
# HOW TO BUILD THIS IMAGE
# -----------------------
# Put all downloaded files in the same directory as this Dockerfile
# Run:
#      $ docker build -f Dockerfile.generic -t oracle/weblogic:12.2.1.4-generic .
#
# IMPORTANT
# ---------
# The resulting image of this Dockerfile contains a WLS Empty Domain.
#
# From the OIracle Docker GitHub Project
# --------------------------------------
FROM dveselka/oracle-jdk-8 as builder

# Maintainer
# ----------
MAINTAINER Daniel Veselka

# Common environment variables required for this build (do NOT change)
# --------------------------------------------------------------------
ENV ORACLE_HOME=/u01/oracle \
    JAVA_HOME=/usr/java/latest \
    USER_MEM_ARGS="-Djava.security.egd=file:/dev/./urandom" \
    PATH=$PATH:${JAVA_HOME}/bin:/u01/oracle/oracle_common/common/bin:/u01/oracle/wlserver/common/bin

# Setup filesystem and oracle user
# Adjust file permissions, go to /u01 as user 'oracle' to proceed with WLS installation
# ------------------------------------------------------------
RUN mkdir -p /u01 && \
    chmod a+xr /u01 && \
    useradd -b /u01 -d /u01/oracle -m -s /bin/bash oracle

# Environment variables required for this build (do NOT change)
# -------------------------------------------------------------
ENV FMW_PKG=fmw_12.2.1.4.0_wls_Disk1_1of1.zip \
    FMW_JAR=fmw_12.2.1.4.0_wls.jar

# Copy packages
# -------------
COPY $FMW_PKG install.file oraInst.loc /u01/
RUN chown oracle:oracle -R /u01

# Install
# ------------------------------------------------------------
USER oracle

RUN cd /u01 && ${JAVA_HOME}/bin/jar xf /u01/$FMW_PKG && cd - && \
    ${JAVA_HOME}/bin/java -jar /u01/$FMW_JAR -silent -responseFile /u01/install.file -invPtrLoc /u01/oraInst.loc -jreLoc $JAVA_HOME -ignoreSysPrereqs -force -novalidation ORACLE_HOME=$ORACLE_HOME INSTALL_TYPE="WebLogic Server" &&
 \
    rm /u01/$FMW_JAR /u01/$FMW_PKG /u01/oraInst.loc /u01/install.file && \
    rm -rf /u01/oracle/cfgtoollogs

# Final image stage
FROM dveselka/oracle-jdk-8

ENV ORACLE_HOME=/u01/oracle \
    USER_MEM_ARGS="-Djava.security.egd=file:/dev/./urandom" \
    SCRIPT_FILE=/u01/oracle/createAndStartEmptyDomain.sh \
    PATH=$PATH:${JAVA_HOME}/bin:/u01/oracle/oracle_common/common/bin:/u01/oracle/wlserver/common/bin

# Domain and Server environment variables
# ------------------------------------------------------------
ENV DOMAIN_NAME="${DOMAIN_NAME:-base_domain}" \
    ADMIN_LISTEN_PORT="${ADMIN_LISTEN_PORT:-7001}" \
    ADMIN_NAME="${ADMIN_NAME:-AdminServer}" \
    ADMINISTRATION_PORT_ENABLED="${ADMINISTRATION_PORT_ENABLED:-true}" \
    ADMINISTRATION_PORT="${ADMINISTRATION_PORT:-9002}"

# Setup filesystem and oracle user
# Adjust file permissions, go to /u01 as user 'oracle' to proceed with WLS installation
# ------------------------------------------------------------
RUN mkdir -p /u01 && \
    chmod a+xr /u01 && \
    useradd -b /u01 -d /u01/oracle -m -s /bin/bash oracle

COPY --from=builder --chown=oracle:oracle /u01 /u01

# Copy scripts
#-------------
COPY container-scripts/createAndStartEmptyDomain.sh container-scripts/create-wls-domain.py /u01/oracle/

RUN chmod +xr $SCRIPT_FILE && \
    chown oracle:oracle -R /u01/oracle/createAndStartEmptyDomain.sh && \
    chown oracle:oracle -R /u01/oracle/create-wls-domain.py
    
RUN ln -s  /usr/java/latest/ /usr/java/jdk-8

USER oracle

WORKDIR ${ORACLE_HOME}

# Define default command to start script.
CMD ["/u01/oracle/createAndStartEmptyDomain.sh"]

Build image
[dave@dave docker-weblogic-centos-8]$ ./buildDockerImage.sh  -g -v 12.2.1.4
Checking if required packages are present and valid...
fmw_12.2.1.4.0_wls_Disk1_1of1.zip: OK
md5sum: WARNING: 1 line is improperly formatted
=====================
Building image 'oracle/weblogic:12.2.1.4-generic' ...
Sending build context to Docker daemon  866.5MB
Step 1/19 : FROM dveselka/oracle-jdk-8 as builder
 ---> bec32556adc7
Step 2/19 : MAINTAINER Daniel Veselka
 ---> Running in af3cef73329d
Removing intermediate container af3cef73329d
 ---> b93016858b03
Step 3/19 : ENV ORACLE_HOME=/u01/oracle     JAVA_HOME=/usr/java/latest     USER_MEM_ARGS="-Djava.security.egd=file:/dev/./urandom"     PATH=$PATH:${JAVA_HOME}/bin:/u01/oracle/oracle_common/common/bin:/u01/oracle/wlserver/common/bin
 ---> Running in 63b3777a9040
Removing intermediate container 63b3777a9040
 ---> 82fb7b7cd6e8
Step 4/19 : RUN mkdir -p /u01 &&     chmod a+xr /u01 &&     useradd -b /u01 -d /u01/oracle -m -s /bin/bash oracle
 ---> Running in 63ba70aa9b9a
Removing intermediate container 63ba70aa9b9a
 ---> a4b954c717e1
Step 5/19 : ENV FMW_PKG=fmw_12.2.1.4.0_wls_Disk1_1of1.zip     FMW_JAR=fmw_12.2.1.4.0_wls.jar
 ---> Running in 5b7fb0593599
Removing intermediate container 5b7fb0593599
 ---> 3447bba4b718
Step 6/19 : COPY $FMW_PKG install.file oraInst.loc /u01/
 ---> 09f0542931f2
Step 7/19 : RUN chown oracle:oracle -R /u01
 ---> Running in 8413ad11f113
Removing intermediate container 8413ad11f113
 ---> b8a2c7bb0114
Step 8/19 : USER oracle
 ---> Running in 75fa0ca56981
Removing intermediate container 75fa0ca56981
 ---> 6c85ed12d882
Step 9/19 : RUN cd /u01 && ${JAVA_HOME}/bin/jar xf /u01/$FMW_PKG && cd - &&     ${JAVA_HOME}/bin/java -jar /u01/$FMW_JAR -silent -responseFile /u01/install.file -invPtrLoc /u01/oraInst.loc -jreLoc $JAVA_HOME -ignoreSysPrereqs -force -novalidation ORACLE_HOME=$ORACLE_HOME INSTALL_TYPE="WebLogic Server" &&     rm /u01/$FMW_JAR /u01/$FMW_PKG /u01/oraInst.loc /u01/install.file &&     rm -rf /u01/oracle/cfgtoollogs
 ---> Running in 07ef1bdaf763
/
Launcher log file is /tmp/OraInstall2021-02-07_11-34-29AM/launcher2021-02-07_11-34-29AM.log.
Extracting the installer . . . . . Done
Checking if CPU speed is above 300 MHz.   Actual 2731.381 MHz    Passed
Checking swap space: must be greater than 512 MB.   Actual 8015 MB    Passed
Checking if this platform requires a 64-bit JVM.   Actual 64    Passed (64-bit not required)
Checking temp space: must be greater than 300 MB.   Actual 27309 MB    Passed
Preparing to launch the Oracle Universal Installer from /tmp/OraInstall2021-02-07_11-34-29AM
Log: /tmp/OraInstall2021-02-07_11-34-29AM/install2021-02-07_11-34-29AM.log
Setting ORACLE_HOME...
Setting INSTALL_TYPE...
Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
Reading response file..
Skipping Software Updates
Validations are disabled for this session.
Verifying data
Copying Files
Percent Complete : 10
Percent Complete : 20
Percent Complete : 30
Percent Complete : 40
Percent Complete : 50
Percent Complete : 60
Percent Complete : 70
Percent Complete : 80
Percent Complete : 90
Percent Complete : 100

The installation of Oracle Fusion Middleware 12c WebLogic Server and Coherence 12.2.1.4.0 completed successfully.
Logs successfully copied to /u01/oracle/.inventory/logs.
Removing intermediate container 07ef1bdaf763
 ---> f0ae2aba0dfc
Step 10/19 : FROM dveselka/oracle-jdk-8
 ---> bec32556adc7
Step 11/19 : ENV ORACLE_HOME=/u01/oracle     USER_MEM_ARGS="-Djava.security.egd=file:/dev/./urandom"     SCRIPT_FILE=/u01/oracle/createAndStartEmptyDomain.sh     PATH=$PATH:${JAVA_HOME}/bin:/u01/oracle/oracle_common/common/bin:/u01/oracle/wlserver/common/bin
 ---> Running in 1a6644809ac8
Removing intermediate container 1a6644809ac8
 ---> efe0fb8d544c
Step 12/19 : ENV DOMAIN_NAME="${DOMAIN_NAME:-base_domain}"     ADMIN_LISTEN_PORT="${ADMIN_LISTEN_PORT:-7001}"     ADMIN_NAME="${ADMIN_NAME:-AdminServer}"     ADMINISTRATION_PORT_ENABLED="${ADMINISTRATION_PORT_ENABLED:-true}"     ADMINISTRATION_PORT="${ADMINISTRATION_PORT:-9002}"
 ---> Running in dcfe279ce745
Removing intermediate container dcfe279ce745
 ---> a5727a8ccc86
Step 13/19 : RUN mkdir -p /u01 &&     chmod a+xr /u01 &&     useradd -b /u01 -d /u01/oracle -m -s /bin/bash oracle
 ---> Running in b7a8d369be07
Removing intermediate container b7a8d369be07
 ---> db8cd5ffd3cc
Step 14/19 : COPY --from=builder --chown=oracle:oracle /u01 /u01
 ---> 7c6cf0a33e7c
Step 15/19 : COPY container-scripts/createAndStartEmptyDomain.sh container-scripts/create-wls-domain.py /u01/oracle/
 ---> ab295f4312d1
Step 16/19 : RUN chmod +xr $SCRIPT_FILE &&     chown oracle:oracle -R /u01/oracle/createAndStartEmptyDomain.sh &&     chown oracle:oracle -R /u01/oracle/create-wls-domain.py
 ---> Running in 591f7791b9ca
Removing intermediate container 591f7791b9ca
 ---> da623462c1b3
Step 17/19 : USER oracle
 ---> Running in 3992a4838297
Removing intermediate container 3992a4838297
 ---> 30090b2cc920
Step 18/19 : WORKDIR ${ORACLE_HOME}
 ---> Running in bfb4d92eea36
Removing intermediate container bfb4d92eea36
 ---> 5464d9a6c933
Step 19/19 : CMD ["/u01/oracle/createAndStartEmptyDomain.sh"]
 ---> Running in ee7f2ecb5dfb
Removing intermediate container ee7f2ecb5dfb
 ---> 6ca3e64b737c
Successfully built 6ca3e64b737c
Successfully tagged oracle/weblogic:12.2.1.4-generic

  WebLogic Docker Image for 'generic' version 12.2.1.4 is ready to be extended:

    --> oracle/weblogic:12.2.1.4-generic

  Build completed in 78 seconds.


Docker images

[dave@dave docker-weblogic-centos-8]$ docker images
REPOSITORY              TAG                 IMAGE ID            CREATED             SIZE
oracle/weblogic         12.2.1.4-generic    6ca3e64b737c        3 minutes ago       1.7GB
<none>                  <none>              f0ae2aba0dfc        3 minutes ago       3.43GB
<none>                  <none>              ac0fdf1fa66b        10 minutes ago      2.53GB
dveselka/oracle-jdk-8   latest              bec32556adc7        2 hours ago         799MB
centos                  8                   300e315adb2f        2 months ago        209MB

Start via Docker compose https://github.com/dveselka/weblogic/tree/master/docker-compose

[dave@dave docker-compose]$ docker-compose up
Recreating adminserver ... done
Attaching to adminserver
adminserver    | Domain Home is:  /u01/oracle/user_projects/domains/base_domain
adminserver    | .
adminserver    | .
adminserver    | JAVA Memory arguments: -Djava.security.egd=file:/dev/./urandom
adminserver    | .
adminserver    | CLASSPATH=/usr/java/jdk-8/lib/tools.jar:/u01/oracle/wlserver/server/lib/weblogic.jar:/u01/oracle/wlserver/../oracle_common/modules/thirdparty/ant-contrib-1.0b3.jar:/u01/oracle/wlserver/modules/features/oracle.wls.common.nodemanager.jar::/u01/oracle/wlserver/common/derby/lib/derbynet.jar:/u01/oracle/wlserver/common/derby/lib/derbyclient.jar:/u01/oracle/wlserver/common/derby/lib/derby.jar
adminserver    | .
adminserver    | PATH=/u01/oracle/user_projects/domains/base_domain/bin:/u01/oracle/wlserver/server/bin:/u01/oracle/wlserver/../oracle_common/modules/thirdparty/org.apache.ant/1.10.5.0.0/apache-ant-1.10.5/bin:/usr/java/jdk-8/jre/bin:/usr/java/jdk-8/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/bin:/u01/oracle/oracle_common/common/bin:/u01/oracle/wlserver/common/bin
adminserver    | .
adminserver    | ***************************************************
adminserver    | *  To start WebLogic Server, use a username and   *
adminserver    | *  password assigned to an admin-level user.  For *
adminserver    | *  server administration, use the WebLogic Server *
adminserver    | *  console at http://hostname:port/console        *
adminserver    | ***************************************************
adminserver    | Starting WLS with line:
adminserver    | /usr/java/jdk-8/bin/java -server   -Djava.security.egd=file:/dev/./urandom -cp /u01/oracle/wlserver/server/lib/weblogic-launcher.jar -Dlaunch.use.env.classpath=true -Dweblogic.Name=AdminServer -Djava.security.policy=/u01/oracle/wlserver/server/lib/weblogic.policy  -Dweblogic.ProductionModeEnabled=true  -Djava.system.class.loader=com.oracle.classloader.weblogic.LaunchClassLoader  -javaagent:/u01/oracle/wlserver/server/lib/debugpatch-agent.jar -da -Dwls.home=/u01/oracle/wlserver/server -Dweblogic.home=/u01/oracle/wlserver/server      weblogic.Server
adminserver    | <Feb 7, 2021 12:11:14 PM UTC> <Info> <Security> <BEA-090905> <Disabling the CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true.> 
adminserver    | <Feb 7, 2021 12:11:14 PM UTC> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG128 to HMACDRBG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true.> 
adminserver    | <Feb 7, 2021 12:11:15 PM UTC> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 25.231-b11 from Oracle Corporation.> 
adminserver    | <Feb 7, 2021 12:11:15 PM UTC> <Info> <RCM> <BEA-2165021> <"ResourceManagement" is not enabled in this JVM. Enable "ResourceManagement" to use the WebLogic Server "Resource Consumption Management" feature. To enable "ResourceManagement", you must specify the following JVM options in the WebLogic Server instance in which the JVM runs: -XX:+UnlockCommercialFeatures -XX:+ResourceManagement.> 
adminserver    | <Feb 7, 2021 12:11:15 PM UTC> <Info> <Management> <BEA-141107> <Version: WebLogic Server 12.2.1.4.0 Thu Sep 12 04:04:29 GMT 2019 1974621> 
adminserver    | <Feb 7, 2021 12:11:16 PM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.> 
adminserver    | <Feb 7, 2021 12:11:16 PM UTC> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool.> 
adminserver    | <Feb 7, 2021 12:11:16 PM UTC> <Info> <WorkManager> <BEA-002942> <CMM memory level becomes 0. Setting standby thread pool size to 256.> 
adminserver    | <Feb 7, 2021 12:11:16,937 PM UTC> <Notice> <Log Management> <BEA-170019> <The server log file weblogic.logging.FileStreamHandler instance=269987631
adminserver    | Current log file=/u01/oracle/user_projects/domains/base_domain/servers/AdminServer/logs/AdminServer.log
adminserver    | Rotation dir=/u01/oracle/user_projects/domains/base_domain/servers/AdminServer/logs
adminserver    |  is opened. All server side log events will be written to this file.> 
adminserver    | <Feb 7, 2021 12:11:17,340 PM UTC> <Notice> <Security> <BEA-090946> <Security pre-initializing using security realm: myrealm> 
adminserver    | <Feb 7, 2021 12:11:17,742 PM UTC> <Notice> <Security> <BEA-090947> <Security post-initializing using security realm: myrealm> 
adminserver    | <Feb 7, 2021 12:11:19,068 PM UTC> <Notice> <Security> <BEA-090082> <Security initialized using administrative security realm: myrealm> 
adminserver    | <Feb 7, 2021 12:11:19,491 PM UTC> <Notice> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://172.18.0.2:7001/jndi/weblogic.management.mbeanservers.runtime.> 
adminserver    | <Feb 7, 2021 12:11:19,836 PM UTC> <Notice> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://172.18.0.2:7001/jndi/weblogic.management.mbeanservers.domainruntime.> 
adminserver    | <Feb 7, 2021 12:11:19,905 PM UTC> <Notice> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://172.18.0.2:7001/jndi/weblogic.management.mbeanservers.edit.> 
adminserver    | <Feb 7, 2021 12:11:20,635 PM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY.> 
adminserver    | <Feb 7, 2021 12:11:20,636 PM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.> 
adminserver    | <Feb 7, 2021 12:11:20,679 PM UTC> <Notice> <Log Management> <BEA-170036> <The Logging monitoring service timer has started to check for logged message counts every 30 seconds.> 
adminserver    | <Feb 7, 2021 12:11:22,622 PM UTC> <Notice> <Log Management> <BEA-170027> <The server has successfully established a connection with the Domain level Diagnostic Service.> 
adminserver    | <Feb 7, 2021 12:11:23,341 PM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN.> 
adminserver    | <Feb 7, 2021 12:11:23,397 PM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING.> 
adminserver    | <Feb 7, 2021 12:11:23,509 PM UTC> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file /u01/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks.> 
adminserver    | <Feb 7, 2021 12:11:23,531 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on 127.0.0.1:7002 for protocols iiops, t3s, ldaps, https.> 
adminserver    | <Feb 7, 2021 12:11:23,532 PM UTC> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.> 
adminserver    | <Feb 7, 2021 12:11:23,532 PM UTC> <Notice> <WebLogicServer> <BEA-000329> <Started the WebLogic Server Administration Server "AdminServer" for domain "base_domain" running in production mode.> 
adminserver    | <Feb 7, 2021 12:11:23,532 PM UTC> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 172.18.0.2:7001 for protocols iiop, t3, ldap, snmp, http.> 
adminserver    | <Feb 7, 2021 12:11:23,533 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 172.18.0.2:7002 for protocols iiops, t3s, ldaps, https.> 
adminserver    | <Feb 7, 2021 12:11:23,533 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DaveChannel[1]" is now listening on 127.0.0.1:8001 for protocols t3, http.> 
adminserver    | <Feb 7, 2021 12:11:23,534 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DaveChannel" is now listening on 172.18.0.2:8001 for protocols t3, http.> 
adminserver    | <Feb 7, 2021 12:11:23,534 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on 127.0.0.1:7002 for protocols iiops, t3s, ldaps, https.> 
adminserver    | <Feb 7, 2021 12:11:23,535 PM UTC> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.> 
adminserver    | <Feb 7, 2021 12:11:23,536 PM UTC> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 172.18.0.2:7001 for protocols iiop, t3, ldap, snmp, http.> 
adminserver    | <Feb 7, 2021 12:11:23,536 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 172.18.0.2:7002 for protocols iiops, t3s, ldaps, https.> 
adminserver    | <Feb 7, 2021 12:11:23,537 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DaveChannel[1]" is now listening on 127.0.0.1:8001 for protocols t3, http.> 
adminserver    | <Feb 7, 2021 12:11:23,537 PM UTC> <Notice> <Server> <BEA-002613> <Channel "DaveChannel" is now listening on 172.18.0.2:8001 for protocols t3, http.> 
adminserver    | <Feb 7, 2021 12:11:23,538 PM UTC> <Notice> <WebLogicServer> <BEA-000360> <The server started in RUNNING mode.> 
adminserver    | <Feb 7, 2021 12:11:23,544 PM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING.> 
adminserver    | 2021-02-07 12:11:24.695/11.197 Oracle Coherence 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational configuration from "jar:file:/u01/oracle/coherence/lib/coherence.jar!/tangosol-coherence.xml"
adminserver    | 2021-02-07 12:11:24.734/11.235 Oracle Coherence 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational overrides from "jar:file:/u01/oracle/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
adminserver    | 2021-02-07 12:11:24.737/11.239 Oracle Coherence 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
adminserver    | 2021-02-07 12:11:24.741/11.243 Oracle Coherence 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "cache-factory-config.xml" is not specified
adminserver    | 2021-02-07 12:11:24.744/11.246 Oracle Coherence 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "cache-factory-builder-config.xml" is not specified
adminserver    | 2021-02-07 12:11:24.747/11.249 Oracle Coherence 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
adminserver    | 
adminserver    | Oracle Coherence Version 12.2.1.4.0 Build 74888
adminserver    |  Grid Edition: Development mode
adminserver    | Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
adminserver    | 
adminserver    | 2021-02-07 12:11:24.818/11.320 Oracle Coherence GE 12.2.1.4.0 <Info> (thread=[STANDBY] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Configured versioned, multi-cluster Management over ReST

No comments:

Post a Comment