- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory issues running BaanIV
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
10-08-2001 10:09 AM
10-08-2001 10:09 AM
Memory issues running BaanIV
We are currently running baanIV on a K580 6-way with 3.75 Gb of Ram. Is there anyone out who has run into the same kind of issues. Approxiately 150 users usually are logged into the application and this takes up 2.85 Gb. The following is what the swapinfo -ta give me:
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 524288 87992 436296 17% 0 - 1 /dev/vg00/lvol2
dev 524288 88700 435588 17% 0 - 1 /dev/vg00/lvol4
dev 524288 85112 439176 16% 0 - 1 /dev/vg00/lvol10
dev 524288 88588 435700 17% 0 - 1 /dev/vg00/lvol11
dev 524288 86884 437404 17% 0 - 1 /dev/vgdb09/lvol3
reserve - 2184164 -2184164
memory 2943144 1724580 1218564 59%
total 5564584 4346020 1218564 78% - 0 -
Is there any kernel parameters I need to look into? I will attach them.
Thanks in advance for the help.
Buzz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:59 AM
10-08-2001 10:59 AM
Re: Memory issues running BaanIV
Looks like okay to me. Your swap lv's are only 17% consumed and your memory consumption is 59%. This is not so bad. What is the problem ?.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 11:13 AM
10-08-2001 11:13 AM
Re: Memory issues running BaanIV
It seems this continues to grow (now at 25%). What percentage should is acceptable? I get applications people at times complaining there jobs are running longer then normal.
Buzz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 11:17 AM
10-08-2001 11:17 AM
Re: Memory issues running BaanIV
Something does appear a bit strange. I just checked one of our BaanIV application servers. I have 165 Baan users logged in on a K-box with 2.5 GB and am not swapping at all. In fact, all of these users are using only about 500 MB. Since almost everyone is running bshell the same text segment is shared and each process only has a private bss and data segment. I suspect that you have a bunch of shared memory segments leftover from bad Baan shutdowns or some indescriminate kills. Maybe some kill -9's?
Do an ipcs -ma and have a look at shared memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 11:24 AM
10-08-2001 11:24 AM
Re: Memory issues running BaanIV
Do you also have the database running on the same server? I've attached the ipcs -ma.
Thanks, Buzz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 12:07 PM
10-08-2001 12:07 PM
Re: Memory issues running BaanIV
Given that, your memory usage does appear more reasonable. Do you actually have a problem?
Do a sar -w 30 5 and note the swpot/s (swapouts). If that number is greater than 0 you are swapping. I would also do a vmstat and look at the po (Page Outs) column.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 12:21 PM
10-08-2001 12:21 PM
Re: Memory issues running BaanIV
Thanks, Buzz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 03:51 PM
10-08-2001 03:51 PM
Re: Memory issues running BaanIV
RAM is not the first resource to check for system loading however. Instead, disk activity is usually the limiting factor. And really, there is no concern if the response time is appropriate. You mayu want to consider the importance of this server's processes and get a copy of Glance so performance can be easily monitored.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 05:44 PM
10-08-2001 05:44 PM
Re: Memory issues running BaanIV
Particularly memory is cheap.Your swapinfo does show that there is swapping out.
Simple. Buy some memory and get rid of swapping.
See if there is any i/o due to swapouts. Keep an eye on %wio. This is where the CPU is virtually there but not available to the systems due to processes trying to get rid of I/Os.
sar-u 2 20
It could be that there are memory leaks. I don't believe most of the softwares in the world.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 04:57 AM
10-09-2001 04:57 AM
Re: Memory issues running BaanIV
Thanks for all responses.