Navigation
Records in this category
- How to install OpenSSH in AIX
- AIX HACMP Cluster tips
- Frequently asked questions on HACMP Cluster
- Configuring LVM Filesystems for Optimum Performance in AIX
- Very useful AIX commands
- Setting Up the Disk Quota System in AIX
- How to reduce the var or tmp filesystem
- AIX Command Crib Sheet
- Here is there error I get when I execute a basic topas command: # topas exec(): 0509-036 Cannot load program topas because of the following errors: 0509-130 Symbol resolution failed for /usr/lib/libperfstat.a(shr.o) because: 0509-136 Symbol ptx_get_rsetsyswait (number 81) is not exported from dependent module /unix. 0509-136 Symbol ptx_get_rsetsysinfo (number 83) is not exported from dependent module /unix. 0509-136 Symbol ptx_get_rsetsysstats (number 84) is not exported from dependent module /unix. 0509-026 System error: Error 0 0509-192 Examine .loader section symbols with the 'dump -Tv' command. Any reason what this would cause this error?
- how to find Get full path of a running process in AIX
- How to exclude group of files in TSM backup in AIX ?
- How to get history of command in AIX5.3
- Aix 5.2 increasing the paging space - How to?
- Unable to create spot from mksysb for one nim client ?
- How to change Parameters like SHMMAX in AIX
- How do i configure aix 5.3 to use a smtp relay server?
- How to check the status of services in AIX like Chargen , echo , finger , who
- How to create more space on a filesystem in AIX
- Anonymous FTP System Settings AIX (with POSIX compliant ftp account home directory)
- How to remove an LPAR through HMC via command line ? HMC is not accessible through GUI
- Tomcat 6.0.20 installation on AIX 5.3
- what will be impact of changing hard file size/soft file size unlimited in AIX for particular user? How to change hard file size/soft file size to unlimited at the shell prompt?
- Installing Apache Directory on AIX 5.3
- How do I create a user with admin rights in AIX 5.3
- From HMC How to get cpu and memory information of lpar ?
- Please explain the real life implication of shared processors on AIX
- How torepair the log on a jfs2 filesystem in AIX
- How to check Call Home facility from HMC for p570 and p595 lpars?
- What is the appropriate syntax to edit the 'DH' entry in sendmail.cf?
- How to customize login banner for telnet in AIX.
- How to download cfg2html script for aix and configure it ?
- Unix command to count number of files in a directory
- Physical Memory usage - AIX server
- commands to get system information for AIX
- create filesystem on lv and mount it at boot up
- How to change Default Gateway in AIX
- Script to copy files from one AIX server to another
- Script to compare two directories and copy files missing from A to B
- How to create Lpar on IBM pSeries Servers
- How to send multiple email attachments from AIX?
- How to enable SFTP logging in AIX?
- How to send Oracle audit logs to syslog
- How do you find out the wwpn of the hba currently plugged into an ibm system
- Laserjet network printer setup in AIX
- How to check if AIX 5.1. has a 64-bit kernel or 32-bit
- Installing of SSH on AIX 5.2
- How to STOP TELNET Service in AIX 5.2
- How to mount tape drive in AIX system
- How do I rename an existing file system in AIX 5.2
- Aix monitoring tools
- Search AIX for core file, omitting /proc
- How to copy select files based on date
- How to I check dsmcad port on AIX
- Automatic startup of a service on AIX
- How to do a OS backup in AIX
- How to break the rootvg mirror
Tags
Sticky FAQs
AIX
Physical Memory usage - AIX server
# svmon -G
size inuse free pin virtual
memory 1048576 1048277 299 243096 1166071
pg space 3481600 547806
work pers clnt lpage
pin 243096 0 0 0
in use 997529 0 50748 0
Your system behaves somewhat strangely. I doubt it has been running the same apps with the same environment and apps parameters as before.
Without further system information it is difficult to give a solid diagnosis, but your svmon -G has told some interesting story:
1. The pinned pages is 243096 -- about 1G RAM is pinned. 1G of memory out of 4G is "taken away" from most processes.
2. When lots memory is used, you expect to see high number of pers and/or clnt pages for file caching, but the pers is 0 and clnt is only 50748 pages or 202M. i.e. No JFS is using the memory. You do have JFS2 (or NFS, CDROM) files but it is quite small.
3. Now there is 997529 pages of working segment memory. 997529/104856 = 95%. The "computational memory" accounts for 95% of the 4G total memory ... this is very unusual. I would say that the system is using too much memory for working segments.
4. The paging space has 547806 pages in use, that is another 2G of virtual memory (this number may not be exact, as some pages may exist in RAM *and* PS).
Things to check :
1. Who has pinned all those memory? Is it by design or is it a program problem?
do "ps aux" to catch the big memory user, and then "svmon -P pid" to see all details of the memory usage.
2. The system may have a bad memory leak? Not only unfreed mallocs can cause memory leak. You can have a memory leak (sort of) because of a process stays there and never issues or causes a memory disclaim.
run "svmon -P pid" every so often to check it out
3. Do you by any chance have the paging space allocation mode changed to early? This could cause increased use of PS.
4. As always, make sure you have installed the latest patches for your OS level. This should have been the #1 suggestion.
5. If you need further assistance, run "svmon -P pid", also run "vmstat -I 2 10" when system is paging heavily, and post the output here.
6. Also do "vmo -a" and "ioo -a" and attach the output. Please note that "vmtune" is no longer supported on AIX 5.3.
Tags: AIX, Physical Memory
Related entries:
- Installing and Configuring MySQL on Solaris 10 with Service Management Facility
- Veritas Cluster - Commands
- LastLog Editor - Unix LogFiles
- Statistical-Based Intrusion Detection
- Intrusion Detection Terminology (Part One)
Last update: 2009-08-14 00:35
AuthorLuke Francis
Revision: 1.0
You cannot comment on this entry