在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
环境: centos6.8 无桌面环境 jdk1.7.0_25 关闭iptables、selinux 安装前准备: 1、新建weblogic用户,设置weblogic密码 useradd weblogic
passwd weblogic
2、切换用户至weblogic下,将已下载的jdk上传到服务器上,解压并移动到/usr/local/jdk1.7 2.1、配置环境变量,这里因为只是weblogic用户用来启动weblogic服务使用,所以,我这里将环境变量只配置到weblogic用户家目录下的/home/weblogic/.bashrc export JAVA_HOME=/usr/local/jdk1.7
export JRE_HOME=/usr/local/jdk1.7/jre
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH
2.2、 要使配置的环境变量生效,执行 source .bashrc 2.3、java -version (看到输出的jdk版本和安装的版本一致则配置成功) 安装weblogic: 1、创建响应文件wls.rsp及loc文件oraInst.loc,模板如下: 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 oraInst.loc inventory_loc=/home/weblogic/oraInventory
inst_group=weblogic
2、上传或者复制weblogic通用安装包到weblogic用户下,确保该文件的所属用户及组为weblogic cd /home/weblogic
cp /usr/local/src/fmw_12.1.3.0.0_wls(1)-weblogic.jar .
3、执行安装 java -jar fmw_12.1.3.0.0_wls\(1\)-weblogic.jar -silent -responseFile /home/weblogic/wls.rsp -invPtrLoc /home/weblogic/oraInst.loc -ignoreSysPrereqs -silent 表明使用静默安装的方式 -responseFile 指定响应文件的路径 -invPtrLoc 指定安装清单文件路径 -ignoreSysPrereqs 忽略一些输出(可以不加此选项) 执行后会有一些输出,会有百分比的安装进度提示,我这里因为是前一天在远程虚机上安装的,重启终端以后输出已经不存在了,这里只做了些笔记记录,所以输出结果已经截不到了,就不在这里记录结果了。 至此,weblogic的程序安装结束,当然正常使用的是时候还得需要配置域才行的。 weblogic新建域: 1、设置环境变量,位于安装目录下的wlserver中 cd Oracle/Middleware/wlserver/common/bin/ 2、创建域,使用脚本执行命令 ./wlst.sh Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0 Initializing WebLogic Scripting Tool (WLST) ... Jython scans all the jar files it can find at first startup. Depending on the system, this process may take a few minutes to complete, and WLST may not return a prompt right away. Welcome to WebLogic Server Administration Scripting Shell Type help() for help on available commands wls:/offline> readTemplate('/home/weblogic/Oracle/Middleware/wlserver/common/templates/wls/wls.jar') wls:/offline/base_domain>cd('Servers/AdminServer') wls:/offline/base_domain/Server/AdminServer>set('ListenAddress','') wls:/offline/base_domain/Server/AdminServer>set('ListenPort', 7001) wls:/offline/base_domain/Server/AdminServer>cd('../..') wls:/offline/base_domain>cd('Security/base_domain/User/weblogic') wls:/offline/base_domain/Security/base_domain/User/weblogic>cmo.setPassword('weblogic123') wls:/offline/base_domain/Security/base_domain/User/weblogic>setOption('OverwriteDomain', 'true') wls:/offline/base_domain/Security/base_domain/User/weblogic>writeDomain('/home/weblogic/Oracle/Middleware/user_projects/domains/base_domain') closeTemplate() exit() 3、启动 cd /home/weblogic/Oracle/Middleware/user_projects/domains/base_domain/bin ./startWeblogic.sh (使用这种执行启动以后,weblogic会运行在前台,若窗口关闭,则程序结束) 使用浏览器访问控制台:http://ip:7001/console 登陆控制台进行维护部署。 至此,域配置也完成。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论