AIX weblogic 启动报There is not enough buffer space

AIX weblogic 启动报There is not enough buffer space for the requested socket operation 错误

<Sep 19, 2014 10:27:09 AM GMT+08:00> <Error> <Coherence> <BEA-000000> <Oracle Coherence 3.6.0.4 (member=n/a): Error while starting cluster: (Wrapped) java.net.SocketException: There is not enough buffer space for the requested socket operation.
        at com.tangosol.coherence.component.net.socket.UdpSocket.initializeDatagramSocket(UdpSocket.CDB:35)
        at com.tangosol.coherence.component.net.socket.UdpSocket.open(UdpSocket.CDB:17)
        at com.tangosol.coherence.component.net.Cluster$SocketManager.bindListeners(Cluster.CDB:37)
        at com.tangosol.coherence.component.net.Cluster.onStart(Cluster.CDB:216)
        at com.tangosol.coherence.component.net.Cluster.start(Cluster.CDB:11)
        at com.tangosol.coherence.component.util.SafeCluster.startCluster(SafeCluster.CDB:3)
....

Caused by: java.net.SocketException: There is not enough buffer space for the requested socket operation.
        at java.net.PlainDatagramSocketImpl.socketSetOption(Native Method)
        at java.net.PlainDatagramSocketImpl.setOption(PlainDatagramSocketImpl.java:398)

原因是coherence需要更大的buffer提高性能,但是AIX设置的比较低sb_max = 1048576, 而coherence建议设置的为

no -o sb_max=4194304

referer: http://coherence.oracle.com/display/COH35UG/Performance+Tuning

ServletContainerAdapter manager not initialized correctly

时间: 2024-10-11 06:40:39

AIX weblogic 启动报There is not enough buffer space的相关文章

Weblogic 启动报错:java.lang.NoClassDefFoundError

Weblogic 启动报错:java.lang.NoClassDefFoundError  ####<2015-6-17 下午03时30分47秒 CST> <Error> <HTTP> <HDQSDOCMTAPP4> <zonyappserver> <[ACTIVE] ExecuteThread: '15' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS

weblogic启动报错

重启了一次linux服务器后,weblogic启动莫名报错,查看日志发现说部署的项目有个bean类无法加载, 1.然后手动删除 已经部署的项目,先在 domais/servers/AdminServer/upload 删除上传的项目:启动报错 <Jul 13, 2016 10:01:47 AM CST> <Error> <Deployer> <BEA-149605> <Failed to create App/Comp mbeans for AppDe

weblogic启动报错之建域时未指定AdminServer的监听IP的引起的子节点启动故障

各子节点不能启动,查看日志,报错如下: Unable to establish JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://192.168.122.1:7001/jndi/weblogic.management.mbeanservers.domainruntime ..... Caused By: javax.naming.CommunicationException [Root e

weblogic启动报weblogic.application.ModuleException

从别人的拿了一个EJB的demo,一个基础java工程作为工具jar包,三个ejb项目作为ejb基础库,一个web应用作为前端,另外加一个Enterprise Application Project作为统一的EAR项目. 三个ejb基础库安装完成,准备安装ear的时候,一直报下面这个错误: <2015-4-15 上午09时14分44秒 CST> <Error> <Deployer> <BEA-149231> <Unable to set the act

weblogic启动报错之WLS_DIAGNOSTICS000000.DAT

查看控制台日志报错信息如下: <2014-10-30 下午04时46分42秒 CST> <Notice> <Log Management> <BEA-170019> <The server log file /app/weblogic103/bea/domains/fxgservice/servers/AdminServer/logs/AdminServer.log is opened. All server side log events will

weblogic启动报错之未修改hosts产生错误

报错如下: Enter username to boot WebLogic server:weblogic Enter password to boot WebLogic server: <Jul 1, 2015 9:41:36 AM CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING> <Jul 1, 2015 9:41:36 AM C

weblogic启动报错之Unrecognized option: -jrockit

报错如下: $ ./startWebLogic.sh . . JAVA Memory arguments: -Xms512m -Xmx512m . WLS Start Mode=Production . CLASSPATH=/app/weblogic/Oracle/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/app/weblogic/Oracle/patch_ocp353/profiles/d

Linux修改用户名密码后,Weblogic启动报用户名密码错误

weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identi

weblogic启动时报错 java.lang.OutOfMemoryError: PermGen space

PermGen space的全称是Permanent Generation space,是指内存的永久保存区域.这一部分用于存放Class和Meta的信息,Class在被 Load的时候被放入PermGen space区域,它和存放Instance的Heap区域不同,GC(Garbage Collection)不会在主程序运行期对PermGen space进行清理,所以如果APP会LOAD很多CLASS的话,就很可能出现PermGen space错误. 解决方法: 参考解决方法: 1.Incre