zoukankan      html  css  js  c++  java
  • 搭建`wenblogic`执行`install`脚本失败

    搭建weblogic服务,前期准备都已经完成,安装包都是已上传,执行install_wls1213.sh脚本,出现以下报错:

    install_wls1213.sh: line 1: rectory: command not found
    : command not found line 3: 
    : command not found line 6: 
    : command not found line 9: 
    : command not found line 12: 
    : command not found line 15: 
    : command not found line 18: 
    : command not found line 19: 
    'nstall_wls1213.sh: line 24: syntax error near unexpected token `{
    'nstall_wls1213.sh: line 24: `create_silent_install_files() {
    

    查看脚本内容,只是生成两个文件,但是提示语法错误,前几天遇到Windows下换行符与Linux下的不同,猜测是编码问题:

    1. 删除已上传的脚本
    2. 在该目录下新建一个同名的脚本文件,并进入编辑
    3. 在xshell界面粘贴utf-8编码的脚本内容,保存
    4. 执行脚本文件

    发现成功执行,并安装上了weblogic服务。

    weblogic@linux-velh:/home/weblogic/install> rm install_wls1213.sh 
    weblogic@linux-velh:/home/weblogic/install> ls
    weblogic@linux-velh:/home/weblogic/install> ls -al
    total 8
    drwxr-xr-x 2 weblogic weblogic 4096 Jun  6 22:22 .
    drwxr-xr-x 5 weblogic weblogic 4096 Jun  6 22:22 ..
    weblogic@linux-velh:/home/weblogic/install> vim install_wls1213.sh 
    weblogic@linux-velh:/home/weblogic/install> ls -al
    total 12
    drwxr-xr-x 2 weblogic weblogic 4096 Jun  6 22:23 .
    drwxr-xr-x 5 weblogic weblogic 4096 Jun  6 22:23 ..
    -rw-r--r-- 1 weblogic weblogic 2493 Jun  6 22:23 install_wls1213.sh
    weblogic@linux-velh:/home/weblogic/install> sh install_wls1213.sh 
    CREATING SILENT INSTALL FILES
    INSTALLING WEBLOGIC SERVER
    Launcher log file is /tmp/OraInstall2019-06-06_10-23-25PM/launcher2019-06-06_10-23-25PM.log.
    Extracting files...................................
    Starting Oracle Universal Installer
    
    Checking if CPU speed is above 300 MHz.   Actual 1796.690 MHz    Passed
    Checking swap space: must be greater than 512 MB.   Actual 1123324 MB    Passed
    Checking if this platform requires a 64-bit JVM.   Actual 64    Passed (64-bit not required)
    Checking temp space: must be greater than 300 MB.   Actual 12192 MB    Passed
    
    
    Preparing to launch the Oracle Universal Installer from /tmp/OraInstall2019-06-06_10-23-25PM
    Log: /tmp/OraInstall2019-06-06_10-23-25PM/install2019-06-06_10-23-25PM.log
    Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved.
    Reading response file..
    Starting check : CertifiedVersions
    Expected result: One of enterprise-4,enterprise-5,enterprise-6,redhat-6,redhat-4,redhat-5,SuSE-11
    Actual Result: SuSE-11
    Check complete. The overall result of this check is: Passed
    CertifiedVersions Check: Success.
    Starting check : CheckJDKVersion
    Expected result: 1.7.0_15
    Actual Result: 1.7.0_60
    Check complete. The overall result of this check is: Passed
    CheckJDKVersion Check: Success.
    Validations are enabled for this session.
    Verifying data......
    Copying Files...
    You can find the log of this install session at:
     /tmp/OraInstall2019-06-06_10-23-25PM/install2019-06-06_10-23-25PM.log
    -----------20%----------40%----------60%----------80%--------100%
    
    The installation of Oracle Fusion Middleware 12c WebLogic Server and Coherence 12.1.3.0.0 completed successfully.
    Logs successfully copied to /home/weblogic/tmp/.inventory/logs.
    

    看来是编码问题导致的报错

  • 相关阅读:
    2019-9-2-C#命令行解析工具
    2018-9-20-断点调试-Windows-源代码
    2018-9-20-断点调试-Windows-源代码
    2018-8-10-dot-net-core-使用-IPC-进程通信
    2018-8-10-dot-net-core-使用-IPC-进程通信
    Java实现 LeetCode 592 分数加减运算(纯体力活)
    Java实现 LeetCode 590 N叉树的后序遍历(遍历树,迭代法)
    Java实现 LeetCode 590 N叉树的后序遍历(遍历树,迭代法)
    Java实现 LeetCode 590 N叉树的后序遍历(遍历树,迭代法)
    Java实现 LeetCode 589 N叉树的前序遍历(遍历树)
  • 原文地址:https://www.cnblogs.com/linga/p/10987768.html
Copyright © 2011-2022 走看看