LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to get the memory taken by each process? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-get-the-memory-taken-by-each-process-4175427188/)

liuwenbin168@126.com 09-14-2012 02:40 AM

How to get the memory taken by each process?
 
Hi gurus,

I am new to Linux, and here is a dumb question:
How can I see the memory taken by each process?

Why this question:
I have a server (CentOS 5.8), its total memory is 32 GB, and now the used memory is more than 31 GB, so I want to get which process takes most memory.
Meantime, if I can see all of the memory taken for every process, that would be best!


Till to now, what I did:
1. free -m
Code:

[root@ID5xinyong ~]# free -m
  total used free shared buffers cached
Mem: 32108 31579 528 0 6 43
-/+ buffers/cache: 31529 579
Swap: 34287 114 34173

As the output says, more than 31 GB memory has been used.

2.
Code:

top -c, then press: M
-----------------------------------------------------------------------------------------
  top - 15:03:46 up 30 days, 21 min, 2 users, load average: 0.00, 0.00, 0.00
Tasks: 351 total, 1 running, 350 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.0%sy, 0.0%ni,100.0%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 32878968k total, 32339300k used, 539668k free, 7304k buffers
Swap: 35110904k total, 117036k used, 34993868k free, 44916k cached

  PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
 3186 mqm 20 0 1498m 10m 10m S 0.0 0.0 2:19.81 /opt/mqm/bin/amqzmuc0 -m QM1
19357 mqm 20 0 1498m 10m 9.9m S 0.0 0.0 1:54.99 /opt/mqm/bin/amqzmuc0 -m QM2
 3234 mqm 20 0 935m 4284 3772 S 0.0 0.0 10:41.55 /opt/mqm/bin/amqzlaa0 -mQM1 -fip0
29364 root 20 0 97756 3888 2940 S 0.0 0.0 0:00.19 sshd: root@pts/1
29276 root 20 0 97756 3872 2940 S 0.0 0.0 0:00.14 sshd: root@pts/0
...
-----------------------------------------------------------------------------------------


As the top command output, the %MEM column has been sorted descending, but, I still cannot see the BIG process who takes much memory.


So, the dumb question is how to get the process who takes lots of memory.

Thanks in advance!

Celyr 09-14-2012 02:50 AM

Quote:

Originally Posted by liuwenbin168@126.com (Post 4780006)
Code:

[root@ID5xinyong ~]# free -m
  total used free shared buffers cached
Mem: 32108 31579 528 0 6 43
-/+ buffers/cache: 31529 579
Swap: 34287 114 34173


You are not seeing any process taking all that ram because actually there isn't one. You ram is just being cached by the linux kernel but is going to be freed if needed.
You are using very low ram on that server. :)

For example this is one of my boxes:
Code:

root@minnie:~# free -m
            total      used      free    shared    buffers    cached
Mem:          3943      3691        252          0        169      3292
-/+ buffers/cache:        228      3714
Swap:            0          0          0
root@minnie:~# ps aux | sort -b -k 4 | tail
root      2055  0.0  0.0  53308  3236 ?        Ss  Aug25  0:04 /usr/sbin/cupsd -C /etc/cups/cupsd.conf
root      2078  0.0  0.0  73404  3632 ?        Ss  Aug25  0:05 /usr/sbin/smbd -D
root      2081  0.0  0.0  73532  1940 ?        S    Aug25  0:00 /usr/sbin/smbd -D
root      6157  0.0  0.0 101256  980 ?        Ssl  Sep09  0:55 /sbin/apcupsd
data      615  0.0  0.0 152260  3436 ?        Ssl  Sep13  0:01 xxx
root      2026  0.0  0.0 184420  2432 ?        Sl  Aug25  0:00 /usr/libexec/polkitd --no-debug
root      1959  0.0  0.0 2081116 2620 ?        Ssl  Aug25  0:00 /usr/sbin/console-kit-daemon
root      2086  0.0  0.1  13556  6764 ?        Ss  Aug25  0:05 /usr/sbin/dhcpd
data      2106  0.0  0.5 263756 22476 ?        Ssl  Aug25  24:36 xxx
root      5268  0.0  0.9 372712 39396 ?        Ssl  Aug26  2:12 /usr/sbin/named
root@minnie:~#

As you see it may appear that there is only 200MB of free ram, this is true but there are at 3,2GB that can be released by the kernel if needed.

However there is something that i can't understand about your free output, can you post a
Code:

# cat /proc/meminfo
and
Code:

vmstat
It looks like your server is doing big I/O is this true ?

liuwenbin168@126.com 09-14-2012 03:00 AM

Quote:

Originally Posted by Celyr (Post 4780010)
You are not seeing any process taking all that ram because actually there isn't one. You ram is just being cached by the linux kernel but is going to be freed if needed.
You are using very low ram on that server. :)


Hi Celyr,
Thanks A Lot for your quick reply!

You mean the linux kernel cached lots of RAM? And how can I know how much RAM it cached?

Let's say the output of "free -m", the first line:
Code:

--------------------------------------------
    total used    free  shared  buffers cached
Mem: 32108 31579  528  0      6        43
--------------------------------------------

Does not it mean that only 43 mb are being cached (by kernel)? If not, how to understand the value for "cached 43"?

Thank you very much!

syg00 09-14-2012 03:05 AM

@liuwenbin168@126.com, in future use [code] tags as @Celyr has - it retains data formatting and makes it easier (and more likely) others will try to help.

As for your problem, RAM gets used for all sorts of things by the kernel and products (like Oracle e.g.).
Lets see the output from
Code:

cat /proc/meminfo
. Use code tags or else you may get ignored.

liuwenbin168@126.com 09-14-2012 03:09 AM

Hi Celyr,

Outputs of the commands you adviced:


Code:

----------------------------------------------------
[root@ID5xinyong ~]# cat /proc/meminfo
MemTotal:      32878968 kB
MemFree:          537932 kB
Buffers:            7976 kB
Cached:            45012 kB
SwapCached:        5660 kB
Active:            33416 kB
Inactive:          33304 kB
Active(anon):      19464 kB
Inactive(anon):    16900 kB
Active(file):      13952 kB
Inactive(file):    16404 kB
Unevictable:          0 kB
Mlocked:              0 kB
SwapTotal:      35110904 kB
SwapFree:      34993868 kB
Dirty:                16 kB
Writeback:            0 kB
AnonPages:        12352 kB
Mapped:            32256 kB
Shmem:            22596 kB
Slab:              80952 kB
SReclaimable:      17164 kB
SUnreclaim:        63788 kB
KernelStack:        4296 kB
PageTables:        10052 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    47978676 kB
Committed_AS:    724816 kB
VmallocTotal:  34359738367 kB
VmallocUsed:    4536520 kB
VmallocChunk:  34329520624 kB
HardwareCorrupted:    0 kB
AnonHugePages:        0 kB
HugePages_Total:    3488
HugePages_Free:    3488
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:      2048 kB
DirectMap4k:      10240 kB
DirectMap2M:    33544192 kB
----------------------------------------------------



Code:

[root@ID5xinyong ~]# vmstat
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu-----
 r  b  swpd  free  buff  cache  si  so    bi    bo  in  cs us sy id wa st
 0  0 117036 537856  7992  45012  243  61  253    67    0    0  3  1 87  9  0

----------------------------------------------------



Yes, it looks like my server is doing I/O frequently, but sorry, I am not running any special programs on it.
As the value of : swap in/out, data is being swapped in and swapped out quickly, is it also meaning that there is some fishy process?

liuwenbin168@126.com 09-14-2012 03:20 AM

Quote:

Originally Posted by syg00 (Post 4780020)
@liuwenbin168@126.com, in future use [code] tags as @Celyr has - it retains data formatting and makes it easier (and more likely) others will try to help.

As for your problem, RAM gets used for all sorts of things by the kernel and products (like Oracle e.g.).
Lets see the output from
Code:

cat /proc/meminfo
. Use code tags or else you may get ignored.


Thank you, syg00, I will be happy to follow the rule of our forum.

syg00 09-14-2012 03:50 AM

Much more readable.
It is not a rule - merely common courtesy. If you want people to read your posts, make it easy for them to help you.

You have almost 7 Gig reserved for huge pages - which aren't (currently) being used. They can be disabled (at boot), but we can't know if that will affect whatever you are running on that system. Google should help.
Personally I'd be inclined to turn it off and see what happens - but it's not my system.

chrism01 09-14-2012 04:59 AM

I also recommend reading http://www.linuxatemyram.com/

Celyr 09-14-2012 05:27 AM

There is still something not clear to me, ok 7GB reserved for huge_page but i still think there is something wired.
can you do:
Code:

# ps aux | sort -b -k 4 | tail
and
Code:

# mount | grep ram
Code:

# mount | grep tmp

liuwenbin168@126.com 09-14-2012 05:31 AM

Quote:

Originally Posted by syg00 (Post 4780064)
Much more readable.
It is not a rule - merely common courtesy. If you want people to read your posts, make it easy for them to help you.

You have almost 7 Gig reserved for huge pages - which aren't (currently) being used. They can be disabled (at boot), but we can't know if that will affect whatever you are running on that system. Google should help.
Personally I'd be inclined to turn it off and see what happens - but it's not my system.

Hi syg00, Thanks Very Much for pointing out my problem, my RAM issue is probably caused by huge page configuration.

Yes, my system performance slow down when I configured huge pages for it.

I need to learn more knowledge on Huge Pages then I think I will be clear on this problem.

Thanks again and have a nice day pls!

liuwenbin168@126.com 09-14-2012 05:38 AM

Quote:

Originally Posted by Celyr (Post 4780130)
There is still something not clear to me, ok 7GB reserved for huge_page but i still think there is something wired.
can you do:
Code:

# ps aux | sort -b -k 4 | tail
and
Code:

# df -h | grep ram
Code:

# df -h | grep tmp


Hi Celyr,

Here are the prints for these commands:

Code:

ps aux | sort -b -k 4 | tail

[root@ID5xinyong ~]# ps aux | sort -b -k 4 | tail
postfix  1508  0.0  0.0  78860  208 ?        S    Aug15  0:07 qmgr -l -t fifo -u
mqm      3202  0.0  0.0 832136  1460 ?        Sl  Aug15  1:00 /opt/mqm/bin/amqzmuf0 -m QM1
mqm      19373  0.0  0.0 832136  1460 ?        Sl  Aug27  0:34 /opt/mqm/bin/amqzmuf0 -m QM2
root      1303  0.0  0.0  93156  336 ?        S<sl Aug15  0:05 auditd
mqm      3234  0.0  0.0 958228  4284 ?        Sl  Aug15  10:42 /opt/mqm/bin/amqzlaa0 -mQM1 -fip0
mqm      19407  0.0  0.0 959368  2268 ?        Sl  Aug27  1:39 /opt/mqm/bin/amqzlaa0 -mQM2 -fip0
dbus      1340  0.0  0.0  97148    8 ?        Ssl  Aug15  0:00 dbus-daemon --system
root    29276  0.0  0.0  97756  3876 ?        S    13:22  0:00 sshd: root@pts/0
root    29364  0.0  0.0  97756  3892 ?        S    13:40  0:00 sshd: root@pts/1
USER      PID %CPU %MEM    VSZ  RSS TTY      STAT START  TIME COMMAND


Code:

df -h | grep ram

[root@ID5xinyong ~]# df -h | grep ram
[root@ID5xinyong ~]#

This prints nothing when I issued it.


Code:

df -h | grep tmp
[root@ID5xinyong ~]# df -h | grep tmp
tmpfs                  16G    0  16G  0% /dev/shm



Code:

[root@ID5xinyong ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_id5xinyong-lv_root
                      50G  9.0G  38G  20% /
tmpfs                  16G    0  16G  0% /dev/shm
/dev/sda1            485M  31M  429M  7% /boot
/dev/mapper/vg_id5xinyong-lv_home
                      361G  28G  315G  9% /home


Is there anything special we can get from these prints?

Thanks a lot!!

liuwenbin168@126.com 09-14-2012 05:40 AM

Quote:

Originally Posted by chrism01 (Post 4780121)
I also recommend reading http://www.linuxatemyram.com/

Thank you, chrism01, I will read the recommended staff.

Celyr 09-14-2012 06:21 AM

Quote:

Originally Posted by liuwenbin168@126.com (Post 4780140)

Is there anything special we can get from these prints?

Thanks a lot!!

I can't get anything sorry, but the situation keeps looking wired to me. The only think that I can suggest to you is to keep investigating and to lower down the number of huge pages
Code:

echo number > /proc/sys/vm/nr_hugepages
Where number can be even 10 since you are not using them at all

How many processes are you running ?
Code:

ps aux | wc -l
As you may have seen i have modified the post because ramfs doesn't get printed on df -h, try to see if you have ramfs mounted
Code:

mount | grep ramfs

liuwenbin168@126.com 09-14-2012 07:00 AM

Quote:

Originally Posted by Celyr (Post 4780172)
I can't get anything sorry, but the situation keeps looking wired to me. The only think that I can suggest to you is to keep investigating and to lower down the number of huge pages
Code:

echo number > /proc/sys/vm/nr_hugepages
Where number can be even 10 since you are not using them at all

How many processes are you running ?
Code:

ps aux | wc -l
As you may have seen i have modified the post because ramfs doesn't get printed on df -h, try to see if you have ramfs mounted
Code:

mount | grep ramfs

Hi Celyr,
Since I have finished work and I am at home now, I cannot run the commands you provided right now, but I will do it on Monday, and then post the prints here.

I do THANKS A MILLION for you teacher's great patience! You're really a nice man, thanks and have a nice weekend please!

liuwenbin168@126.com 09-16-2012 08:11 PM

Quote:

Originally Posted by Celyr (Post 4780172)
I can't get anything sorry, but the situation keeps looking wired to me. The only think that I can suggest to you is to keep investigating and to lower down the number of huge pages
Code:

echo number > /proc/sys/vm/nr_hugepages
Where number can be even 10 since you are not using them at all

How many processes are you running ?
Code:

ps aux | wc -l
As you may have seen i have modified the post because ramfs doesn't get printed on df -h, try to see if you have ramfs mounted
Code:

mount | grep ramfs

Hi Celyr,

Code:

[root@ID5xinyong ~]# echo number > /proc/sys/vm/nr_hugepages

<This is what I got:>  -bash: echo: write error: Invalid argument

and FYI:

[root@ID5xinyong ~]# cat /proc/sys/vm/nr_hugepages
3488

Code:

[root@ID5xinyong ~]# ps aux | wc -l
352

Too many processes are running. May I know how many processes are there in common? Thanks!

"mount | grep ramfs" still returns nothing.
Code:

[root@ID5xinyong ~]# mount | grep ramfs
[root@ID5xinyong ~]#

What else I can do to clarify my issue?

liuwenbin168@126.com 09-16-2012 09:12 PM

Hi teachers, thanks for your helps, problem has been changed now.

I'm afraid that I miss-understood the command from Celyr:

Code:

echo number > /proc/sys/vm/nr_hugepages
I re-issue it like this:

Code:

echo 0 > /proc/sys/vm/nr_hugepages
OK, then I tried "free -m"

Code:

[root@ID5xinyong ~]# free -m
            total      used      free    shared    buffers    cached
Mem:        32108      24601      7507          0          5        44
-/+ buffers/cache:      24550      7557
Swap:        34287        117      34170

Yea, I got 7 Gib back.
I learnt some knowledge from someone's blog, and this is my thinking: the memory taken by huge page cannot be used by other programs(Maybe it just can be used by the program which specifies using HugePage clearly), and it will be in RAM for ever, so Linux OS takes these memory as used.

Please teachers correct me if there are mistakes for my understanding.

OK, back to the very first question: now, there are still about 24 Gib have been used, I do want to know who takes it.

I have read the article provided by @Chris, in the article, it mentioned that the disc cache may take the RAM but these RAM will be released when needed.
The example in that article, it takes this for example:
Code:

$ free -m
            total      used      free    shared    buffers    cached
Mem:          1504      1491        13          0        91        764
-/+ buffers/cache:        635        869
Swap:        2047          6      2041

For sure, the actual free RAM is not 13 but 869, but for my system:

Code:

[root@ID5xinyong ~]# free -m
            total      used      free    shared    buffers    cached
Mem:        32108      24601      7507          0          5        44
-/+ buffers/cache:      24550      7557
Swap:        34287        117      34170

The used RAM in actual is 24550, I still want to know which process eats my RAM, is it the Kernel? If yes, I don't think it needs SO many RAM indeed.


Teachers, THANKS IN ADVANCE!!

Celyr 09-17-2012 01:01 AM

Quote:

Originally Posted by liuwenbin168@126.com (Post 4780140)

Code:

mqm      3202  0.0  0.0 832136  1460 ?        Sl  Aug15  1:00 /opt/mqm/bin/amqzmuf0 -m QM1
mqm      19373  0.0  0.0 832136  1460 ?        Sl  Aug27  0:34 /opt/mqm/bin/amqzmuf0 -m QM2
mqm      3234  0.0  0.0 958228  4284 ?        Sl  Aug15  10:42 /opt/mqm/bin/amqzlaa0 -mQM1 -fip0
mqm      19407  0.0  0.0 959368  2268 ?        Sl  Aug27  1:39 /opt/mqm/bin/amqzlaa0 -mQM2 -fip0
USER      PID %CPU %MEM    VSZ  RSS TTY      STAT START  TIME COMMAND


Looking back i've seen that there are those processes reported as 0,0% of mem having a virtual size (vsz) of nearly 1GB each. I'm not going to try to understand why they are reported as 0.0 but they are definitively to blame for the memory usage.
You may want to have a look I this, it's just a guess but you may be interested http://www-01.ibm.com/support/docvie...id=swg21271236 also it can be useful if you post the rest of ps aux at this point

liuwenbin168@126.com 09-17-2012 01:15 AM

Thank you, Celyr, the stuff you provided is helpful.

This is the outputs by issuing ps aux.

Code:

USER      PID %CPU %MEM    VSZ  RSS TTY      STAT START  TIME COMMAND
root        1  0.0  0.0  19204    8 ?        Ss  Aug15  0:02 /sbin/init
root        2  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthreadd]
root        3  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/0]
root        4  0.0  0.0      0    0 ?        S    Aug15  0:01 [ksoftirqd/0]
root        5  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/0]
root        6  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/0]
root        7  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/1]
root        8  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/1]
root        9  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/1]
root        10  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/1]
root        11  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/2]
root        12  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/2]
root        13  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/2]
root        14  0.0  0.0      0    0 ?        S    Aug15  0:01 [watchdog/2]
root        15  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/3]
root        16  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/3]
root        17  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/3]
root        18  0.0  0.0      0    0 ?        S    Aug15  0:02 [watchdog/3]
root        19  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/4]
root        20  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/4]
root        21  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/4]
root        22  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/4]
root        23  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/5]
root        24  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/5]
root        25  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/5]
root        26  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/5]
root        27  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/6]
root        28  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/6]
root        29  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/6]
root        30  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/6]
root        31  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/7]
root        32  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/7]
root        33  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/7]
root        34  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/7]
root        35  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/8]
root        36  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/8]
root        37  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/8]
root        38  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/8]
root        39  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/9]
root        40  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/9]
root        41  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/9]
root        42  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/9]
root        43  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/10]
root        44  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/10]
root        45  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/10]
root        46  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/10]
root        47  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/11]
root        48  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/11]
root        49  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/11]
root        50  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/11]
root        51  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/12]
root        52  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/12]
root        53  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/12]
root        54  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/12]
root        55  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/13]
root        56  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/13]
root        57  0.0  0.0      0    0 ?        S    Aug15  0:10 [ksoftirqd/13]
root        58  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/13]
root        59  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/14]
root        60  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/14]
root        61  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/14]
root        62  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/14]
root        63  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/15]
root        64  0.0  0.0      0    0 ?        S    Aug15  0:00 [migration/15]
root        65  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksoftirqd/15]
root        66  0.0  0.0      0    0 ?        S    Aug15  0:00 [watchdog/15]
root        67  0.0  0.0      0    0 ?        S    Aug15  0:07 [events/0]
root        68  0.0  0.0      0    0 ?        S    Aug15  0:01 [events/1]
root        69  0.0  0.0      0    0 ?        S    Aug15  1:39 [events/2]
root        70  0.0  0.0      0    0 ?        S    Aug15  4:38 [events/3]
root        71  0.0  0.0      0    0 ?        S    Aug15  1:21 [events/4]
root        72  0.0  0.0      0    0 ?        S    Aug15  0:29 [events/5]
root        73  0.0  0.0      0    0 ?        S    Aug15  0:19 [events/6]
root        74  0.0  0.0      0    0 ?        S    Aug15  0:23 [events/7]
root        75  0.0  0.0      0    0 ?        S    Aug15  0:18 [events/8]
root        76  0.0  0.0      0    0 ?        S    Aug15  0:34 [events/9]
root        77  0.0  0.0      0    0 ?        S    Aug15  0:21 [events/10]
root        78  0.0  0.0      0    0 ?        S    Aug15  0:04 [events/11]
root        79  0.0  0.0      0    0 ?        S    Aug15  0:01 [events/12]
root        80  0.0  0.0      0    0 ?        S    Aug15  0:00 [events/13]
root        81  0.0  0.0      0    0 ?        S    Aug15  0:00 [events/14]
root        82  0.0  0.0      0    0 ?        S    Aug15  0:01 [events/15]
root        83  0.0  0.0      0    0 ?        S    Aug15  0:00 [cpuset]
root        84  0.0  0.0      0    0 ?        S    Aug15  0:00 [khelper]
root        85  0.0  0.0      0    0 ?        S    Aug15  0:00 [netns]
root        86  0.0  0.0      0    0 ?        S    Aug15  0:00 [async/mgr]
root        87  0.0  0.0      0    0 ?        S    Aug15  0:00 [pm]
root        88  0.0  0.0      0    0 ?        S    Aug15  0:00 [sync_supers]
root        89  0.0  0.0      0    0 ?        S    Aug15  0:01 [bdi-default]
root        90  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/0]
root        91  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/1]
root        92  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/2]
root        93  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/3]
root        94  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/4]
root        95  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/5]
root        96  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/6]
root        97  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/7]
root        98  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/8]
root        99  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/9]
root      100  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/10]
root      101  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/11]
root      102  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/12]
root      103  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/13]
root      104  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/14]
root      105  0.0  0.0      0    0 ?        S    Aug15  0:00 [kintegrityd/15]
root      106  0.0  0.0      0    0 ?        S    Aug15  0:36 [kblockd/0]
root      107  0.0  0.0      0    0 ?        S    Aug15  0:23 [kblockd/1]
root      108  0.0  0.0      0    0 ?        S    Aug15  0:22 [kblockd/2]
root      109  0.0  0.0      0    0 ?        S    Aug15  0:20 [kblockd/3]
root      110  0.0  0.0      0    0 ?        S    Aug15  0:22 [kblockd/4]
root      111  0.0  0.0      0    0 ?        S    Aug15  0:20 [kblockd/5]
root      112  0.0  0.0      0    0 ?        S    Aug15  0:18 [kblockd/6]
root      113  0.0  0.0      0    0 ?        S    Aug15  0:18 [kblockd/7]
root      114  0.0  0.0      0    0 ?        S    Aug15  0:20 [kblockd/8]
root      115  0.0  0.0      0    0 ?        S    Aug15  0:18 [kblockd/9]
root      116  0.0  0.0      0    0 ?        S    Aug15  0:16 [kblockd/10]
root      117  0.0  0.0      0    0 ?        S    Aug15  0:17 [kblockd/11]
root      118  0.0  0.0      0    0 ?        S    Aug15  0:18 [kblockd/12]
root      119  0.0  0.0      0    0 ?        S    Aug15  0:16 [kblockd/13]
root      120  0.0  0.0      0    0 ?        S    Aug15  0:16 [kblockd/14]
root      121  0.0  0.0      0    0 ?        S    Aug15  0:16 [kblockd/15]
root      122  0.0  0.0      0    0 ?        S    Aug15  0:00 [kacpid]
root      123  0.0  0.0      0    0 ?        S    Aug15  0:00 [kacpi_notify]
root      124  0.0  0.0      0    0 ?        S    Aug15  0:00 [kacpi_hotplug]
root      125  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/0]
root      126  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/1]
root      127  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/2]
root      128  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/3]
root      129  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/4]
root      130  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/5]
root      131  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/6]
root      132  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/7]
root      133  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/8]
root      134  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/9]
root      135  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/10]
root      136  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/11]
root      137  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/12]
root      138  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/13]
root      139  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/14]
root      140  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata/15]
root      141  0.0  0.0      0    0 ?        S    Aug15  0:00 [ata_aux]
root      142  0.0  0.0      0    0 ?        S    Aug15  0:00 [ksuspend_usbd]
root      143  0.0  0.0      0    0 ?        S    Aug15  0:00 [khubd]
root      144  0.0  0.0      0    0 ?        S    Aug15  0:00 [kseriod]
root      145  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/0]
root      146  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/1]
root      147  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/2]
root      148  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/3]
root      149  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/4]
root      150  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/5]
root      151  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/6]
root      152  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/7]
root      153  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/8]
root      154  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/9]
root      155  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/10]
root      156  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/11]
root      157  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/12]
root      158  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/13]
root      159  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/14]
root      160  0.0  0.0      0    0 ?        S    Aug15  0:00 [md/15]
root      161  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/0]
root      162  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/1]
root      163  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/2]
root      164  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/3]
root      165  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/4]
root      166  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/5]
root      167  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/6]
root      168  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/7]
root      169  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/8]
root      170  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/9]
root      171  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/10]
root      172  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/11]
root      173  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/12]
root      174  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/13]
root      175  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/14]
root      176  0.0  0.0      0    0 ?        S    Aug15  0:00 [md_misc/15]
root      177  0.0  0.0      0    0 ?        S    Aug15  0:09 [khungtaskd]
root      178  0.7  0.0      0    0 ?        S    Aug15 340:42 [kswapd0]
root      179  2.4  0.0      0    0 ?        S    Aug15 1177:59 [kswapd1]
root      180  0.7  0.0      0    0 ?        S    Aug15 379:18 [kswapd2]
root      181  0.6  0.0      0    0 ?        S    Aug15 317:22 [kswapd3]
root      182  0.0  0.0      0    0 ?        SN  Aug15  0:00 [ksmd]
root      183  0.0  0.0      0    0 ?        SN  Aug15  0:27 [khugepaged]
root      184  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/0]
root      185  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/1]
root      186  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/2]
root      187  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/3]
root      188  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/4]
root      189  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/5]
root      190  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/6]
root      191  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/7]
root      192  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/8]
root      193  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/9]
root      194  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/10]
root      195  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/11]
root      196  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/12]
root      197  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/13]
root      198  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/14]
root      199  0.0  0.0      0    0 ?        S    Aug15  0:00 [aio/15]
root      200  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/0]
root      201  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/1]
root      202  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/2]
root      203  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/3]
root      204  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/4]
root      205  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/5]
root      206  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/6]
root      207  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/7]
root      208  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/8]
root      209  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/9]
root      210  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/10]
root      211  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/11]
root      212  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/12]
root      213  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/13]
root      214  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/14]
root      215  0.0  0.0      0    0 ?        S    Aug15  0:00 [crypto/15]
root      220  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/0]
root      221  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/1]
root      222  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/2]
root      223  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/3]
root      224  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/4]
root      225  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/5]
root      226  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/6]
root      227  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/7]
root      228  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/8]
root      229  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/9]
root      230  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/10]
root      231  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/11]
root      232  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/12]
root      233  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/13]
root      234  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/14]
root      235  0.0  0.0      0    0 ?        S    Aug15  0:00 [kthrotld/15]
root      236  0.0  0.0      0    0 ?        S    Aug15  0:00 [pciehpd]
root      238  0.0  0.0      0    0 ?        S    Aug15  0:00 [kpsmoused]
root      239  0.0  0.0      0    0 ?        S    Aug15  0:00 [usbhid_resumer]
root      269  0.0  0.0      0    0 ?        S    Aug15  0:00 [kstriped]
root      407  0.0  0.0      0    0 ?        S    Aug15  0:04 [mpt_poll_0]
root      409  0.0  0.0      0    0 ?        S    Aug15  0:00 [mpt/0]
root      411  0.0  0.0      0    0 ?        S    Aug15  0:00 [scsi_eh_0]
root      415  0.0  0.0      0    0 ?        S    Aug15  0:00 [scsi_eh_1]
root      416  0.0  0.0      0    0 ?        S    Aug15  0:00 [scsi_eh_2]
root      515  0.0  0.0      0    0 ?        S    Aug15  0:00 [kdmflush]
root      517  0.0  0.0      0    0 ?        S    Aug15  0:00 [kdmflush]
root      536  0.0  0.0      0    0 ?        S    Aug15  1:29 [jbd2/dm-0-8]
root      537  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      538  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      539  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      540  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      541  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      542  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      543  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      544  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      545  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      546  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      547  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      548  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      549  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      550  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      551  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      552  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      627  0.0  0.0  11600    4 ?        S<s  Aug15  0:00 /sbin/udevd -d
root      876  0.0  0.0      0    0 ?        S    Aug15  0:16 [vmmemctl]
root      972  0.0  0.0      0    0 ?        S    Aug15  0:00 [kdmflush]
root      1007  0.0  0.0      0    0 ?        S    Aug15  0:00 [jbd2/sda1-8]
root      1008  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1009  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1010  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1011  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1012  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1013  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1014  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1015  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1016  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1017  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1018  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1019  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1020  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1021  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1022  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1023  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1024  0.0  0.0      0    0 ?        S    Aug15  1:16 [jbd2/dm-2-8]
root      1025  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1026  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1027  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1028  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1029  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1030  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1031  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1032  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1033  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1034  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1035  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1036  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1037  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1038  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1039  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1040  0.0  0.0      0    0 ?        S    Aug15  0:00 [ext4-dio-unwrit]
root      1082  0.0  0.0      0    0 ?        S    Aug15  0:00 [kauditd]
root      1245  0.0  0.0      0    0 ?        S    Aug15  1:11 [flush-253:0]
root      1303  0.0  0.0  93156  340 ?        S<sl Aug15  0:05 auditd
root      1328  0.0  0.0 250788  688 ?        Sl  Aug15  0:02 /sbin/rsyslogd -i /var/run/syslogd.pid -c 4
dbus      1340  0.0  0.0  97148    8 ?        Ssl  Aug15  0:00 dbus-daemon --system
root      1352  0.0  0.0 189072    8 ?        Ss  Aug15  0:00 cupsd -C /etc/cups/cupsd.conf
root      1419  0.0  0.0  64008  316 ?        Ss  Aug15  0:00 /usr/sbin/sshd
root      1495  0.0  0.0  78612  252 ?        Ss  Aug15  0:24 /usr/libexec/postfix/master
postfix  1508  0.0  0.0  78860  208 ?        S    Aug15  0:08 qmgr -l -t fifo -u
qpidd    1821  0.0  0.0 1371248 1120 ?        Ssl  Aug15  2:49 /usr/sbin/qpidd --data-dir /var/lib/qpidd --daemon
root      1866  0.0  0.0 117180  372 ?        Ss  Aug15  0:16 crond
root      2121  0.0  0.0  21424    60 ?        Ss  Aug15  0:00 /usr/sbin/atd
root      2166  0.0  0.0  4048    8 tty1    Ss+  Aug15  0:00 /sbin/mingetty /dev/tty1
root      2168  0.0  0.0  4048    8 tty2    Ss+  Aug15  0:00 /sbin/mingetty /dev/tty2
root      2170  0.0  0.0  4048    8 tty3    Ss+  Aug15  0:00 /sbin/mingetty /dev/tty3
root      2172  0.0  0.0  4048    8 tty4    Ss+  Aug15  0:00 /sbin/mingetty /dev/tty4
root      2176  0.0  0.0  4048    8 tty5    Ss+  Aug15  0:00 /sbin/mingetty /dev/tty5
root      2178  0.0  0.0  4048    8 tty6    Ss+  Aug15  0:00 /sbin/mingetty /dev/tty6
root      2191  0.0  0.0  12256    4 ?        S<  Aug15  0:00 /sbin/udevd -d
root      2192  0.0  0.0  12256    4 ?        S<  Aug15  0:00 /sbin/udevd -d
mqm      3176  0.0  0.0 731628  2184 ?        Ssl  Aug15  1:41 /opt/mqm/bin/amqzxma0 -m QM1
mqm      3181  0.0  0.0 369060  264 ?        Sl  Aug15  0:04 /opt/mqm/bin/amqzfuma -m QM1
mqm      3186  0.0  0.0 1534896 10304 ?      Sl  Aug15  2:21 /opt/mqm/bin/amqzmuc0 -m QM1
mqm      3201  0.0  0.0 637452  1000 ?        Sl  Aug15  1:27 /opt/mqm/bin/amqzmur0 -m QM1
mqm      3202  0.0  0.0 832136  1436 ?        Sl  Aug15  1:01 /opt/mqm/bin/amqzmuf0 -m QM1
mqm      3206  0.0  0.0 369384  2108 ?        Sl  Aug15  0:19 /opt/mqm/bin/amqrrmfa -m QM1 -t2332800 -s2592000 -p2592000 -g5184000 -c3600
mqm      3207  0.0  0.0 319296  216 ?        Sl  Aug15  0:05 /opt/mqm/bin/amqzdmaa -m QM1
mqm      3222  0.0  0.0 292936  184 ?        Ssl  Aug15  0:06 /opt/mqm/bin/amqzmgr0 -m QM1
mqm      3228  0.0  0.0 501244  704 ?        Sl  Aug15  0:23 /opt/mqm/bin/amqfqpub -mQM1
mqm      3234  0.0  0.0 958228  2596 ?        Sl  Aug15  10:55 /opt/mqm/bin/amqzlaa0 -mQM1 -fip0
mqm      3235  0.0  0.0 443744  476 ?        Sl  Aug15  0:10 /opt/mqm/bin/runmqchi -m QM1 -q SYSTEM.CHANNEL.INITQ -r
mqm      3236  0.0  0.0 299812  500 ?        Sl  Aug15  0:25 /opt/mqm/bin/amqpcsea QM1
mqm      3237  0.0  0.0 764428  836 ?        Ssl  Aug15  0:32 /opt/mqm/bin/amqfcxba -m QM1
mqm      3271  0.0  0.0 351724  260 ?        Sl  Aug15  0:04 /opt/mqm/bin/runmqlsr -r -m QM1 -t TCP -p 1414
mqm      3366  0.0  0.0 695712  460 ?        Ssl  Aug15  9:49 /opt/mqm/bin/amqrmppa -m QM1                       
mqm      19347  0.0  0.0 731596  2152 ?        Ssl  Aug27  1:21 /opt/mqm/bin/amqzxma0 -m QM2
mqm      19352  0.0  0.0 369060  260 ?        Sl  Aug27  0:03 /opt/mqm/bin/amqzfuma -m QM2
mqm      19357  0.0  0.0 1534896 10180 ?      Sl  Aug27  1:57 /opt/mqm/bin/amqzmuc0 -m QM2
mqm      19372  0.0  0.0 637452  996 ?        Sl  Aug27  0:52 /opt/mqm/bin/amqzmur0 -m QM2
mqm      19373  0.0  0.0 832136  1436 ?        Sl  Aug27  0:36 /opt/mqm/bin/amqzmuf0 -m QM2
mqm      19380  0.0  0.0 369468  2124 ?        Sl  Aug27  0:12 /opt/mqm/bin/amqrrmfa -m QM2 -t2332800 -s2592000 -p2592000 -g5184000 -c3600
mqm      19382  0.0  0.0 319296  216 ?        Sl  Aug27  0:03 /opt/mqm/bin/amqzdmaa -m QM2
mqm      19397  0.0  0.0 292936  184 ?        Ssl  Aug27  0:04 /opt/mqm/bin/amqzmgr0 -m QM2
mqm      19399  0.0  0.0 502388  724 ?        Sl  Aug27  0:15 /opt/mqm/bin/amqfqpub -mQM2
mqm      19407  0.0  0.0 959368  2264 ?        Sl  Aug27  1:54 /opt/mqm/bin/amqzlaa0 -mQM2 -fip0
mqm      19408  0.0  0.0 443744  468 ?        Sl  Aug27  0:08 /opt/mqm/bin/runmqchi -m QM2 -q SYSTEM.CHANNEL.INITQ -r
mqm      19409  0.0  0.0 299700  512 ?        Sl  Aug27  0:14 /opt/mqm/bin/amqpcsea QM2
mqm      19410  0.0  0.0 764428  836 ?        Ssl  Aug27  0:21 /opt/mqm/bin/amqfcxba -m QM2
mqm      19597  0.0  0.0 351724  124 ?        Sl  Aug27  0:02 /opt/mqm/bin/runmqlsr -r -m QM2 -t TCP -p 1417
mqm      19602  0.0  0.0 498192  200 ?        Ssl  Aug27  0:04 /opt/mqm/bin/amqrmppa -m QM2                       
postfix  31321  0.0  0.0  78692  3200 ?        S    13:03  0:00 pickup -l -t fifo -u
root    31368  0.0  0.0  97756  3860 ?        S    14:00  0:00 sshd: root@pts/0
root    31373  0.0  0.0 108420  2000 pts/0    Ss  14:00  0:00 -bash
root    31405  0.0  0.0 110216  1164 pts/0    R+  14:05  0:00 ps aux
root    31406  0.0  0.0 105432  916 pts/0    S+  14:05  0:00 less

Thanks a lot!


All times are GMT -5. The time now is 07:17 PM.