6100-05-02-内存bug(0509-161)

简介:

     一天下午接到应用管理员打电话说IC卡AP02主机居然登录不上去了,但是ping能通,业务居然也正常,于是急忙跑到ECC机房检查果然如此,经过检查和测试问题不光在ssh命令上,大部分32位程序在执行的时候都会报错,如resize等。

处理过程:

使用ps -efM 筛选出64bit进程, 在ps -ef 显示出全部,在对比出哪些是32bit程序,(因为业务是java 64bit的所幸没有影响O(∩_∩)O!)

于是想到了是不是为AIX系统bug,报给IBM驻场经查确定为BUG (如果哪位管理的系统还有这个版本的一定要主机升级了撒,重要的事情标红,就不说三遍了

目前版本为6100-05-02,在6100-05-03上解决

BUG信息如下:                                                                                    

IZ83852: SYMBOL RESOLUTION ERROR AND NOT ENOUGH MEMORY FOR THE PROCESS APPLIES TO AIX 6100-05

A fix is available

Obtain the fix for this APAR.

APAR status

Closed as program error.

Error description

32 bit User processes start failing with the message

below while trying to exec and load.


exec(): 0509-036 Cannot load program /bin/ps because of

the following

errors:

        0509-130 Symbol resolution failed for

/usr/lib/libwlm.a(shr.o)

because:

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-161 There is not enough memory for the  process.

        0509-026 System error: Error 0

exec(): 0509-036 Cannot load program lslpp because of the following

errors:

        0509-130 Symbol resolution failed for /usr/lib/libinstall.a(shr.o) because:

        0509-160 There is not enough kernel memory. Try again later.

        0509-026 System error: Error 0

Local fix

Use named shlib area feature.

Problem summary

Possible memory leak more likely with WPARs.

Problem conclusion

Fix logic error that prevented memory from being freed.

Temporary fix

Comments

6100-02 - use AIX APAR IZ79109

6100-03 - use AIX APAR IZ83884

6100-04 - use AIX APAR IZ83931

6100-05 - use AIX APAR IZ83852

6100-06 - use AIX APAR IZ80674

APAR Information

APAR numberIZ83852

Reported component nameAIX 610 STD EDI

Reported component ID5765G6200

Reported release610

StatusCLOSED PER

PENoPE

HIPERNoHIPER

Submitted date2010-08-30

Closed date2010-08-30

Last modified date2013-03-28

APAR is sysrouted FROM one or more of the following:IZ79109

APAR is sysrouted TO one or more of the following:

Fixed component nameAIX 610 STD EDI

Fixed component ID5765G6200

Applicable component levels

R610 PSY U837117   UP10/10/15 I 1000

PTF to Fileset Mapping

U837117 bos.mp64 6.1.5.4





本文转自 yuri_cto 51CTO博客,原文链接:http://blog.51cto.com/laobaiv1/1950634,如需转载请自行联系原作者

相关文章
|
开发框架 .NET API
绝顶技术:断点+内存映射组合的 CLR 超强 BUG?
你见过【断点+内存映射】制造了一个另类隐藏极深,强悍的 BUG 吗?这是一个虚拟机 CLR 的 BUG。不同于之前所遇见的 BUG 这次费时最多,但是问题已然清晰。
291 0
|
存储 机器学习/深度学习 缓存
我惊了!!!ThreadLocal 源码存在内存泄露的 Bug!!!
我惊了!!!ThreadLocal 源码存在内存泄露的 Bug!!!
307 0
|
缓存 Java C语言
一个导致JVM物理内存消耗大的Bug
一个导致JVM物理内存消耗大的Bug
一个导致JVM物理内存消耗大的Bug
Drools 6.4.0Final版本KieScanner内存泄漏Bug
Drools 6.4.0Final版本KieScanner内存泄漏Bug
403 0
Drools 6.4.0Final版本KieScanner内存泄漏Bug
|
Java 数据安全/隐私保护 测试技术
我修复的印象最深的一个bug,一个导致CPU和内存异常到无法响应的BUG
系统上线一段时间后,客户反映接口响应特别慢,甚至没有响应,第一时间依次检查了网络、服务器资源使用情况,发现服务器CPU和内存占用率都非常的高,经过一阵紧张的排查,最终发现问题出现的根源,这就是我修复的印象最深的一个bug就是由于String的用法不当所造成的。
549 0
我修复的印象最深的一个bug,一个导致CPU和内存异常到无法响应的BUG
|
C语言
C语言内存分配管理常见bug
标准C库提供了4个内存管理函数:malloc、calloc、realloc和free。 bug1 调用free释放p指向的内存块之后,p就是一个悬挂指针——指向逻辑上不存在的内存的指针。
1255 0