Weblogic 静默安装
准备
- Linux CentOS6.9 系统
- Weblogic 12c
- JDK 1.8
下载Weblogic Server
直接去官网下载,下载需要用户名和密码,如果没有注册一个即可
解压
解压获得到fmw_12.2.1.0.0_wls.jar文件
安装Weblogic Server
准备
如果没有安装JDK,需要安装,保证环境变量正确
新建用户组weblogic
1
#groupadd weblogic
新建用户weblogic 并修改用户密码
添加用户,并用-g参数来制定 web用户组1
2#useradd -g weblogic weblogic
#passwd 密码切换到weblogic用户
准备安装目录
1
/opt/weblogic
安装
创建响应文件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=创建Loc文件 oraInst.loc
1
2
3
4
5# vi /opt/weblogic/oraInst.loc
inventory_loc=/opt/weblogic/oraInventory
inst_group=weblogic保证所需要得目录weblogic用户要用读写权限
安装, 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 | 启动程序日志文件为/tmp/OraInstall2018-10-02_11-25-44AM/launcher2018-10-02_11-25-44AM.log。 |
看到上面的日志表示安装成功
创建domain
准备脚本
1
2# cd /opt/weblogic/middleware/wlserver/common/templates/scripts/wlst/
# cp basicWLSDomain.py create_domain.py修改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 | # /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 | securerandom.source=file:/dev/random |
或添加环境变量
1 | # export CONFIG_JVM_ARGS='-Djava.security.egd=file:/dev/./urandom' |
结语
安装好weblogic才是第一步,后续还有很多要学习的