Weblogic 静默安装

准备

  • Linux CentOS6.9 系统
  • Weblogic 12c
  • JDK 1.8

下载Weblogic Server

直接去官网下载,下载需要用户名和密码,如果没有注册一个即可

解压

解压获得到fmw_12.2.1.0.0_wls.jar文件

安装Weblogic Server

准备
  1. 如果没有安装JDK,需要安装,保证环境变量正确

  2. 新建用户组weblogic

    1
    #groupadd weblogic
  3. 新建用户weblogic 并修改用户密码
    添加用户,并用-g参数来制定 web用户组

    1
    2
    #useradd -g weblogic weblogic
    #passwd 密码
  4. 切换到weblogic用户

  5. 准备安装目录

    1
    /opt/weblogic
安装
  1. 创建响应文件wls.rsp

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    [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=/opt/weblogic/middleware

    #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=<SECURE VALUE>

    #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 co
    nfiguration

    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=<SECURE VALUE>

    #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=

  2. 创建Loc文件 oraInst.loc

    1
    2
    3
    4
    5
    # vi /opt/weblogic/oraInst.loc

    inventory_loc=/opt/weblogic/oraInventory
    inst_group=weblogic

  3. 保证所需要得目录weblogic用户要用读写权限

  4. 安装, wls.rsp,oraInst.loc必须指定绝对路径

    1
    # java -jar fmw_12.2.1.0.0_wls.jar  -silent  -responseFile  /opt/weblogic/wls.rsp  -invPtrLoc /opt/weblogic/oraInst.loc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
启动程序日志文件为/tmp/OraInstall2018-10-02_11-25-44AM/launcher2018-10-02_11-25-44AM.log。
正在提取文件......................
......................................

已启用此会话的验证。
正在验证数据
复制文件
完成百分比: 10
完成百分比: 20
完成百分比: 30
完成百分比: 40
完成百分比: 50
完成百分比: 60
完成百分比: 70
完成百分比: 80
完成百分比: 90
完成百分比: 100
Oracle Fusion Middleware 12c WebLogic Server 和 Coherence 12.2.1.0.0 的 安装 已成功完成。
日志已成功复制到/opt/weblogic/oraInventory/logs。

看到上面的日志表示安装成功

创建domain
  1. 准备脚本

    1
    2
    # cd /opt/weblogic/middleware/wlserver/common/templates/scripts/wlst/
    # cp basicWLSDomain.py create_domain.py
  2. 修改create_domain.py脚本

  • 设置密码
    1
    2
    3
    4
    找到
    # Please set password here before using this script, e.g. cmo.setPassword('value')
    添加
    cmo.setPassword('密码')
  • 删除其他暂时用不到的
    1
    2
    3
    # Create a JMS Server.

    # Write the domain and close the domain template.
  1. 执行脚本
1
# /opt/weblogic/middleware/oracle_common/common/bin/wlst.sh  /opt/weblogic/middleware/wlserver/common/templates/scripts/wlst/create_domain.py

等待成功…

启动server
1
# /opt/weblogic/middleware/user_projects/domains/basicWLSDomain/bin/startWebLogic.sh
问题

在创建domain和启动server特别慢的时候,需要修改或添加环境配置

修改JAVA_HOME/lib/security目录下java.security

1
2
3
securerandom.source=file:/dev/random
改为
securerandom.source=file:/dev/./random

或添加环境变量

1
# export CONFIG_JVM_ARGS='-Djava.security.egd=file:/dev/./urandom'

结语

安装好weblogic才是第一步,后续还有很多要学习的

参考资料

  1. Weblogic 12C 静默安装
  2. 官方文档