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
    

      

  • 相关阅读:
    vue react 路由是否包含id
    vue react初始化脚手架
    多线程编程基础
    模拟实现简化版List迭代器&嵌入List
    斐波那契数与二分法的递归与非递归算法及其复杂度分析
    C语言模拟实现多态
    C++智能指针剖析(下)boost::shared_ptr&其他
    C++智能指针剖析(上)std::auto_ptr与boost::scoped_ptr
    C++模板实现动态顺序表(更深层次的深浅拷贝)与基于顺序表的简单栈的实现
    C++—模板(2)类模板与其特化
  • 原文地址:https://www.cnblogs.com/abclife/p/6184023.html
Copyright © 2011-2022 走看看