zoukankan      html  css  js  c++  java
  • ebs R12.2启动报错"failed to start a managed process after the maximum retry limit"

    启动日志:

    Error
    --> Process (index=1,uid=1739599208,pid=4479)
      failed to start a managed process after the maximum retry limit
      Log:
      /test/erpapp/VIS/fs1/FMW_Home/webtier/instances/EBS_web_VIS_OHS1/diagnostics/logs/OHS/EBS_web_VIS/console~OHS~1.log
    

      

    查看日志console~OHS~1.log

    # more    /test/erpapp/VIS/fs1/FMW_Home/webtier/instances/EBS_web_VIS_OHS1/diagnostics/logs/OHS/EBS_web_VIS/console~OHS~1.log
    
    --------
    16/12/14 23:39:30 Start process
    --------
    /test/erpapp/VIS/fs1/FMW_Home/webtier/ohs/bin/apachectl startssl: execing httpd
    httpd.worker: Syntax error on line 1042 of /test/erpapp/VIS/fs1/FMW_Home/webtier/instances/EBS_web_VIS_OHS1/config/OHS/EBS_web_VIS/httpd.conf: Syntax error on line 30 of /test/e
    rpapp/VIS/fs1/FMW_Home/webtier/instances/EBS_web_VIS_OHS1/config/OHS/EBS_web_VIS/oracle_apache.conf: Syntax error on line 19 of /test/erpapp/VIS/fs1/FMW_Home/webtier/instances/E
    BS_web_VIS_OHS1/config/OHS/EBS_web_VIS/security2.conf: Cannot load /test/erpapp/VIS/fs1/FMW_Home/webtier/ohs/modules/mod_security2.so into server: libpcre.so.0: cannot open shar
    ed object file: No such file or directory
    
    --------
    16/12/14 23:39:31 Start process
    --------
    /test/erpapp/VIS/fs1/FMW_Home/webtier/ohs/bin/apachectl startssl: execing httpd
    httpd.worker: Syntax error on line 1042 of /test/erpapp/VIS/fs1/FMW_Home/webtier/instances/EBS_web_VIS_OHS1/config/OHS/EBS_web_VIS/httpd.conf: Syntax error on line 30 of /test/e
    rpapp/VIS/fs1/FMW_Home/webtier/instances/EBS_web_VIS_OHS1/config/OHS/EBS_web_VIS/oracle_apache.conf: Syntax error on line 19 of /test/erpapp/VIS/fs1/FMW_Home/webtier/instances/E
    BS_web_VIS_OHS1/config/OHS/EBS_web_VIS/security2.conf: Cannot load /test/erpapp/VIS/fs1/FMW_Home/webtier/ohs/modules/mod_security2.so into server: libpcre.so.0: cannot open shar
    ed object file: No such file or directory
    

      

    解决方法:

    There is patch"21081177"  available for the same issue but this patch can be applied only after upgrade the webiter to 11.1.1.7. As a workaround we can copy the library files from the patch to $FMW_HOME/webtier/lib directory.
    

      

    步骤:

    $ unzip p21081177_111170_Linux-x86-64.zip 
    $ cd 21081177/
    $ ls
    etc  files  README.txt
    $ cd files/
    $ ls
    ohs
    $ cd ohs/
    $ ls
    lib  modules
    $ cd lib/
    $ ls
    libpcre.so  libpcre.so.0
    $ cp libpcre.so* /test/erpapp/VIS/fs1/FMW_Home/webtier/lib
    $ ls -l /test/erpapp/VIS/fs1/FMW_Home/webtier/lib |grep libpcre
    -rwxr-x--- 1 applvis dba   111275 Dec 15 16:50 libpcre.so
    -rwxr-xr-x 1 applvis dba   111275 Dec 15 16:50 libpcre.so.0
    

      

  • 相关阅读:
    [LeetCode] Merge Interval系列,题:Insert Interval,Merge Intervals
    [LeetCode] Simplify Path,文件路径简化,用栈来做
    [LeetCode] Sort Colors 对于元素取值有限的数组,只遍历一遍的排序方法
    [LeetCode] Largest Rectangle in Histogram O(n) 解法详析, Maximal Rectangle
    实现一个协程版mysql连接池
    Linux搭建kafka
    PHP信号管理
    virtual memory exhausted: Cannot allocate memory
    RSA 非对称加密,私钥转码为pkcs8 错误总结
    Git Flow 工作模型与使用
  • 原文地址:https://www.cnblogs.com/abclife/p/6184023.html
Copyright © 2011-2022 走看看