- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to determine if system swapping is taking plac...
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-16-2002 07:32 AM
10-16-2002 07:32 AM
? Does the "swpainfo -ta" tell you ? Do you look for the "vhand" process to be executing ?
This is the output from my "swapinfo -ta" :
root@DALUXCLE # swapinfo -ta
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 2097152 12004 2085148 1% 0 - 1 /dev/vg00/lvol2
dev 2097152 12080 2085072 1% 0 - 1 /dev/vg01/lvol1
reserve - 571696 -571696
memory 735080 429580 305500 58%
total 4929384 1025360 3904024 21% - 0 -
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:36 AM
10-16-2002 07:36 AM
Re: How to determine if system swapping is taking place
> mem
It tells you if the system is swapping.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:38 AM
10-16-2002 07:38 AM
Re: How to determine if system swapping is taking place
Basically you are looking for any usage of your swap devices (marked as dev here). So, basically, you are swapping. Reserve is just what processes have reserved in case they need to swap and memory is just psuedo swap.
Also, swapinfo -tam may be easier to read?
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:44 AM
10-16-2002 07:44 AM
Re: How to determine if system swapping is taking place
not work. The man page on "mem" indicates it's
"/dev/mem", but I receive error :
"Execute permission denied"
My login id is "root" ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:45 AM
10-16-2002 07:45 AM
Re: How to determine if system swapping is taking place
The use sar with the w flag :
# sar -w 1 2
HP-UX carrera1 B.11.11 U 9000/782 10/16/02
16:49:10 swpin/s bswin/s swpot/s bswot/s pswch/s
16:49:11 0.00 0.0 0.00 0.0 98
16:49:12 0.00 0.0 0.00 0.0 113
Average 0.00 0.0 0.00 0.0 105
Or you can use vmstat (look for si and so columns)....
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:46 AM
10-16-2002 07:46 AM
Re: How to determine if system swapping is taking place
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:46 AM
10-16-2002 07:46 AM
Re: How to determine if system swapping is taking place
the servers do not like to page in and out...
Ted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:49 AM
10-16-2002 07:49 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:52 AM
10-16-2002 07:52 AM
Re: How to determine if system swapping is taking place
Galnce tell you the current or the dyanmic stuff , also if you want you can load this simple c program which tell you the detalis like :
Memory Stat total used avail %used
physical 32764.0 8058.4 24705.6 25%
active virtual 531.3 128.9 402.4 24%
active real 597.0 136.0 461.0 23%
memory swap 26522.5 3738.2 22784.3 14%
device swap 2378.0 2365.5 12.5 99%
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 07:56 AM
10-16-2002 07:56 AM
Re: How to determine if system swapping is taking place
It appears that you have plenty of swapspace and probably more than enough since you are using pseudoswap. It's very common these days to have large amounts of memory (>16GB) and yet run only 512MB of swap if pseudoswap is enabled.