- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Finding memory leak in siteminder software running...
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-26-2006 03:35 AM
01-26-2006 03:35 AM
We run siteminder software6.0 on hpux11i. Sometime, i observed the increase in process size of the siteminder process. I was thinking that it could be due to the memory leak. My one of the colleague said siteminder services takes up inreasing number of request through its threads that is why there is an increase in process size.
My earlier understanding was whether process or its threads are taking less or more number of requests; the increase in process size is the indication of memory leak.
I need IT gurus opinions.
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 03:48 AM
01-26-2006 03:48 AM
SolutionMaybe yes, and maybe no.
If a program calls free() to free memoary it has allocated, that memory is only freed for the program's use. It is not until the program terminates that the memory allocated to and by it is returned to the system at large.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 03:50 AM
01-26-2006 03:50 AM
Re: Finding memory leak in siteminder software running on hpux11i
Contact the vendor and describe the behavior you are seeing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 03:58 AM
01-26-2006 03:58 AM
Re: Finding memory leak in siteminder software running on hpux11i
Usually just running a script to monitor memory size and submit it to the application vendor. There is nothing you can do to preven the software from having a memory leak. The only solution is to document it and firmly inform the vendor that you REQUIRE it be fixed in a reasonable period of time.
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-26-2006 01:58 PM
01-26-2006 01:58 PM
Re: Finding memory leak in siteminder software running on hpux11i
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 02:29 PM
01-26-2006 02:29 PM
Re: Finding memory leak in siteminder software running on hpux11i
e.g. UNIX95= ps -e -o vsz
You will certainly want more data displayed but all you need to do is a man ps for more details. The idea is that you examine the memory footprint over time and see if it grows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 02:34 PM
01-26-2006 02:34 PM
Re: Finding memory leak in siteminder software running on hpux11i
Does Siteminder uses Java any time ? If you want to Diagnose Memory Leaks in Java on HP-UX, follow this link,
http://www.hp.com/products1/unix/java/infolibrary/prog_guide/diag_memory_leaks.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 02:43 PM
01-26-2006 02:43 PM
Re: Finding memory leak in siteminder software running on hpux11i
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 02:46 PM
01-26-2006 02:46 PM
Re: Finding memory leak in siteminder software running on hpux11i
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 02:57 PM
01-26-2006 02:57 PM
Re: Finding memory leak in siteminder software running on hpux11i
"vsz" is virtual memory size.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 03:07 PM
01-26-2006 03:07 PM
Re: Finding memory leak in siteminder software running on hpux11i
You asked about,
What are the tools available to detect the memory leaks for applications on hpux platform ?
DMalloc is the tool used for detecting memory leaks and it is available from Porting center as well,
http://hpux.connect.org.uk/hppd/hpux/Users/dmalloc-5.4.2/
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 03:38 PM
01-26-2006 03:38 PM
Re: Finding memory leak in siteminder software running on hpux11i
http://h21007.www2.hp.com/dspp/ml/showArchiveMessage/1,,4!04!06!0057,00.html
HPUX-DEVTOOLS: Memory leak checking tools
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 05:08 PM
01-26-2006 05:08 PM
Re: Finding memory leak in siteminder software running on hpux11i
Lots of more open source tools available as,
1) dmalloc
2) electricfence
3) memwatch
You can use gdb as well.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 05:14 PM
01-26-2006 05:14 PM
Re: Finding memory leak in siteminder software running on hpux11i
HP's WDB is based on GDB and provides HP-UX specific debugging options, you can download from,
http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,2082,00.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 05:20 PM
01-26-2006 05:20 PM
Re: Finding memory leak in siteminder software running on hpux11i
http://hpux.connect.org.uk/hppd/hpux/Development/Tools/ElectricF-2.05/
-Arun