miércoles, 15 de junio de 2016

Memory and Paging activity on AIX


Memory:

svmon -Pt15 | perl -e 'while(<>){print if($.==2||$&&&!$s++);$.=0 if(/^-+$/)}'        top 15 processes using the most memory 

ps aux | head -1 ; ps aux | sort -rn +3 | head -20                                top memory processes (the above is better)



Paging:

svmon -Pg -t 1 |grep Pid ; svmon -Pg -t 10 |grep "N"     top 10 processes using the most paging space 
svmon -P -O sortseg=pgsp                                 shows paging space usage of processes


Memory and Paging by USER:

root@nim_server:/home/root>svmon -U -t 10 -O summary=basic,unit=MB    
Unit: MB
===============================================================================
User                                 Inuse      Pin     Pgsp  Virtual
tuxadm                             5621.69     80.6  8405.93 15109.83
root                                451.11     79.3   155.29   553.03
nagios                                96.8     50.7     0.20     96.9
daemon                                96.5     50.7     1.49     98.1
bin                                      0        0        0        0
sys                                      0        0        0        0
adm                                      0        0        0        0
uucp                                     0        0        0        0
guest                                    0        0        0        0
nobody                                   0        0        0        0 

No hay comentarios:

Publicar un comentario