- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Out of memory error on hp-ux 11 iv2
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 04:17 PM
01-08-2007 04:17 PM
development team was running some same script on 5 servers, they are able to run on 3 servers but not on 2 servers
OS: HP-UX 11iv2
they are getting the below error:
ASSERTION FAILED: tmp at JSHashTable.cpp line 367 thread 6: ASSERTION FAILED: tmp at JSHashTable.cpp line 367 thread 2: out of memory
FATAL ERROR: ASSERTION FAILED, exiting...
out of memory
FATAL ERROR: ASSERTION FAILED, exiting...
------------------------------------------------------------
EXIT CODE: 1
------------------------------------------------------------
FAILED!
Error running rmart.pl! Check logs and re-try! Exiting...
------------------------------------------------------------
EXIT CODE: 1
------------------------------------------------------------
FAILED!
+ [ 1 -gt 0 ]
+ exit 1
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
END TIME: Mon Jan 8 15:03:57 CST 2007
EXIT CODE: 1
----------------------------------------------------------------------
Please suggest, is it system related issue or their script related issue.
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 04:21 PM
01-08-2007 04:21 PM
Re: Out of memory error on hp-ux 11 iv2
I would say this is script related, tell the development team to check their script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 05:19 PM
01-08-2007 05:19 PM
SolutionI'd check the following:
swapinfo -tam
If you are really out of memroy, you should be paging and near 100% memory use.
vmstat
Also: Consider raising shmmax and shmmni in the kernel. I believe both parameters are dynamic in 11i v2.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 07:30 PM
01-08-2007 07:30 PM
Re: Out of memory error on hp-ux 11 iv2
I assume the servers are not the same memory spec!
As the code is the same it must be the environment. Without knowing the code it's difficult to establish what is causing the problem. What does the program try to do?
If for example it tries to build a table in memory it may work on one machine, but a second server, with less memory, may report a out-of-memory error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2007 10:43 PM
01-08-2007 10:43 PM
Re: Out of memory error on hp-ux 11 iv2
because we have free memory on servers.
Thanks everybody