【问题标题】:How to install WebLogic server using Console mode in RHEL?如何在 RHEL 中使用控制台模式安装 WebLogic 服务器?
【发布时间】:2015-01-31 17:55:54
【问题描述】:

在我的 REHL 服务器中,我将安装 WebLogic 服务器,但是在安装时它显示以下内容,


Launcher log file is /tmp/OraInstall2014-12-03_01-46-31AM/launcher2014-12-03_01-46-31AM.log.

解压文件........ 启动 Oracle 通用安装程序

检查 CPU 速度是否高于 300 MHz。实际通过 1997.386 MHz 检查监视器:必须配置为至少显示 256 色。未设置 DISPLAY 环境变量。失败

一些系统先决条件检查失败。 在继续安装之前,您必须满足这些要求。

继续? (是 [y] / 否 [n])[n]


然后我尝试使用以下命令以 console 模式安装,

java -jar fmw_12.1.3.0.0_wls.jar -mode=console

但它说,

无效参数:-mode=console

那么谁能帮我使用控制台模式安装WebLogic服务器? 任何帮助将不胜感激。

谢谢。

【问题讨论】:

    标签: installation weblogic rhel rhel6


    【解决方案1】:

    在这个版本中似乎已经取消了交互式控制台安装模式(它在 12.1.1 中仍然存在)。主文档页面here 现在只提到了这个运行安装程序的示例,它将尝试启动图形 UI ...

    /home/Oracle/jdk7_51/jdk1.7.0_51/bin/java -jar fmw_12.1.3.0.0_wls.jar
    

    不过,silent mode 仍受支持。要在该模式下安装 weblogic,您需要提供一个响应文件,其中包含您之前输入的所有选项的值。毫无帮助的是,文档建议通过运行图形安装程序来生成它的初始版本!

    1. Run your product's graphical installer or deinstaller, 
       as described in your product installation guide.
    
    2. For product installation, on the Installation Summary screen, 
       click Save Response File to save your installation parameters to a response file.
    

    它提出的唯一真正问题是 Oracle 主目录以及您要执行哪种类型的安装(WebLogic Server、Coherence、Complete with Examples)。这是我在 c:\oracle2 中安装 WebLogic Server 时得到的,没有指向 Oracle 更新支持的链接...

    [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=c:\oracle2
    
    #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=
    

    【讨论】:

    • 仍然适用于 12.2.1.2.0;必须使用-silent 安装。例如java -jar fmw_12.2.1.2.0_wls.jar -silent -responseFile /home/oracle/response/wls.rsp -invPtrLoc /home/oracle/inventory/oraInst.loc
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-04-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多