启动日志:

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

  

ebs R12.2启动报错"failed to start a managed process after the maximum retry limit"的更多相关文章

  1. libvirt启动报错Failed to start Virtualization daemon

    libvirt启动报错Failed to start Virtualization daemon 1.启动libvirt的具体报错如下 [root@localhost IOS]# service li ...

  2. Spring boot 启动报错 Failed to auto-configure a DataSource

    1.Spring boot 启动报错 Failed to auto-configure a DataSource 参考资料https://blog.csdn.net/liuyinfei_java/ar ...

  3. springboot项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde

    springboot项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde 创建 ...

  4. Eclipse启动 报错[Failed to load the JNI shared library jvm.dll

    准备要做java服务器,在安装开发环境时,启动Eclipse报错[Failed to load the JNI shared library jvm.dll] 研究了下,造成错误的原因是由于eclip ...

  5. SpringBoot2 启动报错 Failed to auto-configure a DataSource

    今天Spring Boot 2.0正式版发布,寻思着搭个小demo尝试一下Spring Boot的新特性,使用idea创建项目.在选择组件时添加了mysql.mybatis 然后在第一次启动的时候启动 ...

  6. Spring boot&Mybatis 启动报错 Failed to auto-configure a DataSource

    *************************** APPLICATION FAILED TO START *************************** Description: Fai ...

  7. 新建Spring boot 启动报错 Failed to auto-configure a DataSource

    今天学习springboot,使用idea创建项目.在选择组件时添加了mysq 然后在第一次启动的时候启动报错,错误信息如下: ***************************APPLICATI ...

  8. SpringBoot启动报错Failed to determine a suitable driver class

    SpringBoot启动报错如下 Error starting ApplicationContext. To display the conditions report re-run your app ...

  9. 解决Eclipse启动报错Failed to create the Java Virtual Machine

    电脑:2G内存,WIN7 32位. 启动adt-bundle-windows-x86-20140702\eclipse\eclipse.exe时,报错[Failed to create the Jav ...

随机推荐

  1. Guava学习笔记(2):Preconditions优雅的检验参数

    转自:http://www.cnblogs.com/peida/p/Guava_Preconditions.html 在日常开发中,我们经常会对方法的输入参数做一些数据格式上的验证,以便保证方法能够按 ...

  2. 浏览器控制台console

    console对象 console对象代表浏览器的JavaScript控制台.虽然它还不是标准,但是各大浏览器都原生支持,已经成为事实上的标准. console对象主要有两个作用: 显示网页代码运行时 ...

  3. JS冒泡排序(数组)

    冒泡排序是把数组相邻的两个值进行比较,然后根据条件执行相应的命令 var arr = [0,4,8,5,2,7,1,3,6,9]; for(var s = 0;s<arr.length;s++) ...

  4. maven ClassNotFoundException: org.springframework.web.context.ContextLoaderL

    信息: Starting Servlet Engine: Apache Tomcat/6.0.32 2012-3-31 9:39:40 org.apache.catalina.core.Standar ...

  5. 洛谷 P1529 回家 Bessie Come Home Label:Dijkstra最短路 && 乱搞

    题目描述 现在是晚餐时间,而母牛们在外面分散的牧场中. 农民约翰按响了电铃,所以她们开始向谷仓走去. 你的工作是要指出哪只母牛会最先到达谷仓(在给出的测试数据中,总会有且只有一只最快的母牛). 在挤奶 ...

  6. 转:AngularJS的Filter用法详解

    Filter简介 Filter是用来格式化数据用的. Filter的基本原型( '|' 类似于Linux中的管道模式): {{ expression | filter }} Filter可以被链式使用 ...

  7. 阿里云SLB双机IIS多站点负载均衡部署笔记

    首先SLB是通过局域网与ECS链接 ECS1服务器 test文件夹增加index.html test1文件夹增加index.html 设置ECS1服务器(130)IIS test站点 设置test主机 ...

  8. js快速排序

    function sort(arr){ if(arr.length<=1){ return arr; } var num = Math.floor(arr.length/2); var numV ...

  9. Spring和Struts2整合

    目的:spring容器管理Action类,代替Servlet 步骤:主要在配置文件 Struts2: 添加支持spring的jar包, 配置<action class="Action类 ...

  10. HTML 5 视频(video)

    video 元素支持三种视频格式 IE Firefox Opera Chrome Safari 带有 Theora 视频编码和 Vorbis 音频编码的 Ogg 文件 No 3.5+ 10.5+ 5. ...