- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Help:Deferred swap reservation failure pid: 6477
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
08-01-2002 05:46 PM
08-01-2002 05:46 PM
thanks.
david lee
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 06:02 PM
08-01-2002 06:02 PM
Re: Help:Deferred swap reservation failure pid: 6477
Looks like you have a shortage on swap space. You can increase it of course, but you should also check for application memory leaks.
UNIX95= ps -e -o ruser,vsz,pid,args | sort -rnk2 | more
The second column displayed is the process's virtual size in kilobytes.
If you need to create additional swap, here is how. Make sure that you using the right disk. Please note that this is an example only.
# pvcreate /dev/rdsk/cxytdz (change to your disk)
# vgcreate /dev/vg01 /dev/dsk/cxtydz
# lvcreate -n swaplv2 /dev/vg01
# lvextend -L 2048 /dev/vg01/swaplv (change to your size)
# swapon /dev/vg01/swaplv2
Of course all of this can be done via 'sam'
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 07:11 PM
08-01-2002 07:11 PM
Re: Help:Deferred swap reservation failure pid: 6477
I used swapinfo command to chedk how many swap to be used,following is the infomation of swap:
# swapinfo
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 1048576 0 1048576 0% 0 - 1 /dev/vg00/lvol2
reserve - 545672 -545672
#
It seems that there is no swap to be used.
But thanks anyway!
david lee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 07:21 PM
08-01-2002 07:21 PM
Solutionthe ouput of your swapinfo command has a line for reserve which tells that already 500MB is reserved by the processes.
You have extra 500MB space left out unreserved.
So if you have a process that is reserving more than the value you receive these messages.
I would like you to check the memory utilization of processes using
UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid|sort -nrk1|more to find out the list of processes and their memory usage.
Just check whether the mib2agt process is running on your machine without your knowledge.
After examining this you could go ahead in creating a new secondary swap for usage.
By creating extra swap space these messages can be avoided.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 08:29 PM
08-01-2002 08:29 PM
Re: Help:Deferred swap reservation failure pid: 6477
If SWAPMEM_ON is set to 1, then RAM will be used as swap reserve space. Note though that it will NOT actually effect the amount of RAM that is usable.