weblogic Server 12.1.1全部都可以用原来方式.

WebLogic Server 12.1.2后已经取消了console安装模式,目前只有gui和静默安装模式。并且安装方式下也有很大变化

如果静默安装模式,需要创建一个response file,内容如下:

[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/oracle/Oracle/Middleware/Oracle_Home #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=

可以采用

java -jar wls_121200.jar -silent -response /home/exampleuser/response/wls.rsp

进行安装。

如果需要Inventory,需要创建一个文件oraInst.loc
inventory_loc=oui_inventory_directory
inst_group=oui_install_group

安装命令运行
java -jar wls_121200.jar -silent -response /home/exampleuser/response/wls.rsp -invPtrLoc /home/exampleuser/oraInst.loc

config.sh需要gui安装方式,但可以通过WLST进行字符交互型安装,安装方式如下:

运行$WEBLOGIC_HOME/common/bin/commEnv.sh

readTemplate("E:\\wls1212_tmp\\wlserver\\common\\templates\\wls\\wls.jar")

cd('Servers/AdminServer')

# Configure the Administration Server

set('ListenAddress',''ericnie-lap'')

set('ListenPort', 8001)

cd('/')

cd('Security/base_domain/User/weblogic')

cmo.setPassword('weblogic12')

setOption('OverwriteDomain', 'true')

# Write the domain, close the domain template and exit from the WLST

writeDomain('/export/home/wlsuser/domains/mydomain')

closeTemplate()
exit()



最新文章

  1. 完美卸载oracle11g步骤
  2. XMPP框架下微信项目总结(4)重新连接服务器
  3. Objective-C 中类属性(修饰)
  4. Coursera台大机器学习课程笔记8 -- Linear Regression
  5. Sql server 数据库 int 和guid 两者的比较
  6. JAVA中ArrayList用法
  7. linux下ntfs硬盘的加载
  8. Java中泛型 问号的作用
  9. 武道释义 · 零散
  10. 利用webpack构建vue项目
  11. win 10 slmgr.vbs -xpr 无法运行,被豆麦笔记打开解决方法
  12. PE/ELF文件里面存的是什么呢?
  13. 查看npm仓库版本号
  14. List转数组
  15. XMPP openfire Smack 即时通讯
  16. 乘风破浪:LeetCode真题_024_Swap Nodes in Pairs
  17. 自定义CCNode
  18. POJ3660 Cow Contest【最短路-floyd】
  19. win10 远程桌面远程电脑时每次要输入密码及身份验证错误,要求的函数不受支持问题解决
  20. 关于Go语言,自己定义结构体标签的一个妙用.

热门文章

  1. 洛谷 PT2 First Step (ファーストステップ)
  2. python面向对象之继承与派生
  3. 转:在android中button响应的两种方式
  4. 一次向svn中增加所有新增文件 svn add all new files【转】
  5. 设计模式之笔记--简单工厂模式(Simple Factory)
  6. Linux下mysql命令 导入 导出sql文件
  7. python 多进程multiprocessing 模块
  8. Delphi字符串、PChar与字符数组之间的转换
  9. HDU-3221
  10. Selenium2+python自动化25-js处理日历控件(修改readonly属性)【转载】