[root@yxbj ~]# docker images
centos latest 1e1148e4cc2c 9 days ago 202MB
[root@yxbj ~]# docker run -tid 1e1148e4cc2c /bin/bash
[root@yxbj ~]# docker exec -ti 4e488d0bc30e /bin/bash
[root@yxbj ~]# groupadd weblogic
[root@yxbj ~]# useradd -g weblogic weblogic
[root@yxbj ~]# passwd weblogic
[root@5f07b8e08dfc /]# exit
[root@yxbj weblogic]# docker cp fmw_12.2.1.3.0_wls_quick.jar 4e488d0bc30e:/home/weblogic/
[root@yxbj weblogic]# docker cp jdk-8u11-linux-x64.tar.gz 4e488d0bc30e:/home/weblogic/
[root@yxbj ~]# docker exec -ti 4e488d0bc30e /bin/bash
[root@yxbj ~]# chown -R weblogic:weblogic /home/weblogic/
[root@yxbj weblogic]# su - weblogic
[weblogic@4e488d0bc30e ~]$ tar xvfz jdk-8u11-linux-x64.tar.gz
export JAVA_HOME=/home/weblogic/jdk1.8.0_11
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_HOME/bin
[weblogic@yxbj ~]$ source .bash_profile
[ENGINE]
#DO NOT CHANGE THIS.
Response File Version=1.0.0.0.0
[GENERIC]
#The oracle home location. This can be an existing Oracle Home or a new Oracle Home
ORACLE_HOME=/home/weblogic/oracle
#Set this variable value to the Installation Type selected. e.g. WebLogic Server, Coherence, Complete with Examples.
INSTALL_TYPE=WebLogic Server
#Provide the My Oracle Support Username. If you wish to ignore Oracle Configuration Manager configuration provide empty string for user name.
MYORACLESUPPORT_USERNAME=
#Provide the My Oracle Support Password
MYORACLESUPPORT_PASSWORD=
#Set this to true if you wish to decline the security updates. Setting this to true and providing empty string for My Oracle Support username will ignore the Oracle Configuration Manager configuration
DECLINE_SECURITY_UPDATES=true
#Set this to true if My Oracle Support Password is specified
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
#Provide the Proxy Host
PROXY_HOST=
#Provide the Proxy Port
PROXY_PORT=
#Provide the Proxy Username
PROXY_USER=
#Provide the Proxy Password
PROXY_PWD=
#Type String (URL format) Indicates the OCM Repeater URL which should be of the format [scheme[Http/Https]]://[repeater host]:[repeater port]
COLLECTOR_SUPPORTHUB_URL=
inventory_loc=/home/weblogic/oraInventory
inst_group=weblogic
[weblogic@yxbj ~]$ java -jar fmw_12.2.1.3.0_wls_quick.jar
Launcher log file is /tmp/OraInstall2018-12-15_02-15-57PM/launcher2018-12-15_02-15-57PM.log.
Extracting the installer . . . . Done
Checking if CPU speed is above 300 MHz. Actual 2394.455 MHz Passed
Checking swap space: must be greater than 512 MB. Actual 4095 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 3195 MB Passed
Preparing to launch the Oracle Universal Installer from /tmp/OraInstall2018-12-15_02-15-57PM
Log: /tmp/OraInstall2018-12-15_02-15-57PM/install2018-12-15_02-15-57PM.log
*****************************************************
Distribution Name : Oracle Fusion Middleware 12c WebLogic and Coherence Developer
Distribution Version : 12.2.1.3.0
Oracle Inventory : /home/weblogic/oraInventory
Oracle Home : /home/weblogic/wls12213
Java Home : /usr/java/jdk1.8.0_11
Validations are enabled 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
[weblogic@yxbj ~]$ cd wls12213/
[weblogic@yxbj wls12213]$ pwd
/home/weblogic/wls12213
[weblogic@yxbj wls12213]$ ll
total 20
drwxr-x---. 4 weblogic weblogic 33 Dec 15 14:19 cfgtoollogs
drwxr-x---. 5 weblogic weblogic 58 Dec 15 14:17 coherence
drwxr-x---. 19 weblogic weblogic 4096 Dec 15 14:19 inventory
drwxr-x---. 11 weblogic weblogic 4096 Dec 15 14:18 OPatch
drwxr-x---. 9 weblogic weblogic 96 Dec 15 14:17 oracle_common
-rw-r-----. 1 weblogic weblogic 133 Dec 15 14:19 oraInst.loc
drwxr-x---. 8 weblogic weblogic 4096 Dec 15 14:19 oui
-rwx------. 1 weblogic weblogic 10 Dec 15 14:16 root.sh
drwxr-x---. 7 weblogic weblogic 76 Dec 15 14:17 wlserver
[weblogic@yxbj ~]$ mkdir -p /home/weblogic/wls12213/user_projects/domains/base_domain/
read template from "/home/weblogic/wls12213/wlserver/common/templates/wls/wls.jar";
set JavaHome "/usr/java/jdk1.8.0_11";
set ServerStartMode "prod";
find Server "AdminServer" as AdminServer;
set AdminServer.ListenAddress "";
set AdminServer.ListenPort "7001";
set AdminServer.SSL.Enabled "true";
set AdminServer.SSL.ListenPort "7002";
//Create Machine
//create Machine "base" as Machinename;
//use templates default weblogic user
find User "weblogic" as u1;
set u1.password "weblogic";
write domain to "/home/weblogic/wls12213/user_projects/domains/base_domain/";
// The domain name will be "demo-domain"
close template;
[weblogic@yxbj bin]$ cd /home/weblogic/wls12213/wlserver/common/bin
[weblogic@yxbj bin]$ pwd
/home/weblogic/wls12213/wlserver/common/bin
[weblogic@yxbj bin]$ ll
total 68
-rwxr-x---. 1 weblogic weblogic 583 Aug 10 2017 config.sh
-rwxr-x---. 1 weblogic weblogic 578 Aug 10 2017 pack.sh
-rwxr-x---. 1 weblogic weblogic 582 Aug 10 2017 unpack.sh
-rwxr-x---. 1 weblogic weblogic 35171 Aug 21 2017 wlscontrol.sh
-rwxr-x---. 1 weblogic weblogic 16286 Aug 21 2017 wlsifconfig.sh
-rwxr-x---. 1 weblogic weblogic 807 Aug 10 2017 wlst.sh
[weblogic@yxbj bin]$ ./config.sh -mode=silent -silent_script=/home/weblogic/create_domain.rsp -logfile=/home/weblogic/create_domain.log
WARNING: This is a deprecated script. Please invoke the config.sh script under oracle_common/common/bin.
<< read template from "/home/weblogic/wls12213/wlserver/common/templates/wls/wls.jar"
>> succeed: read template from "/home/weblogic/wls12213/wlserver/common/templates/wls/wls.jar"
<< set config option JavaHome to "/usr/java/jdk1.8.0_11"
>> succeed: set config option JavaHome to "/usr/java/jdk1.8.0_11"
<< set config option ServerStartMode to "prod"
>> succeed: set config option ServerStartMode to "prod"
<< find Server "AdminServer" as AdminServer
>> succeed: find Server "AdminServer" as AdminServer
<< set AdminServer attribute ListenAddress to ""
>> succeed: set AdminServer attribute ListenAddress to ""
<< set AdminServer attribute ListenPort to "7010"
>> succeed: set AdminServer attribute ListenPort to "7010"
<< set AdminServer attribute SSL!Enabled to "true"
>> succeed: set AdminServer attribute SSL!Enabled to "true"
<< set AdminServer attribute SSL!ListenPort to "7002"
>> succeed: set AdminServer attribute SSL!ListenPort to "7002"
<< find User "weblogic" as u1
>> succeed: find User "weblogic" as u1
<< set u1 attribute Password to "********"
>> succeed: set u1 attribute Password to "********"
<< write Domain to "/home/weblogic/wls12213/user_projects/domains/base_domain/"
..................................................
>> succeed: write Domain to "/home/weblogic/wls12213/user_projects/domains/base_domain/"
<< close template
>> succeed: close template
[root@yxbj security]# cd /home/weblogic/wls12213/user_projects/domains/base_domain/servers/AdminServer/
[root@yxbj AdminServer]# mkdir security
[root@yxbj AdminServer]# cd security/
[root@yxbj security]# vi boot.properties
username=weblogic
password=weblogic
[weblogic@yxbj bin]$ cd /home/weblogic/wls12213/user_projects/domains/base_domain/
[weblogic@yxbj base_domain]$ ./startWebLogic.sh
[weblogic@yxbj bin]$ exit
#!/bin/bash
export JAVA_HOME=/home/weblogic/jdk1.8.0_11
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$JAVA_HOME/bin:$PATH
nohup /home/weblogic/wls12213/user_projects/domains/base_domain/startWebLogic.s
h > a.log&
[root@5f07b8e08dfc /]# chmod 777 run.sh
[root@yxbj security]# docker stop 4e488d0bc30e
[root@yxbj security]# docker commit 4e488d0bc30e commcon_weblogic12.2.1.3_jdk1.8:1.0
测试新的镜像