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
    

      

  • 相关阅读:
    redis五类型及原理|redis主从及问题|Uninstall Redis CentOs 7
    netty4与netty5序列化问题记录
    [转载]【深入Java虚拟机】之四:类加载机制
    序列化原理机制新谈
    [Eclipse使用技巧] Eclipse使用External Tools定位java 源文件目录路径
    学习vue的一些资源
    中国国内可用API合集
    适合初学者学习的的vue+webpack的小项目
    前端性能优化----yahoo前端性能团队总结的35条黄金定律
    Angular2优质学习资源收集
  • 原文地址:https://www.cnblogs.com/abclife/p/6184023.html
Copyright © 2011-2022 走看看