linux安装weblogic 12

    准备weblogic安装包:https://www.oracle.com/technetwork/middleware/weblogic/downloads/index.html
    准备JDK1.8: java 1.8 linux 64位版本
    创建weblogic组
     [root@localhost ~]# groupadd weblogic

    创建weblogic用户
     [root@loaclhost ~]# useradd -g weblogic weblogic

    为用户创建密码
     [root@localhost ~]# passwd weblogic

     拷贝weblogic安装包、JDK到/home/weblogic下
    修改文件的权限
    [root@localhost ~]# chown -R weblogic:weblogic /home/weblogic/

     切换到weblogic用户
 [root@localhost weblogic]# su - weblogic

[wweblogic@localhost ~]$ ll
总用量 1006584
-rw-r--r--. 1 weblogic weblogic 838986083 8月  23 13:10 fmw_12.2.1.3.0_wls_Disk1_1of1.zip
drwxr-xr-x. 7 weblogic weblogic       245 10月  6 2018 jdk1.8.0_191
-rw-r--r--. 1 weblogic weblogic 191753373 8月  23 13:10 jdk-8u191-linux-x64.tar.gz
[weblogic@localhost ~]$ unzip fmw_12.2.1.3.0_wls_Disk1_1of1.zip 
Archive:  fmw_12.2.1.3.0_wls_Disk1_1of1.zip
  inflating: fmw_12.2.1.3.0_wls.jar  
  inflating: fmw_12213_readme.htm    
[weblogic@localhost ~]$ vi .bash_profile 
export JAVA_HOME=/home/weblogic/jdk1.8.0_191
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_HOME/bin
[weblogic@localhost ~]$  source .bash_profile
[weblogic@localhost ~]$ touch wsl.rsp
[weblogic@localhost ~]$ chmod 766 wsl.rsp 
[weblogic@localhost ~]$ touch oraInst.loc
[weblogic@localhost ~]$ chmod 766 oraInst.loc 
[weblogic@localhost ~]$ ll
总用量 1826136
-rw-r--r--. 1 weblogic weblogic 838986083 8月  23 13:10 fmw_12.2.1.3.0_wls_Disk1_1of1.zip
-r-xr-xr-x. 1 weblogic weblogic 839208313 8月  22 2017 fmw_12.2.1.3.0_wls.jar
-rw-r--r--. 1 weblogic weblogic      9063 8月   9 2017 fmw_12213_readme.htm
drwxr-xr-x. 7 weblogic weblogic       245 10月  6 2018 jdk1.8.0_191
-rw-r--r--. 1 weblogic weblogic 191753373 8月  23 13:10 jdk-8u191-linux-x64.tar.gz
-rwxrw-rw-. 1 weblogic weblogic         0 8月  23 13:16 oraInst.loc
-rwxrw-rw-. 1 weblogic weblogic         0 8月  23 13:16 wsl.rsp
[weblogic@localhost ~]$ vi wsl.rsp 
          [ENGINE]
    Response File Version=1.0.0.0.0

    [GENERIC]

    ORACLE_HOME=/home/weblogic/oracle    //安装路径

    INSTALL_TYPE=WebLogic Server

    MYORACLESUPPORT_USERNAME=

    MYORACLESUPPORT_PASSWORD=<SECURE VALUE>

    DECLINE_SECURITY_UPDATES=true

    SECURITY_UPDATES_VIA_MYORACLESUPPORT=false

    PROXY_HOST=

    PROXY_PORT=

    PROXY_USER=

    PROXY_PWD=<SECURE VALUE>

    COLLECTOR_SUPPORTHUB_URL=
[weblogic@localhost ~]$ mkdir oracle
[weblogic@localhost ~]$ ll
总用量 1826140
-rw-r--r--. 1 weblogic weblogic 838986083 8月  23 13:10 fmw_12.2.1.3.0_wls_Disk1_1of1.zip
-r-xr-xr-x. 1 weblogic weblogic 839208313 8月  22 2017 fmw_12.2.1.3.0_wls.jar
-rw-r--r--. 1 weblogic weblogic      9063 8月   9 2017 fmw_12213_readme.htm
drwxr-xr-x. 7 weblogic weblogic       245 10月  6 2018 jdk1.8.0_191
-rw-r--r--. 1 weblogic weblogic 191753373 8月  23 13:10 jdk-8u191-linux-x64.tar.gz
drwxrwxr-x. 2 weblogic weblogic         6 8月  23 13:17 oracle
-rwxrw-rw-. 1 weblogic weblogic         0 8月  23 13:16 oraInst.loc
-rwxrw-rw-. 1 weblogic weblogic      1297 8月  23 13:17 wsl.rsp
[weblogic@localhost ~]$ chmod 766 oracle/
[weblogic@localhost ~]$ chmod -R  766 oracle/
[weblogic@localhost ~]$ vi oraInst.loc 

  inventory_loc=/home/weblogic/oraInventory
  inst_group=weblogic  

[weblogic@localhost ~]$ ll
总用量 1826144
-rw-r--r--. 1 weblogic weblogic 838986083 8月  23 13:10 fmw_12.2.1.3.0_wls_Disk1_1of1.zip
-r-xr-xr-x. 1 weblogic weblogic 839208313 8月  22 2017 fmw_12.2.1.3.0_wls.jar
-rw-r--r--. 1 weblogic weblogic      9063 8月   9 2017 fmw_12213_readme.htm
drwxr-xr-x. 7 weblogic weblogic       245 10月  6 2018 jdk1.8.0_191
-rw-r--r--. 1 weblogic weblogic 191753373 8月  23 13:10 jdk-8u191-linux-x64.tar.gz
drwxrw-rw-. 2 weblogic weblogic         6 8月  23 13:17 oracle
-rwxrw-rw-. 1 weblogic weblogic        62 8月  23 13:18 oraInst.loc
-rwxrw-rw-. 1 weblogic weblogic      1297 8月  23 13:17 wsl.rsp
[weblogic@localhost ~]$ java -jar fmw_12.2.1.3.0_wls.jar  -silent -responseFile 
/home/weblogic/wsl.rsp -invPtrLoc /home/weblogic/oraInst.loc
启动程序日志文件为/tmp/OraInstall2019-08-23_01-19-01PM/launcher2019-08-23_01-19-01PM.log。 正在提取安装程序... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 完成 检查 CPU 速度是否大于 300 MHz。 实际为 2200.314 MHz 通过 检查交换空间: 必须大于 512 MB。 实际为 2536 MB 通过 检查此平台是否需要 64 位 JVM。 实际为64 通过 (不需要 64 位) 检查临时空间: 必须大于 300 MB。 实际为 22976 MB 通过 准备从/tmp/OraInstall2019-08-23_01-19-01PM启动 Oracle Universal Installer 日志:/tmp/OraInstall2019-08-23_01-19-01PM/install2019-08-23_01-19-01PM.log 版权所有 (c) 1996, 2017, Oracle 和/或其附属公司。保留所有权利。 正在读取响应文件... Parse Error at line number:1 NE] 必须以 VARIABLE_NAME=VALUE 格式定义段中的变量。找不到 "="!
原因可能是由于内容不全,检查是否全
错误: 读取响应文件时出错。请确保响应文件存在并且格式正确。 o读ra取c响l应e文.件a时s出.i错n。中s止ta安l装。l.engine.modules.response.exception.ResponseFileFormatException: Parse error at line no:1:NE] at oracle.as.install.engine.modules.response.action.INIFileReader.parseError(INIFileReader.java:299) at oracle.as.install.engine.modules.response.action.INIFileReader.parse(INIFileReader.java:234) at oracle.as.install.engine.modules.response.action.INIFileReader.getModel(INIFileReader.java:121) at oracle.as.install.engine.modules.response.ResponseFileProcessor$ThreadReader.run(ResponseFileProcessor.java:205) 可在此处找到日志: /tmp/OraInstall2019-08-23_01-19-01PM。 [weblogic@localhost ~]$ java -jar fmw_12.2.1.3.0_wls.jar -silent -responseFile /home/weblogic/wsl.rsp -invPtrLoc /home/weblogic/oraInst.loc 启动程序日志文件为/tmp/OraInstall2019-08-23_01-22-25PM/launcher2019-08-23_01-22-25PM.log。 正在提取安装程序... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 完成 检查 CPU 速度是否大于 300 MHz。 实际为 2200.314 MHz 通过 检查交换空间: 必须大于 512 MB。 实际为 2536 MB 通过 检查此平台是否需要 64 位 JVM。 实际为64 通过 (不需要 64 位) 检查临时空间: 必须大于 300 MB。 实际为 22104 MB 通过 准备从/tmp/OraInstall2019-08-23_01-22-25PM启动 Oracle Universal Installer 日志:/tmp/OraInstall2019-08-23_01-22-25PM/install2019-08-23_01-22-25PM.log 版权所有 (c) 1996, 2017, Oracle 和/或其附属公司。保留所有权利。 正在读取响应文件... 跳过软件更新 开始检查: CertifiedVersions 预期的结果: oracle-6, oracle-7, redhat-7, redhat-6, SuSE-11, SuSE-12之一 实际结果: redhat-null 检查完成。此次检查的总体结果为: 通过 CertifiedVersions 检查: 成功。 开始检查: CheckJDKVersion 预期的结果: 1.8.0_131 实际结果: 1.8.0_191 检查完成。此次检查的总体结果为: 通过 CheckJDKVersion 检查: 成功。 已启用此会话的验证。 正在验证数据 复制文件 完成百分比: 10 完成百分比: 20 完成百分比: 30 完成百分比: 40 完成百分比: 50 完成百分比: 60 完成百分比: 70 完成百分比: 80 完成百分比: 90 完成百分比: 100 Oracle Fusion Middleware 12c WebLogic Server 和 Coherence 12.2.1.3.0 的 安装 已成功完成。 日志已成功复制到/home/weblogic/oraInventory/logs。 [weblogic@localhost ~]$ pwd /home/weblogic [weblogic@localhost ~]$ ll 总用量 1826144 -rw-r--r--. 1 weblogic weblogic 838986083 8月 23 13:10 fmw_12.2.1.3.0_wls_Disk1_1of1.zip -r-xr-xr-x. 1 weblogic weblogic 839208313 8月 22 2017 fmw_12.2.1.3.0_wls.jar -rw-r--r--. 1 weblogic weblogic 9063 8月 9 2017 fmw_12213_readme.htm drwxr-xr-x. 7 weblogic weblogic 245 10月 6 2018 jdk1.8.0_191 -rw-r--r--. 1 weblogic weblogic 191753373 8月 23 13:10 jdk-8u191-linux-x64.tar.gz drwxrw-rw-. 10 weblogic weblogic 177 8月 23 13:26 oracle -rwxrw-rw-. 1 weblogic weblogic 62 8月 23 13:18 oraInst.loc drwxrwx---. 6 weblogic weblogic 64 8月 23 13:27 oraInventory -rwxrw-rw-. 1 weblogic weblogic 366 8月 23 13:22 wsl.rsp [weblogic@localhost ~]$ cd oracle/ [weblogic@localhost oracle]$ pwd /home/weblogic/oracle [weblogic@localhost oracle]$ mkdir -p /home/weblogic/oracle/user_projects/domains/base_domain/ [weblogic@localhost oracle]$ chmod -R 766 /home/weblogic/oracle/user_projects/domains/base_domain/ [weblogic@localhost oracle]$ cd .. [weblogic@localhost ~]$ vi create_domain.rsp
read template from "/home/weblogic/oracle/wlserver/common/templates/wls/wls.jar";
set JavaHome "/home/weblogic/jdk1.8.0_191";
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/oracle/user_projects/domains/base_domain/";
// The domain name will be "demo-domain"
close template;        
[weblogic@localhost ~]$ pwd
/home/weblogic
[weblogic@localhost bin]$ pwd
/home/weblogic/oracle/wlserver/common/bin
[weblogic@localhost bin]$  ./config.sh -mode=silent -silent_script=/home/weblogic/create_domain.rsp
-logfile=/home/weblogic/create_domain.log 由于写的路径不对 检查路径create_domain.rsp文件检查
WARNING: This is a deprecated script. Please invoke the config.sh script under oracle_common/common/bin. [weblogic@localhost 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/oracle/wlserver/common/templates/wls/wls.jar" >> succeed: read template from "/home/weblogic/oracle/wlserver/common/templates/wls/wls.jar" << set config option JavaHome to "/home/weblogic/jdk1.8.0_191" >> succeed: set config option JavaHome to "/home/weblogic/jdk1.8.0_191" << 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 "7001" >> succeed: set AdminServer attribute ListenPort to "7001" << 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/oracle/user_projects/domains/base_domain/" .................................................. >> succeed: write Domain to "/home/weblogic/oracle/user_projects/domains/base_domain/" << close template >> succeed: close template [weblogic@localhost bin]$ mkdir -p /home/weblogic/oracle/user_projects/domains/base_domain/servers/AdminServer/ [weblogic@localhost bin]$ chmod -R 766 /home/weblogic/oracle/user_projects/domains/base_domain/servers/AdminServer/ [weblogic@localhost bin]$ cd /home/weblogic/oracle/user_projects/domains/base_domain/ [weblogic@localhost base_domain]$ ll 总用量 16 drwxr-x---. 2 weblogic weblogic 24 8月 23 13:36 autodeploy drwxr-x---. 6 weblogic weblogic 4096 8月 23 13:36 bin drwxr-x---. 8 weblogic weblogic 124 8月 23 13:36 config drwxr-x---. 2 weblogic weblogic 24 8月 23 13:36 console-ext -rw-r-----. 1 weblogic weblogic 327 7月 19 2017 fileRealm.properties drwxr-x---. 3 weblogic weblogic 4096 8月 23 13:36 init-info drwxr-x---. 2 weblogic weblogic 24 8月 23 13:36 lib drwxr-x---. 2 weblogic weblogic 63 8月 23 13:36 nodemanager drwxr-x---. 2 weblogic weblogic 6 7月 19 2017 resources drwxr-x---. 2 weblogic weblogic 143 8月 23 13:36 security drwxrwxr-x. 3 weblogic weblogic 25 8月 23 13:38 servers -rwxr-x---. 1 weblogic weblogic 271 8月 23 13:36 startWebLogic.sh [weblogic@localhost base_domain]$ cd servers/ [weblogic@localhost servers]$ ll 总用量 0 drwxrw-rw-. 2 weblogic weblogic 6 8月 23 13:38 AdminServer [weblogic@localhost servers]$ cd AdminServer/ [weblogic@localhost AdminServer]$ ll 总用量 0 [weblogic@localhost AdminServer]$ mksir -p security -bash: mksir: 未找到命令 [weblogic@localhost AdminServer]$ [weblogic@localhost AdminServer]$ mkdir -p security [weblogic@localhost AdminServer]$ chmod -R 766 security/ [weblogic@localhost AdminServer]$ cd security/ [weblogic@localhost security]$ vi boot.properties
登录账号和密码
username=weblogic
password=weblogic
View Code

[weblogic@localhost security]$  cd /home/weblogic/oracle/user_projects/domains/base_domain/
[weblogic@localhost base_domain]$ ll
总用量 16
drwxr-x---. 2 weblogic weblogic   24 8月  23 13:36 autodeploy
drwxr-x---. 6 weblogic weblogic 4096 8月  23 13:36 bin
drwxr-x---. 8 weblogic weblogic  124 8月  23 13:36 config
drwxr-x---. 2 weblogic weblogic   24 8月  23 13:36 console-ext
-rw-r-----. 1 weblogic weblogic  327 7月  19 2017 fileRealm.properties
drwxr-x---. 3 weblogic weblogic 4096 8月  23 13:36 init-info
drwxr-x---. 2 weblogic weblogic   24 8月  23 13:36 lib
drwxr-x---. 2 weblogic weblogic   63 8月  23 13:36 nodemanager
drwxr-x---. 2 weblogic weblogic    6 7月  19 2017 resources
drwxr-x---. 2 weblogic weblogic  143 8月  23 13:36 security
drwxrwxr-x. 3 weblogic weblogic   25 8月  23 13:38 servers
-rwxr-x---. 1 weblogic weblogic  271 8月  23 13:36 startWebLogic.sh
[weblogic@localhost base_domain]$ ./startWebLogic.sh
.
.
JAVA Memory arguments: -Xms256m -Xmx512m 
.
CLASSPATH=/home/weblogic/jdk1.8.0_191/lib/tools.jar:/home/weblogic/oracle/wlserver/server/lib/weblogic.jar:/home/weblogic/oracle/wlserver/../oracle_common/modules/thirdparty/ant-contrib-1.0b3.jar:/home/weblogic/oracle/wlserver/modules/features/oracle.wls.common.nodemanager.jar::/home/weblogic/oracle/wlserver/common/derby/lib/derbynet.jar:/home/weblogic/oracle/wlserver/common/derby/lib/derbyclient.jar:/home/weblogic/oracle/wlserver/common/derby/lib/derby.jar:.:/home/weblogic/jdk1.8.0_191/lib/dt.jar:/home/weblogic/jdk1.8.0_191/lib/tools.jar
.
PATH=/home/weblogic/oracle/user_projects/domains/base_domain/bin:/home/weblogic/oracle/wlserver/server/bin:/home/weblogic/oracle/wlserver/../oracle_common/modules/thirdparty/org.apache.ant/1.9.8.0.0/apache-ant-1.9.8/bin:/home/weblogic/jdk1.8.0_191/jre/bin:/home/weblogic/jdk1.8.0_191/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/weblogic/.local/bin:/home/weblogic/bin:/home/weblogic/.local/bin:/home/weblogic/bin:/home/weblogic/jdk1.8.0_191/bin
.
***************************************************
*  To start WebLogic Server, use a username and   *
*  password assigned to an admin-level user.  For *
*  server administration, use the WebLogic Server *
*  console at http://hostname:port/console        *
***************************************************
Starting WLS with line:
/home/weblogic/jdk1.8.0_191/bin/java -server   -Xms256m -Xmx512m  -cp /home/weblogic/oracle/wlserver/server/lib/weblogic-launcher.jar -Dlaunch.use.env.classpath=true -Dweblogic.Name=AdminServer -Djava.security.policy=/home/weblogic/oracle/wlserver/server/lib/weblogic.policy  -Dweblogic.ProductionModeEnabled=true  -Djava.system.class.loader=com.oracle.classloader.weblogic.LaunchClassLoader  -javaagent:/home/weblogic/oracle/wlserver/server/lib/debugpatch-agent.jar -da -Dwls.home=/home/weblogic/oracle/wlserver/server -Dweblogic.home=/home/weblogic/oracle/wlserver/server      weblogic.Server
<2019-8-23 下午01时41分35秒 CST> <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.> 
<2019-8-23 下午01时41分35秒 CST> <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.> 
<2019-8-23 下午01时41分36秒 CST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 25.191-b12 from Oracle Corporation.> 
<2019-8-23 下午01时41分36秒 CST> <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.> 
<2019-8-23 下午01时41分37秒 CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 12.2.1.3.0 Thu Aug 17 13:39:49 PDT 2017 1882952> 
<2019-8-23 下午01时41分38秒 CST> <Info> <Security> <BEA-090065> <Getting boot identity from user.> 
Enter username to boot WebLogic server:weblogic
Enter password to boot WebLogic server:
<2019-8-23 下午01时41分55秒 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.> 
<2019-8-23 下午01时41分55秒 CST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool.> 
<2019-8-23 下午01时41分55秒 CST> <Info> <WorkManager> <BEA-002942> <CMM memory level becomes 0. Setting standby thread pool size to 256.> 
<2019-8-23 下午01时41分56,441秒 CST> <Notice> <Log Management> <BEA-170019> <The server log file weblogic.logging.FileStreamHandler instance=314836542
Current log file=/home/weblogic/oracle/user_projects/domains/base_domain/servers/AdminServer/logs/AdminServer.log
Rotation dir=/home/weblogic/oracle/user_projects/domains/base_domain/servers/AdminServer/logs
 is opened. All server side log events will be written to this file.> 
<2019-8-23 下午01时41分56,795秒 CST> <Notice> <Security> <BEA-090946> <Security pre-initializing using security realm: myrealm> 
<2019-8-23 下午01时41分58,031秒 CST> <Notice> <Security> <BEA-090947> <Security post-initializing using security realm: myrealm> 
<2019-8-23 下午01时41分59,836秒 CST> <Notice> <Security> <BEA-090082> <Security initialized using administrative security realm: myrealm> 
<2019-8-23 下午01时42分00,580秒 CST> <Notice> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://127.0.0.1:7001/jndi/weblogic.management.mbeanservers.runtime.> 
<2019-8-23 下午01时42分22,269秒 CST> <Notice> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://127.0.0.1:7001/jndi/weblogic.management.mbeanservers.domainruntime.> 
<2019-8-23 下午01时42分22,554秒 CST> <Notice> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://127.0.0.1:7001/jndi/weblogic.management.mbeanservers.edit.> 
<2019-8-23 下午01时42分24,578秒 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY.> 
<2019-8-23 下午01时42分24,579秒 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.> 
<2019-8-23 下午01时42分24,676秒 CST> <Notice> <Log Management> <BEA-170036> <The Logging monitoring service timer has started to check for logged message counts every 30 seconds.> 
<2019-8-23 下午01时42分32,152秒 CST> <Notice> <Log Management> <BEA-170027> <The server has successfully established a connection with the Domain level Diagnostic Service.> 
<2019-8-23 下午01时42分34,189秒 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN.> 
<2019-8-23 下午01时42分34,324秒 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING.> 
<2019-8-23 下午01时42分34,578秒 CST> <Alert> <Security> <BEA-090165> <Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,579秒 CST> <Error> <WebLogicServer> <BEA-000297> <Inconsistent security configuration, weblogic.management.configuration.ConfigurationException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,580秒 CST> <Emergency> <Security> <BEA-090034> <Not listening for SSL, weblogic.management.configuration.ConfigurationException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer.> 
<2019-8-23 下午01时42分34,580秒 CST> <Error> <Server> <BEA-002606> <The server is unable to create a server socket for listening on channel "DefaultSecure[iiops]". The address 127.0.0.1 might be incorrect or another process is using port 7002: java.io.IOException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,591秒 CST> <Warning> <Server> <BEA-002611> <The hostname "localhost", maps to multiple IP addresses: 127.0.0.1, 0:0:0:0:0:0:0:1.> 
<2019-8-23 下午01时42分34,594秒 CST> <Alert> <Security> <BEA-090165> <Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,594秒 CST> <Error> <WebLogicServer> <BEA-000297> <Inconsistent security configuration, weblogic.management.configuration.ConfigurationException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,594秒 CST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.> 
<2019-8-23 下午01时42分34,595秒 CST> <Emergency> <Security> <BEA-090034> <Not listening for SSL, weblogic.management.configuration.ConfigurationException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer.> 
<2019-8-23 下午01时42分34,598秒 CST> <Error> <Server> <BEA-002606> <The server is unable to create a server socket for listening on channel "DefaultSecure[iiops][2]". The address 0:0:0:0:0:0:0:1%lo might be incorrect or another process is using port 7002: java.io.IOException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,600秒 CST> <Alert> <Security> <BEA-090165> <Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,601秒 CST> <Error> <WebLogicServer> <BEA-000297> <Inconsistent security configuration, weblogic.management.configuration.ConfigurationException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,602秒 CST> <Emergency> <Security> <BEA-090034> <Not listening for SSL, weblogic.management.configuration.ConfigurationException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer.> 
<2019-8-23 下午01时42分34,600秒 CST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 0:0:0:0:0:0:0:1%lo:7001 for protocols iiop, t3, ldap, snmp, http.> 
<2019-8-23 下午01时42分34,602秒 CST> <Error> <Server> <BEA-002606> <The server is unable to create a server socket for listening on channel "DefaultSecure[iiops][1]". The address 192.168.80.28 might be incorrect or another process is using port 7002: java.io.IOException: Cannot find identity keystore file /home/weblogic/oracle/user_projects/domains/base_domain/security/DemoIdentity.jks on server AdminServer> 
<2019-8-23 下午01时42分34,690秒 CST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 192.168.80.28:7001 for protocols iiop, t3, ldap, snmp, http.> 
<2019-8-23 下午01时42分34,691秒 CST> <Notice> <WebLogicServer> <BEA-000329> <Started the WebLogic Server Administration Server "AdminServer" for domain "base_domain" running in production mode.> 
<2019-8-23 下午01时42分34,695秒 CST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.> 
<2019-8-23 下午01时42分34,696秒 CST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 0:0:0:0:0:0:0:1%lo:7001 for protocols iiop, t3, ldap, snmp, http.> 
<2019-8-23 下午01时42分34,697秒 CST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 192.168.80.28:7001 for protocols iiop, t3, ldap, snmp, http.> 
<2019-8-23 下午01时42分34,713秒 CST> <Notice> <WebLogicServer> <BEA-000360> <The server started in RUNNING mode.> 
<2019-8-23 下午01时42分34,729秒 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING.> 
<2019-8-23 下午01时45分05,780秒 CST> <Notice> <JMX> <BEA-149535> <JMX Resiliency Activity Server=AdminServer : Initializing callbacks> 
<2019-8-23 下午01时45分05,799秒 CST> <Notice> <JMX> <BEA-149535> <JMX Resiliency Activity Server=AdminServer : Added MBeanServerConnection in DomainRuntimeServiceMBean > 
<2019-8-23 下午01时45分05,800秒 CST> <Notice> <JMX> <BEA-149535> <JMX Resiliency Activity Server=AdminServer : Callback is done> 
<2019-8-23 下午01时45分05,806秒 CST> <Notice> <JMX> <BEA-149535> <JMX Resiliency Activity Server=AdminServer : Connection already exists for the server. Did not attempt to connect to the server> 
<2019-8-23 下午01时45分09,083秒 CST> <Notice> <JMX> <BEA-149535> <JMX Resiliency Activity Server=All Servers : Resolving connection list DomainRuntimeServiceMBean> 

  

原文地址:https://www.cnblogs.com/liyang6/p/11399778.html