Linux平台Weblogic的简单安装

用户、用户组、目录分配

用户 用户组 目录 说明
weblogic weblogic /app/weblogic  
weblogic weblogic /app/weblogic  

服务器

IP 说明
192.168.25.31 主机
192.168.25.32 集群节点

产品

产品 版本
weblogic fmw_12.2.1.2.0_wls.jar
jdk jdk-8u172-linux-x64.tar.gz

weblogic产品的安装

以下操作所有服务器均需执行

1.1 用户组和产品安装目录
1 groupadd weblogic
2 useradd -g weblogic weblogic
3 echo "weblogic:123456" | /usr/sbin/chpasswd
4 mkdir -p /app/weblogic
5 chown -R weblogic:weblogic /app

 

1.2 操作系统内核参数
 1 [root@weblogic01 ~]# cat /etc/sysctl.conf 
 2 # weblogic
 3 ?
 4 net.ipv4.tcp_max_syn_backlog = 8196
 5 net.ipv4.tcp_fin_timeout = 30
 6 net.ipv4.tcp_tw_reuse = 1
 7 net.core.rmem_default = 4194304
 8 net.core.rmem_max = 4194304
 9 net.core.wmem_default = 262144
10 net.core.wmem_max = 1048576
11 net.core.somaxconn = 4096

 

1.3 操作系统内核参数资源
1 [root@weblogic01 ~]# cat /etc/security/limits.conf 
2 * soft nproc 4096
3 * hard nproc 4096
4 * soft nofile 8192
5 * hard nofile 8192
1.4 JDK安装
tar -xvf jdk-8u172-linux-x64.tar.gz

配置JDK环境变量

 1 [root@weblogic01 ~]# cat /etc/profile
 2 ......
 3 export JAVA_HOME=/usr/local/jdk1.8.0_172
 4 export PATH=$JAVA_HOME/bin:$PATH
 5 export CLASSPATH=.:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar:$CLASSPATH
 6 [root@weblogic01 ~]# source /etc/profile
 7 [root@weblogic01 ~]# java -version
 8 java version "1.8.0_172"
 9 Java(TM) SE Runtime Environment (build 1.8.0_172-b37)
10 Java HotSpot(TM) 64-Bit Server VM (build 25.172-b37, mixed mode)

切换weblogic用户登录服务器

1.5 创建wls.rsp响应文件
1 [root@weblogic01 app]# cat wls12212.rsp
2 # 安装目录
3 ORACLE_HOME=/app/weblogic/wls12212
4 # 安装产品
5 INSTALL_TYPE=WebLogic Server
6 DECLINE_SECURITY_UPDATES=true
7 SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
1.6 创建oraInst.loc环境初始化文件
1 [root@weblogic01 app]# cat oraInst.loc 
2 # 产品清单目录
3 inventory_loc=/app/weblogic
4 # 用户组名称
5 inst_group=weblogic

1.7 执行安装命令

[weblogic@weblogic01 app]$ java  -jar /app/fmw_12.2.1.2.0_wls.jar -silent -responseFile /app/wls12212.rsp -invPtrLoc /app/oraInst.loc

安装过程

Linux平台Weblogic的简单安装
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
Percent Complete : 100

The installation of Oracle Fusion Middleware 12c WebLogic Server and Coherence 12.2.1.3.0 completed successfully.
Logs successfully copied to /app/weblogic/logs.
View Code

结果显示如上,则安装成功!

 

创建base_domain默认域

使用weblogic登录192.168.25.31服务器(主机)

Linux平台Weblogic的简单安装
cd /app/weblogic/wls12212/oracle_common/common/bin
./wlst.sh
?
执行完./wist.sh后,在命令行内依次输入执行,有些需要回车继续
第一步:
readTemplate(/app/weblogic/wls12212/wlserver/common/templates/wls/wls.jar)
cd(Servers/AdminServer)
第二步:
set(ListenAddress,‘‘)
set(ListenPort,7771)
cd(../..)
第三步:
cd(Security/base_domain/User/weblogic)
cmo.setPassword(weblogic123)
setOption(OverwriteDomain,true)
第四步:
writeDomain(/app/weblogic/base_domain)
第五步:
closeTemplate()
exit()
View Code

 


?

 

Linux平台Weblogic的简单安装

上一篇:ASP.Net请求处理机制初步探索之旅 - Part 2 核心


下一篇:PPT必不可少的神器网站