WebLogic是美国Oracle公司出品的一个application server,确切的说是一个基于JAVAEE架构的中间件,WebLogic是用于开发、集成、部署和管理大型分布式Web应用、网络应用和数据库应用的Java应用服务器。
安装包获取
可以在此获取,或者参照下边步骤获取
链接:https://pan.baidu.com/s/1__KjfnzolS30Zs98xE-vHQ
提取码:hell
jdk环境配置
wget https://download.oracle.com/otn/java/jdk/8u202-b08/1961070e4c9b4e26a04e7f5a083f551e/jdk-8u202-linux-x64.rpm
rpm -ivh /root/jdk-8u202-linux-x64.rpm
java -version
weblogic用户创建
weblogic不能在root环境下安装,我在root环境下安装会报错
groupadd weblogic
useradd -g weblogic weblogic
切换到weblogic用户
su - weblogic
获取安装包
#下载安装包
wget https://www.oracle.com/webapps/redirect/signon?nexturl=https://download.oracle.com/otn/nt/middleware/12c/12213/fmw_12.2.1.3.0_wls_quick_Disk1_1of1.zip
#解压
unzip fmw_12.2.1.3.0_wls_quick_Disk1_1of1.zip
创建相关目录
#静默安装应答文件存放目录
mkdir /home/weblogic/rsp
#产品清单目录,安装产品的信息
mkdir /home/weblogic/oraInventory
创建相应文件
vim /home/weblogic/rsp/wls.rsp
[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/wls #创建安装目录
#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=
创建Loc文件
vim /home/weblogic/rsp/oraInst.loc
inventory_loc=/home/weblogic/oraInventory
inst_group=weblogic
安装
java -jar /home/weblogic/fmw_12.2.1.3.0_wls_quick.jar -silent -responseFile /home/weblogic/rsp/wls.rsp -invPtrLoc /home/weblogic/rsp/oraInst.loc ORACLE_HOME="/home/weblogic/wls"
ps:我之前安装时,参照大多数博客,发现他们没有指定ORACLE_HOME这个参数,还能安装到指定目录,但是我安装时,就一直安装到默认的wls12213目录,即使应答文件中已经指定了安装目录,所以,最好加上这个参数
创建域
weblogic启动时,是以某个域来启动的
cd /home/weblogic/wls/wlserver/common/bin
vim create_domains.py
#!/usr/bin/python
readTemplate('/home/weblogic/wls/wlserver/common/templates/wls/wls.jar')
cd('Servers/AdminServer')
set('ListenAddress','192.168.20.132')
set('ListenPort', 7001)
cd('/Security/base_domain/User/weblogic')
cmo.setPassword('weblogic123')
setOption('OverwriteDomain', 'true')
setOption('ServerStartMode', 'prod')
writeDomain('/home/weblogic/wls/user_projects/domains/base_domain')
closeTemplate()
exit()
添加权限
chmod +x create_domains.py
执行创建
./wlst.sh ./create_domains.py
创建免密登录
weblogic进程启动时,每次都需要输入用户名和密码,特别麻烦,最好配置免密登录
mkdir -p /home/weblogic/wls/user_projects/domains/base_domain/servers/AdminServer/security
vim /home/weblogic/wls/user_projects/domains/base_domain/servers/AdminServer/security/boot.properties
username=weblogic
password=weblogic123
以weblogic用户身份启动weblogic
nohup /home/weblogic/wls/user_projects/domains/base_domain/bin/startWebLogic.sh >/dev/null 2>&1 &
访问
weblogic启动较慢,请耐心等待
http://192.168.20.132:7001/console
基础了解请参考:https://www.cnblogs.com/luckypo/p/7884250.html