linux基础-jdk1.8和weblogic12.2.1.3.0安装
转至:https://www.cnblogs.com/jiarui-zjb/p/9642416.html
1、环境探查与准备
安装jdk和weblogic前需要对进行安装的linux系统硬件和软件环境进行探查确认,以确保支持对jdk1.8.0_144_1和weblogic12.2.1.3和的安装。weblogic12.2.1.3对于jdk及linux操作系统版本的要求在oracle官网上面有详细的详细全面介绍,可自己进行下载xls查阅。http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-certification-100350.html
1.1 weblogic12.2.1.3升级前说明
a、root用户无法安装weblogic否则会报错如下:
[root@ODSDEVDB01 fmw_12.2.1.3.0_wls_jar]# java -jar fmw_12.2.1.3.0_wls.jar
Launcher log file is /tmp/OraInstall2018-05-22_02-54-09PM/launcher2018-05-22_02-54-09PM.log.
Extracting the installer . . . . . . . . . . Done
The current user is root or has superuser privilege.
The Oracle Universal Installer cannot continue.
The log is located here: /tmp/OraInstall2018-05-22_02-54-09PM/launcher2018-05-22_02-54-09PM.log.
为什么root用户无法安装weblogic?
出于安全考虑,即使别人攻入了你的系统获得了Weblogic的控制权,对于操作系统来说也只是一个普通的受限用户。通过在用户层面的分隔,即使有一个被破坏了也要尽量少影响其它的东西。
b、安装最新的weblogic版本,版本号为 12.2.1.3,开始以为和旧版安装一样,使用控制台的方式,下载bin文件,然后一步步在console执行下来就行了但是,从12C版本后,bin文件不提供了,改成用全系统通用的jar文件 (generic.jar)进行安装。参看博文 http://blog.51cto.com/chbinmile/1880433
2、配置jdk1.8.0_144_1
参看博文:https://www.cnblogs.com/kuoAT/p/7555298.html
2.1 解压jdk1.8.0_144_1.tar到指定的文件目录
# tar -xvf jdk1.8.0_144_1.tar -C /usr/java
2.2 备份系统配置文件
执行命令: cp /etc/profile /usr/wls_12.2.1.3.0/bakProfile
2.3 编辑系统环境变量
[root@ODSDEVDB01 ~]#vi /etc/profile
i
#java
JAVA_HOME=/usr/java/jdk1.8.0_144_1
PATH=$JAVA_HOME/bin:$PATH
CLASSPATH=$JAVA_HOME/jre/lib/ext:$JAVA_HOME/lib/tools.jar
export PATH JAVA_HOME CLASSPATH
按Esc+:+wq 保存退出;
备注:编辑后可重新查看一下确保内容已经新增成功
2.4 重新加载系统配置文件
source /etc/profile
2.5 检查jdk 是否安装成功
[root@ODSDEVDB01 ~]# java -version
java version "1.8.0_144"
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)
出现上面的显示信息表示安装成功
3、安装weblogic
3.1 创建createWeblogic用户和组web
[root@ODSDEVDB01 /]# groupadd web
[root@ODSDEVDB01 /]# useradd -g web createWeblogic
[root@ODSDEVDB01 /]# passwd createWeblogic
weblogic12c
3.2 切换用户进行安装:
su createWeblogic
3.3 创建响应文件 wls.rsp
最好放在/home/createWeblogic的目录下面而不是usr目录下面,否则会导致创建域的权限问题在/home/createWeblogic目录下确保有如下两个文件并做相应的配置,否则安装时候回报各种难以预知的错误。
- [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 insure having all dir read and write authority
- ORACLE_HOME=/usr/wls_12.2.1.3.0/wlsInstall
- #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 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=<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=
备注:wls.rsp文件中需要修改的信息如下:ORACLE_HOME=/usr/wls_12.2.1.3.0/wlsInstall (表示weblogic的安装目录) 响应文件中信息的编写,否则会报奇怪的错误
3.4 创建Loc文件 oraInst.loc
- inventory_loc=/home/createWeblogic/oraInventory
- inst_group=web
备注:oraInts.loc文件中修改如下信息:
inventory_loc=/home/createWeblogic/oraInventory (表示产品清单目录)
inst_group=web (web表示createWeblogic用户所在的组名,查看用户所属组的命令: groups)
3.5 保证所需要得目录weblogic用户要用读写权限
oraInst.loc,wls.rsp,fmw_12.2.1.3.0_wls.jar文件用户createWeblogic必须要有读写权限
3.6 安装weblogic
cd /usr/wls_12.2.1.3.0/fmw_12.2.1.3.0_wls_jar/
java -jar fmw_12.2.1.3.0_wls.jar -silent -responseFile /home/createWeblogic/wls.rsp -invPtrLoc /home/createWeblogic/oraInst.loc
至此weblogic的安装即完成
4、创建域app_domain
4.1 首先执行setWLSEnv.sh 来配置环境变量
$ ./usr/wls_12.2.1.3.0/wlsInstall/wlserver/server/bin/setWLSEnv.sh
[createWeblogic@ODSDEVDB01 root]$ cd /usr/wls_12.2.1.3.0/wlsInstall
[createWeblogic@ODSDEVDB01 user_projects]# mkdir domains
[createWeblogic@ODSDEVDB01 user_projects]# cd domains
[createWeblogic@ODSDEVDB01 domains]# mkdir pyfile
[createWeblogic@ODSDEVDB01 domains]# cd pyfile
4.2 将basicWLSDomain.py复制到base_domain目录下
- #=======================================================================================
- # This is an example of a simple WLST offline configuration script. The script creates
- # a simple WebLogic domain using the Basic WebLogic Server Domain template. The script
- # demonstrates how to open a domain template, create and edit configuration objects,
- # and write the domain configuration information to the specified directory.
- #
- # This sample uses the demo Derby Server that is installed with your product.
- # Before starting the Administration Server, you should start the demo Derby server
- # by issuing one of the following commands:
- #
- # Windows: WL_HOME\common\derby\bin\startNetworkServer.cmd
- # UNIX: WL_HOME/common/derby/bin/startNetworkServer.sh
- #
- # (WL_HOME refers to the top-level installation directory for WebLogic Server.)
- #
- # The sample consists of a single server, representing a typical development environment.
- # This type of configuration is not recommended for production environments.
- #
- # Please note that some of the values used in this script are subject to change based on
- # your WebLogic installation and the template you are using.
- #
- # Usage:
- # java weblogic.WLST <WLST_script>
- #
- # Where:
- # <WLST_script> specifies the full path to the WLST script.
- #=======================================================================================
- #=======================================================================================
- # Open a domain template.
- #=======================================================================================
- readTemplate("/usr/wls_12.2.1.3.0/wlsInstall/wlserver/common/templates/wls/wls.jar")
- #=======================================================================================
- # Configure the Administration Server and SSL port.
- #
- # To enable access by both local and remote processes, you should not set the
- # listen address for the server instance (that is, it should be left blank or not set).
- # In this case, the server instance will determine the address of the machine and
- # listen on it.
- #=======================================================================================
- cd('Servers/AdminServer')
- set('ListenAddress','')
- set('ListenPort', 7001)
- create('AdminServer','SSL')
- cd('SSL/AdminServer')
- set('Enabled', 'false')
- set('ListenPort', 7002)
- #=======================================================================================
- # Define the user password for weblogic.
- #=======================================================================================
- cd('/')
- cd('Security/base_domain/User/weblogic')
- # Please set password here before using this script, e.g. cmo.setPassword('value')
- cmo.setPassword('weblogic1')
- #=======================================================================================
- #=======================================================================================
- # Write the domain and close the domain template.
- #=======================================================================================
- setOption('OverwriteDomain', 'true')
- writeDomain('/usr/wls_12.2.1.3.0/wlsInstall/user_projects/domains/app_domain')
- closeTemplate()
- #=======================================================================================
- # Exit WLST.
- #=======================================================================================
- exit()
cd /usr/wls_12.2.1.3.0/wlsInstall/user_projects/domains/pyfile
cp /usr/wls_12.2.1.3.0/wlsInstall/wlserver/common/templates/scripts/wlst/basicWLSDomain.py .
修改basicWLSDomain.py文件中的如下信息:
1)确定该服务的监听端口7001
cd('Servers/AdminServer')
set('ListenAddress','')
set('ListenPort', 7001)
2)确定weblogic控制台的登录密码
cd('/')
cd('Security/base_domain/User/weblogic')
cmo.setPassword('weblogic123')
3)确定域名 antiMoney_domain域名
setOption('OverwriteDomain', 'true')
writeDomain('/usr/wls_12.2.1.3.0/wlsInstall/user_projects/domains/app_domain')
closeTemplate()
4.3 执行basicWLSDomain.py进行域的创建
[createWeblogic@ODSDEVDB01 pyfile]$ /usr/wls_12.2.1.3.0/wlsInstall/oracle_common/common/bin/wlst.sh basicWLSDomain.py .
出现如下信息表示安装成功:
Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
Exiting WebLogic Scripting Tool.
4.4 启动服务
[createWeblogic@ODSDEVDB01 base_domain]$ cd ..
[createWeblogic@ODSDEVDB01 app_domain]$ ./startWebLogic.sh
备注:也可以通过 nohup sh startWebLogic.sh & 命令来启动服务
上述每步都经本人亲测无误,如遇问题欢迎留言,谢谢!
linux基础-jdk1.8和weblogic12.2.1.3.0安装的更多相关文章
- 七、linux基础-jdk1.8和weblogic12.2.1.3.0安装
1.环境探查与准备 安装jdk和weblogic前需要对进行安装的linux系统硬件和软件环境进行探查确认,以确保支持对jdk1.8.0_144_1和weblogic12.2.1.3和的安装.webl ...
- 开发环境入门 linux基础(部分)虚拟内存,rpm和yum安装
虚拟内存,rpm和yum安装 文本中查找 /内容 替换:扩展模式下(:)%s /替换目标/要替换的文件/ (只替换第一个)(后边加g全部替换) :set u添加行号 raid lvm逻辑卷 df - ...
- Linux基础知识入门
[Linux基础]Linux基础知识入门及常见命令. 前言:最近刚安装了Linux系统, 所以学了一些最基本的操作, 在这里把自己总结的笔记记录在这里. 1,V8:192.168.40.10V1: ...
- Linux基础环境_安装配置教程(CentOS7.2 64、JDK1.8、Tomcat8)
Linux基础环境_安装配置教程 (CentOS7.2 64.JDK1.8.Tomcat8) 安装包版本 1) VMawre-workstation版本包 地址: https://my.vmw ...
- ###Linux基础 - 2
点击查看Evernote原文. #@author: gr #@date: 2014-10-13 #@email: forgerui@gmail.com 一.Linux基础命令2 mount: 挂载U盘 ...
- Linux基础入门教程
Linux基础入门教程 --------- Linux学习路径 Linux学习者,常常不知道自己改怎么学习linux:Linux初级,也就是入门linux前提是需要有一些计算机硬件相关的知识或是有一下 ...
- 大数据入门第一天——基础部分之Linux基础(环境准备与先导知识)
一.Linux环境安装 1.VM的安装 参考Linux环境搭建随笔:http://www.cnblogs.com/jiangbei/p/7248054.html 2.CentOS的安装 同参考上述随笔 ...
- CentOS6安装各种大数据软件 第三章:Linux基础软件的安装
相关文章链接 CentOS6安装各种大数据软件 第一章:各个软件版本介绍 CentOS6安装各种大数据软件 第二章:Linux各个软件启动命令 CentOS6安装各种大数据软件 第三章:Linux基础 ...
- 【大数据系统架构师】0.2 Linux基础
1. Linux基本环境 1.1 大数据Hadoop前置大纲讲解 1)Linux系统,基本命令 2)Java语言,JavaSE相关知识 3)MySQL基本的DML和DDL 1.2 常见Linux系统. ...
随机推荐
- Go 获取键盘输入,进制转换
#### Go 获取键盘输入,进制转换 最近爱上<<珂矣的心灵独语>> 连续听一下礼拜也不觉得厌: 喜欢她的宁静与安然,喜欢她的坦荡与欢喜,喜欢她的禅意与智慧; ***撑着一苇 ...
- Qt中编译器
很多时候,Qt构建项目编译的过程中会报错,大部分报错是因为qt的设置出现问题,很多时候环境配置时要选择合适的编译器,debugger调试器等,这里对一些名词解释,内容对新手很友好,大佬就不用看啦. M ...
- java 中的多线程简单介绍
package com.zxf.demo; /* * 多线程的实现方式两种? * 一..实现 runnable 接口 * 2.重写run方法 Run():当一个线程启动后,就会自动执行该方法 * 3. ...
- SpringBoot 自定义配置
有时候需要自己定义一些配置,比如SpringBoot没有提供Druid连接池的配置,需要我们自己写配置. 以在springboot中使用Druid为例. 依赖 <dependency> & ...
- JAVA多线程提高十四:同步工具Exchanger
Exchanger可以在对中对元素进行配对和交换的线程的同步点.每个线程将条目上的某个方法呈现给 exchange 方法,与伙伴线程进行匹配,并且在返回时接收其伙伴的对象.Exchanger 可能被视 ...
- 监听器(Listener)详解及举例
概念: 监听器就是一个实现特定接口的普通java程序,这个程序专门用于监听另一个java对象的方法调用或属性改变,当被监听对象发生上述事件后,监听器某个方法将立即被执行. 监听器组成要素: 事件源:事 ...
- 1、interface/implements 接口与引用
转载请注明来源:https://www.cnblogs.com/hookjc/ 1.类中全部为抽象方法 2.抽象方法前不用加abstract 3.接口抽象方法属性为public 4.成员属性必须为常量 ...
- JS创建快捷方式
转载请注明来源:https://www.cnblogs.com/hookjc/ <script type="text/javascript" language="j ...
- python-字符串操作分类小结
切片 str[start:end:step] # 包括头,不包括尾巴.step为步长,意思是每隔step-1个元素,取一个字符 [::-1] #反向取字符串,实现字符串的反转 "abcde& ...
- K8s 部署 Dashboard UI 仪表板 ——让一切可视化
K8s 部署 Dashboard UI 仪表板 --让一切可视化 Dashboard 介绍 仪表板是基于Web的Kubernetes用户界面.您可以使用仪表板将容器化应用程序部署到Kuberne ...