我有两台weblogic9.2做的集群A,B,A是主服务器,B是受管服务器,后来通过脚本启动weblogic服务,A服务启动异常,经查后台的日志文件发现报错消息如下:

WebLogic Server throws java.lang.NumberFormatException: null from the Embedded LDAP
Posted on November 24, 2010 by maclean
Applies to:

Oracle
Weblogic Server – Version: 9.0 to 10.3
Oracle Weblogic Server – Version: 9.0
to 10.3]
Information in this document applies to any
platform.
Symptoms

The
following exception appears on startup on the admin server. The admin server
then fails to start up.
####<17-Jul-2009 10:24:02 o'clock GMT>
<Critical> <WebLogicServer> <silvermoon> <AdminServer>
<Main Thread> <<WLS Kernel>> <> <>
<1227111442502> <BEA-000386> <Server subsystem failed. Reason:
java.lang.NumberFormatException: null
java.lang.NumberFormatException:
null
at java.lang.Integer.parseInt(Integer.java:415)
at
java.lang.Integer.parseInt(Integer.java:497)
at
weblogic.ldap.EmbeddedLDAP.validateVDEDirectories(EmbeddedLDAP.java:1035)
at
weblogic.ldap.EmbeddedLDAP.start(EmbeddedLDAP.java:212)
at
weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at
weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
at
weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
Cause

This
is something that happens infrequently and is the result of a corrupted file in
the embedded LDAP. It can be caused when your system is starting to run low on
disk space
Solution

There
are two ways to fix this issue:

1)
Delete the file /servers/<server_name>/data/ldap/config/replicas.prop

OR

2)
Alter the replicas.prop file and add ‘replica.num=0′ to it.

Related
posts:

Java.Lang.Outofmemoryerror: Alloclargeobjectorarray When Deploying War
   
Deadlock Detected On An Application Written In Cocoon Framework

This
entry was posted in Uncategorized and tagged JAVA.LANG.NUMBERFORMATEXCEPTION,
LDAP, WEBLOGIC. Bookmark the permalink.
← IndexOutOfBoundsException When
Booting Managed Servers into Cluster in WebLogic Server (WLS)

通过上述的日志消息以及从网上找的一些资料,发现有两个办法可以解决

1)
Delete the file /servers/<server_name>/data/ldap/config/replicas.prop

OR

2)
Alter the replicas.prop file and add ‘replica.num=0′ to it.

http://www.xuebuyuan.com/1136424.html

weblogic集群无法启动,提示java.lang.NumberFormatException的更多相关文章

  1. Redis集群环境使用的是redis4.0.x的版本,在用java客户端jedisCluster启动集群做数据处理时报java.lang.NumberFormatException: For input string: "7003@17003"问题解决

    java.lang.NumberFormatException: For input string: "7003@17003" at java.lang.NumberFormatE ...

  2. maven项目中使用redis集群报错: java.lang.NumberFormatException: For input string: "7006@17006"

    Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [redis.client ...

  3. maven项目中使用redis集群报错: java.lang.NumberFormatException: For input string: "7001@17001"

    解决:由于redis集群的采用的版本是2.7的,在maven的pom.xml中将jedis的版本改成2.9的就可以了

  4. tomcat启动提示java.lang.UnsatisfiedLinkError: D:\soft\devTool\apache-tomcat-7.0.57\bin\tcnative-1.dll: C

    https://blog.csdn.net/a274360781/article/details/52411984

  5. 解决测试redis集群时报"java.lang.NumberFormatException: For input string: "7003@17003..7002@17002"等异常

    一.前言 关于redis5.0的集群模式下,通过客户端测试代码调试报"Exception in thread "main" java.lang.NumberFormatE ...

  6. WebLogic集群案例分析

    WebLogic集群案例分析 2012年8月,某证券交易系统(采用Weblogic中间件),由于基金业务火爆,使系统压力太大,后台服务器频繁死机时,这时工程师们紧急调试系统及恢复操作,等完成这些操作花 ...

  7. CentOS7安装weblogic集群思路梳理

    以前经常用weblogic集群,但是却没有仔细想过要实现它.这不,前两天成功安装了weblogic集群,现在将其思路整理下.防止日后自己忘掉了. 一.安装weblogic10.3.6 1. 在官网下载 ...

  8. hbase集群的启动,注意几个问题

    1.hbase的改的会影响器他的组件的使用, 故而, 在修改 hadoop的任何组件后, 一定要记得其它的组件也能受到影响, 一下是我在将hadoop的集群改了之后 , 再次运行hbase的时候, 就 ...

  9. weblogic集群的资料

    博客分类: weblogic 其实网上关于weblogic集群的资料非常多[大部分都是从创建新的domain开始,我这篇先介绍怎么样把原本普通的domain改造为集群环境],如果觉得不够,可以啃web ...

随机推荐

  1. 捕获异常 winform

    可以捕获winform中的异常写到文本中 <p>可以捕获winform中的异常写到文本中</p> <div class="cnblogs_code" ...

  2. jQuery mouseenter与mouseleave

    mouseenter: 定义和用法 当鼠标指针穿过元素时,会发生 mouseenter 事件. 该事件大多数时候会与 mouseleave 事件一起使用. mouseenter() 方法触发 mous ...

  3. [Bootstrap]概述

    ——1.html,css,javascript框架                ——2.一般开发响应式布局或者移动优先的项目可以优先考虑 优点 1.css开发版本(可以直接上手)和源码版本(可根据l ...

  4. 关于在DWZ使用ssh后台查询的几种方式

    1.查询所有记录,并以列表形式查询 DaoImpl public PageBean queryByPage(String hql, List<Object> listobj, int pa ...

  5. 0<=i<iLen 在C++中

    for( i=0;0<= i<2; i++)这样的话会出现什么错误呢? 一直循环下去, 因为i>=一直成立

  6. Linux 小记录

    <1>bzero 原型:extern void bzero(void *s, int n);用法:#include <string.h> 功能:置字节字符串s的前n个字节为零. ...

  7. 增加用户为SiteCollection的管理员

    1.SiteSettings-->Site collection administrators --> 增加你需要的用户

  8. 分享一个难得的YiBo微博客户端应用源码Android版

    今天给大家分享一款,YiBo微博客户端应用源码,这是一款专为Android用户打造的聚合型微博客户端,完美支持新浪微博.腾讯微博.搜狐微博.网易微博和饭否五个微博平台,界面清爽,使用简单轻巧,支持多账 ...

  9. 第八章 Qt GUI之对话框使用

    第八章 Qt GUI之对话框使用 对话框可以是模态(modal)的或非模态(modeless)两种.当我们在一个用户界面程序里面对一个对话框(比如选择文件对话框)的操作没有结束前,界面的其他窗口无法操 ...

  10. Linux C 程序指针和指针数组(NIGH)

    指针和指针数组 #include<stdio.h> int main() { , b = ; int *p1 = &a , *p2 = &b ; printf(" ...