Page 1 of 2

troubleshooting my db

Posted: Thu Mar 28, 2013 12:19 pm
by benhank
we have nagios on a pretty beefy machine.
for some reason, nagios is using 15.5 gb of 16 gb of ram.
I opened php myadmin and it gave me the following list of warnings:

Code: Select all

 Issue	Recommendation
long_query_time is set to 10 seconds or more, thus only slow queries that take above 10 seconds are logged.	It is suggested to set long_query_time to a lower value, depending on your environment. Usually a value of 1-5 seconds is suggested.
The slow query log is disabled.	Enable slow query logging by setting log_slow_queries to 'ON'. This will help troubleshooting badly performing queries.
Version is compiled from source, not a MySQL official binary.	If you did not compile from source, you may be using a package modified by a distribution. The MySQL manual only is accurate for official MySQL binaries, not any package distributions (such as RedHat, Debian/Ubuntu etc).
The query cache is not enabled.	The query cache is known to greatly improve performance if configured correctly. Enable it by setting query_cache_size to a 2 digit MiB value and setting query_cache_type to 'ON'. Note: If you are using memcached, ignore this recommendation.
Too many sorts are causing temporary tables.	Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending on your system memory limits
There are lots of rows being sorted.	While there is nothing wrong with a high amount of row sorting, you might want to make sure that the queries which require a lot of sorting use indexed columns in the ORDER BY clause, as this will result in much faster sorting
There are too many joins without indexes.	This means that joins are doing full table scans. Adding indexes for the columns being used in the join conditions will greatly speed up table joins
The rate of reading the first index entry is high.	This usually indicates frequent full index scans. Full index scans are faster than table scans but require lots of CPU cycles in big tables, if those tables that have or had high volumes of UPDATEs and DELETEs, running 'OPTIMIZE TABLE' might reduce the amount of and/or speed up full index scans. Other than that full index scans can only be reduced by rewriting queries.
The rate of reading data from a fixed position is high.	This indicates that many queries need to sort results and/or do a full table scan, including join queries that do not use indexes. Add indexes where applicable.
The rate of reading the next table row is high.	This indicates that many queries are doing full table scans. Add indexes where applicable.
Many temporary tables are being written to disk instead of being kept in memory.	Increasing max_heap_table_size and tmp_table_size might help. However some temporary tables are always being written to disk, independent of the value of these variables. To eliminate these you will have to rewrite your queries to avoid those conditions (Within a temporary table: Presence of a BLOB or TEXT column or presence of a column bigger than 512 bytes) as mentioned in the MySQL Documentation
MyISAM key buffer (index cache) % used is low.	You may need to decrease the size of key_buffer_size, re-examine your tables to see if indexes have been removed, or examine queries and expectations about what indexes are being used.
The rate of opening tables is high.	Opening tables requires disk I/O which is costly. Increasing table_open_cache might avoid this.
Too many table locks were not granted immediately.	Optimize queries and/or use InnoDB to reduce lock wait.
Thread cache is disabled, resulting in more overhead from new connections to MySQL.	Enable the thread cache by setting thread_cache_size > 0.
Too many connections are aborted.	Connections are usually aborted when they cannot be authorized. This article might help you track down the source.
Your InnoDB buffer pool is fairly small.	The InnoDB buffer pool has a profound impact on performance for InnoDB tables. Assign all your remaining memory to this buffer. For database servers that use solely InnoDB as storage engine and have no other services (e.g. a web server) running, you may set this as high as 80% of your available memory. If that is not the case, you need to carefully assess the memory consumption of your other services and non-InnoDB-Tables and set this variable accordingly. If it is set too high, your system will start swapping, which decreases performance significantly. See also this article 
i am not asking you guys show me how to do this, but should I?

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 12:41 pm
by abrist
What do your processes look like, 15+ gb of ram usage is crazy.

Code: Select all

ps -aef

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 12:54 pm
by benhank

Code: Select all

postgres   443 25726  0 09:38 ?        00:00:37 postgres: nagiosxi nagiosxi ::1(
root       444     2  0 Mar15 ?        00:00:00 [kpsmoused]
root       445     2  0 Mar15 ?        00:00:00 [usbhid_resumer]
root       475     2  0 Mar15 ?        00:00:00 [kstriped]
postgres   486 25726  0 09:38 ?        00:00:37 postgres: nagiosxi nagiosxi ::1(
root       504     2  0 Mar15 ?        00:00:00 [ttm_swap]
root       512     2  0 Mar15 ?        00:00:01 [kslowd000]
root       513     2  0 Mar15 ?        00:00:01 [kslowd001]
root       708     2  0 Mar15 ?        00:00:00 [scsi_eh_0]
root       712     2  0 Mar15 ?        00:00:00 [scsi_eh_1]
root       713     2  0 Mar15 ?        00:00:00 [scsi_eh_2]
root       765     2  0 Mar15 ?        00:00:00 [scsi_eh_3]
root       766     2  0 Mar15 ?        00:00:00 [hpsa]
root       824     2  0 Mar15 ?        00:00:00 [kdmflush]
root       826     2  0 Mar15 ?        00:00:00 [kdmflush]
root       843     2  0 Mar15 ?        00:11:19 [jbd2/dm-0-8]
root       844     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       845     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       846     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       847     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       848     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       849     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       850     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       851     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       852     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       853     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       854     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       855     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       856     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       857     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       858     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       859     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       860     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       861     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       862     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       863     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       864     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       865     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       866     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       867     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       868     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       869     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       870     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       871     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       872     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       873     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       874     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       875     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root       947     1  0 Mar15 ?        00:00:00 /sbin/udevd -d
root      1145     2  0 Mar15 ?        00:00:15 [edac-poller]
root      1289     1  0 Mar26 ?        00:00:04 /usr/sbin/httpd
root      1471     2  0 Mar15 ?        00:00:00 [kdmflush]
root      1504     2  0 Mar15 ?        00:00:00 [jbd2/sda1-8]
root      1505     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1506     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1507     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1508     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1509     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1510     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1511     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1512     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1513     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1514     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1515     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1516     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1517     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1518     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1519     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1520     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1521     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1522     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1523     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1524     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1525     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1526     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1527     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1528     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1529     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1530     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1531     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1532     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1533     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1534     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1535     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1536     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1537     2  0 Mar15 ?        00:00:09 [jbd2/dm-2-8]
root      1538     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1539     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1540     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1541     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1542     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1543     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1544     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1545     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1546     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1547     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1548     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1549     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1550     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1551     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1552     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1553     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1554     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1555     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1556     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1557     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1558     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1559     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1560     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1561     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1562     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1563     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1564     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1565     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1566     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1567     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1568     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1569     2  0 Mar15 ?        00:00:00 [ext4-dio-unwrit]
root      1586     2  0 Mar15 ?        00:43:33 [flush-253:0]
root      1587     2  0 Mar15 ?        00:00:06 [flush-253:2]
root      1603     2  0 Mar15 ?        00:00:19 [kauditd]
root      1800     1  0 Mar15 ?        00:01:22 auditd
root      1816     1  0 Mar15 ?        00:16:05 /sbin/rsyslogd -i /var/run/syslo
dbus      1828     1  0 Mar15 ?        00:00:00 dbus-daemon --system
avahi     1839     1  0 Mar15 ?        00:00:00 avahi-daemon: running [Lkennagio
avahi     1840  1839  0 Mar15 ?        00:00:00 avahi-daemon: chroot helper
root      1876     1  0 Mar15 ?        00:00:03 /usr/sbin/sshd
root      1884     1  0 Mar15 ?        00:00:00 xinetd -stayalive -pidfile /var/
root      2080     1  0 Mar15 ?        00:00:48 sendmail: accepting connections
smmsp     2090     1  0 Mar15 ?        00:00:00 sendmail: Queue runner@01:00:00
qpidd     2120     1  0 Mar15 ?        00:02:11 /usr/sbin/qpidd --data-dir /var/
root      2179     1  0 Mar15 ?        00:00:04 /usr/local/avamar/bin/avagent.bi
root      2189     1  0 Mar15 ?        00:01:04 crond
ajaxterm  2234     1  0 Mar15 ?        00:04:27 python /usr/share/ajaxterm/ajaxt
root      2482     1  0 Mar15 ?        00:00:30 /usr/bin/perl /usr/libexec/webmi
root      2520     1  0 Mar15 tty1     00:00:00 /sbin/mingetty /dev/tty1
root      2528     1  0 Mar15 tty2     00:00:00 /sbin/mingetty /dev/tty2
root      2539     1  0 Mar15 tty3     00:00:00 /sbin/mingetty /dev/tty3
root      2549     1  0 Mar15 tty4     00:00:00 /sbin/mingetty /dev/tty4
root      2551     1  0 Mar15 tty5     00:00:00 /sbin/mingetty /dev/tty5
root      2552   947  0 Mar15 ?        00:00:00 /sbin/udevd -d
root      2553   947  0 Mar15 ?        00:00:00 /sbin/udevd -d
root      2555     1  0 Mar15 tty6     00:00:00 /sbin/mingetty /dev/tty6
apache    5800  1289  5 10:23 ?        00:10:51 /usr/sbin/httpd
apache    5801  1289  4 10:23 ?        00:10:14 /usr/sbin/httpd
apache    5802  1289  5 10:23 ?        00:11:00 /usr/sbin/httpd
postgres  5822 25726  0 10:23 ?        00:00:31 postgres: nagiosxi nagiosxi ::1(
postgres  5824 25726  0 10:23 ?        00:00:31 postgres: nagiosxi nagiosxi ::1(
postgres  6545 25726  0 10:23 ?        00:00:31 postgres: nagiosxi nagiosxi ::1(
root     14686  2189  0 13:52 ?        00:00:00 CROND
root     14687  2189  0 13:52 ?        00:00:00 CROND
root     14688  2189  0 13:52 ?        00:00:00 CROND
root     14689  2189  0 13:52 ?        00:00:00 CROND
root     14690  2189  0 13:52 ?        00:00:00 CROND
nagios   14692 14688  0 13:52 ?        00:00:00 /bin/sh -c /usr/bin/php -q /usr/
nagios   14696 14692  0 13:52 ?        00:00:00 /usr/bin/php -q /usr/local/nagio
nagios   14699 14686  0 13:52 ?        00:00:00 /bin/sh -c /usr/bin/php -q /usr/
nagios   14700 14690  0 13:52 ?        00:00:00 /bin/sh -c /usr/bin/php -q /usr/
nagios   14701 14687  0 13:52 ?        00:00:00 /bin/sh -c /usr/bin/php -q /usr/
nagios   14702 14689  0 13:52 ?        00:00:00 /bin/sh -c /usr/bin/php -q /usr/
nagios   14703 14699  0 13:52 ?        00:00:00 /usr/bin/php -q /usr/local/nagio
nagios   14704 14700  0 13:52 ?        00:00:00 /usr/bin/php -q /usr/local/nagio
nagios   14705 14702  0 13:52 ?        00:00:00 /usr/bin/php -q /usr/local/nagio
nagios   14706 14701  0 13:52 ?        00:00:00 /usr/bin/php -q /usr/local/nagio
postgres 14709 25726  0 13:52 ?        00:00:00 postgres: nagiosxi nagiosxi ::1(
postgres 14710 25726  0 13:52 ?        00:00:00 postgres: nagiosxi nagiosxi ::1(
postgres 14714 25726  0 13:52 ?        00:00:00 postgres: nagiosxi nagiosxi ::1(
postgres 14752 25726  0 13:52 ?        00:00:00 postgres: nagiosxi nagiosxi ::1(
postgres 14803 25726  0 13:52 ?        00:00:00 postgres: nagiosxi nagiosxi ::1(
nagios   14913 25384  0 13:52 ?        00:00:00 /usr/local/nagios/bin/nagios -d
nagios   14914 14913  0 13:52 ?        00:00:00 /usr/local/nagios/libexec/check_
nagios   14920 25384  0 13:52 ?        00:00:00 /usr/local/nagios/bin/nagios -d
nagios   14921 14920  0 13:52 ?        00:00:00 /usr/local/nagios/libexec/check_
root     14925  1876  0 13:52 ?        00:00:00 sshd: root@notty
root     15008 14925  0 13:52 ?        00:00:00 /usr/libexec/openssh/sftp-server
root     15035  1876  1 13:52 ?        00:00:00 sshd: root@pts/0
nagios   15037 25384  0 13:52 ?        00:00:00 /usr/local/nagios/bin/nagios -d
nagios   15038 15037  0 13:52 ?        00:00:00 /usr/local/nagios/libexec/check_
root     15040 15035  0 13:52 pts/0    00:00:00 -bash
root     15062 15040  0 13:52 pts/0    00:00:00 ps -aef
nagios   17981     1  0 Mar25 ?        00:00:31 /usr/local/nagios/bin/npcd -d -f
nagios   17996     1  0 Mar25 ?        00:00:00 /usr/local/nagios/bin/ndo2db -c
apache   20959  1289  4 08:37 ?        00:15:40 /usr/sbin/httpd
postgres 20993 25726  0 08:37 ?        00:00:48 postgres: nagiosxi nagiosxi ::1(
root     24990     1  0 Mar26 ?        00:00:00 /bin/sh /usr/bin/mysqld_safe --d
mysql    25092 24990 15 Mar26 ?        07:23:25 /usr/libexec/mysqld --basedir=/u
nagios   25380 17996  0 12:24 ?        00:00:08 /usr/local/nagios/bin/ndo2db -c
nagios   25381 25380  1 12:24 ?        00:01:43 /usr/local/nagios/bin/ndo2db -c
nagios   25384     1  9 12:24 ?        00:08:23 /usr/local/nagios/bin/nagios -d
postgres 25726     1  0 Mar15 ?        00:04:07 /usr/bin/postmaster -p 5432 -D /
postgres 25728 25726  0 Mar15 ?        00:00:25 postgres: logger process
postgres 25730 25726  0 Mar15 ?        00:02:37 postgres: writer process
postgres 25731 25726  0 Mar15 ?        00:01:32 postgres: wal writer process
postgres 25732 25726  0 Mar15 ?        00:00:57 postgres: autovacuum launcher pr
postgres 25733 25726  0 Mar15 ?        00:03:54 postgres: stats collector proces
apache   27648  1289  5 08:05 ?        00:17:30 /usr/sbin/httpd
apache   27649  1289  4 08:05 ?        00:17:08 /usr/sbin/httpd
postgres 27679 25726  0 08:05 ?        00:00:54 postgres: nagiosxi nagiosxi ::1(
postgres 27684 25726  0 08:05 ?        00:00:53 postgres: nagiosxi nagiosxi ::1(
apache   28196  1289  4 08:38 ?        00:15:10 /usr/sbin/httpd
postgres 28274 25726  0 08:38 ?        00:00:50 postgres: nagiosxi nagiosxi ::1(
apache   28313  1289  5 08:38 ?        00:17:00 /usr/sbin/httpd
postgres 28345 25726  0 08:38 ?        00:00:48 postgres: nagiosxi nagiosxi ::1(
apache   28520  1289  5 08:39 ?        00:16:05 /usr/sbin/httpd
apache   28521  1289  4 08:39 ?        00:15:26 /usr/sbin/httpd
apache   28522  1289  5 08:39 ?        00:15:46 /usr/sbin/httpd
apache   28523  1289  4 08:39 ?        00:15:38 /usr/sbin/httpd
apache   28524  1289  5 08:39 ?        00:17:31 /usr/sbin/httpd
apache   28525  1289  5 08:39 ?        00:16:05 /usr/sbin/httpd
apache   28526  1289  4 08:39 ?        00:14:07 /usr/sbin/httpd
postgres 28541 25726  0 08:39 ?        00:00:49 postgres: nagiosxi nagiosxi ::1(
postgres 28544 25726  0 08:39 ?        00:00:47 postgres: nagiosxi nagiosxi ::1(
postgres 28560 25726  0 08:39 ?        00:00:48 postgres: nagiosxi nagiosxi ::1(
postgres 28563 25726  0 08:39 ?        00:00:48 postgres: nagiosxi nagiosxi ::1(
postgres 28575 25726  0 08:39 ?        00:00:48 postgres: nagiosxi nagiosxi ::1(
postgres 28599 25726  0 08:39 ?        00:00:49 postgres: nagiosxi nagiosxi ::1(
postgres 28600 25726  0 08:39 ?        00:00:48 postgres: nagiosxi nagiosxi ::1(
apache   31923  1289  5 09:38 ?        00:12:50 /usr/sbin/httpd
apache   31924  1289  5 09:38 ?        00:13:17 /usr/sbin/httpd
apache   31925  1289  5 09:38 ?        00:13:09 /usr/sbin/httpd
apache   31926  1289  4 09:38 ?        00:12:40 /usr/sbin/httpd
postgres 32459 25726  0 09:38 ?        00:00:38 postgres: nagiosxi nagiosxi ::1(
postgres 32492 25726  0 09:38 ?        00:00:38 postgres: nagiosxi nagiosxi ::1(
[root@LkennagiosP01 ~]#

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 2:50 pm
by scottwilkerson
lets run

Code: Select all

ps aux|grep bin/nag
The 4th field is the % of memory usage

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 3:03 pm
by benhank

Code: Select all

[root@LkennagiosP01 ~]# ps aux|grep bin/nag
nagios    1877  0.0  0.1 126092 24960 ?        S    16:03   0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios    2333  0.0  0.1 126092 24960 ?        S    16:03   0:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
root      2361  0.0  0.0 103240   892 pts/0    S+   16:03   0:00 grep bin/nag
nagios   30869 10.1  0.1 126088 25784 ?        Ssl  15:17   4:43 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
[root@LkennagiosP01 ~]#

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 3:27 pm
by scottwilkerson
Ok, so your 3 nagios processes are using 0.1% of the RAM each

16GB
x0.1%
--------
1.6MB

not 15.5 GB

What is the basis for your claim?

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 3:57 pm
by benhank
there yah go bro

Re: troubleshooting my db

Posted: Thu Mar 28, 2013 4:43 pm
by slansing
That is the entire server's usage, not just the nagios side. Can you run the following and wrap the output in a reply? That way we can see memory consumption for all.:

Code: Select all

ps aux

Re: troubleshooting my db

Posted: Fri Mar 29, 2013 10:02 am
by benhank

Code: Select all

Using username "root".
Last login: Fri Mar 29 10:52:31 2013 from 172.26.70.4
[root@LkennagiosP01 ~]# ps aux
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  19228  1472 ?        Ss   Mar15   0:14 /sbin/init
root         2  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthreadd]
root         3  0.0  0.0      0     0 ?        S    Mar15   1:41 [migration/0]
root         4  0.0  0.0      0     0 ?        S    Mar15   4:59 [ksoftirqd/0]
root         5  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/0]
root         6  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/0]
root         7  0.0  0.0      0     0 ?        S    Mar15   0:15 [migration/1]
root         8  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/1]
root         9  0.0  0.0      0     0 ?        S    Mar15   4:01 [ksoftirqd/1]
root        10  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/1]
root        11  0.0  0.0      0     0 ?        S    Mar15   0:43 [migration/2]
root        12  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/2]
root        13  0.0  0.0      0     0 ?        S    Mar15   0:15 [ksoftirqd/2]
root        14  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/2]
root        15  0.0  0.0      0     0 ?        S    Mar15   0:09 [migration/3]
root        16  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/3]
root        17  0.0  0.0      0     0 ?        S    Mar15   0:08 [ksoftirqd/3]
root        18  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/3]
root        19  0.0  0.0      0     0 ?        S    Mar15   1:02 [migration/4]
root        20  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/4]
root        21  0.0  0.0      0     0 ?        S    Mar15   0:05 [ksoftirqd/4]
root        22  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/4]
root        23  0.0  0.0      0     0 ?        S    Mar15   0:02 [migration/5]
root        24  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/5]
root        25  0.0  0.0      0     0 ?        S    Mar15   0:01 [ksoftirqd/5]
root        26  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/5]
root        27  0.0  0.0      0     0 ?        S    Mar15   1:01 [migration/6]
root        28  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/6]
root        29  0.0  0.0      0     0 ?        S    Mar15   0:16 [ksoftirqd/6]
root        30  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/6]
root        31  0.0  0.0      0     0 ?        S    Mar15   1:08 [migration/7]
root        32  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/7]
root        33  0.0  0.0      0     0 ?        S    Mar15   0:24 [ksoftirqd/7]
root        34  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/7]
root        35  0.0  0.0      0     0 ?        S    Mar15   0:07 [migration/8]
root        36  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/8]
root        37  0.0  0.0      0     0 ?        S    Mar15   0:01 [ksoftirqd/8]
root        38  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/8]
root        39  0.0  0.0      0     0 ?        S    Mar15   0:01 [migration/9]
root        40  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/9]
root        41  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/9]
root        42  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/9]
root        43  0.0  0.0      0     0 ?        S    Mar15   0:33 [migration/10]
root        44  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/10]
root        45  0.0  0.0      0     0 ?        S    Mar15   0:06 [ksoftirqd/10]
root        46  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/10]
root        47  0.0  0.0      0     0 ?        S    Mar15   0:34 [migration/11]
root        48  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/11]
root        49  0.0  0.0      0     0 ?        S    Mar15   0:10 [ksoftirqd/11]
root        50  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/11]
root        51  0.0  0.0      0     0 ?        S    Mar15   0:01 [migration/12]
root        52  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/12]
root        53  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/12]
root        54  0.0  0.0      0     0 ?        S    Mar15   0:00 [watchdog/12]
root        55  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/13]
root        56  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/13]
root        57  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/13]
root        58  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/13]
root        59  0.0  0.0      0     0 ?        S    Mar15   0:10 [migration/14]
root        60  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/14]
root        61  0.0  0.0      0     0 ?        S    Mar15   0:02 [ksoftirqd/14]
root        62  0.0  0.0      0     0 ?        S    Mar15   0:00 [watchdog/14]
root        63  0.0  0.0      0     0 ?        S    Mar15   0:15 [migration/15]
root        64  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/15]
root        65  0.0  0.0      0     0 ?        S    Mar15   0:04 [ksoftirqd/15]
root        66  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/15]
root        67  0.0  0.0      0     0 ?        S    Mar15   0:13 [migration/16]
root        68  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/16]
root        69  0.0  0.0      0     0 ?        S    Mar15   4:04 [ksoftirqd/16]
root        70  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/16]
root        71  0.0  0.0      0     0 ?        S    Mar15   0:11 [migration/17]
root        72  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/17]
root        73  0.0  0.0      0     0 ?        S    Mar15   3:47 [ksoftirqd/17]
root        74  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/17]
root        75  0.0  0.0      0     0 ?        S    Mar15   0:18 [migration/18]
root        76  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/18]
root        77  0.0  0.0      0     0 ?        S    Mar15   0:08 [ksoftirqd/18]
root        78  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/18]
root        79  0.0  0.0      0     0 ?        S    Mar15   0:13 [migration/19]
root        80  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/19]
root        81  0.0  0.0      0     0 ?        S    Mar15   0:08 [ksoftirqd/19]
root        82  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/19]
root        83  0.0  0.0      0     0 ?        S    Mar15   0:02 [migration/20]
root        84  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/20]
root        85  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/20]
root        86  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/20]
root        87  0.0  0.0      0     0 ?        S    Mar15   0:02 [migration/21]
root        88  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/21]
root        89  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/21]
root        90  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/21]
root        91  0.0  0.0      0     0 ?        S    Mar15   1:13 [migration/22]
root        92  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/22]
root        93  0.0  0.0      0     0 ?        S    Mar15   0:21 [ksoftirqd/22]
root        94  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/22]
root        95  0.0  0.0      0     0 ?        S    Mar15   1:14 [migration/23]
root        96  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/23]
root        97  0.0  0.0      0     0 ?        S    Mar15   0:27 [ksoftirqd/23]
root        98  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/23]
root        99  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/24]
root       100  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/24]
root       101  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/24]
root       102  0.0  0.0      0     0 ?        S    Mar15   0:00 [watchdog/24]
root       103  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/25]
root       104  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/25]
root       105  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/25]
root       106  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/25]
root       107  0.0  0.0      0     0 ?        S    Mar15   0:55 [migration/26]
root       108  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/26]
root       109  0.0  0.0      0     0 ?        S    Mar15   0:13 [ksoftirqd/26]
root       110  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/26]
root       111  0.0  0.0      0     0 ?        S    Mar15   0:45 [migration/27]
root       112  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/27]
root       113  0.0  0.0      0     0 ?        S    Mar15   0:12 [ksoftirqd/27]
root       114  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/27]
root       115  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/28]
root       116  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/28]
root       117  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/28]
root       118  0.0  0.0      0     0 ?        S    Mar15   0:00 [watchdog/28]
root       119  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/29]
root       120  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/29]
root       121  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksoftirqd/29]
root       122  0.0  0.0      0     0 ?        S    Mar15   0:00 [watchdog/29]
root       123  0.0  0.0      0     0 ?        S    Mar15   0:33 [migration/30]
root       124  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/30]
root       125  0.0  0.0      0     0 ?        S    Mar15   0:06 [ksoftirqd/30]
root       126  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/30]
root       127  0.0  0.0      0     0 ?        S    Mar15   0:26 [migration/31]
root       128  0.0  0.0      0     0 ?        S    Mar15   0:00 [migration/31]
root       129  0.0  0.0      0     0 ?        S    Mar15   0:06 [ksoftirqd/31]
root       130  0.0  0.0      0     0 ?        S    Mar15   0:01 [watchdog/31]
root       131  0.0  0.0      0     0 ?        S    Mar15   1:30 [events/0]
root       132  0.0  0.0      0     0 ?        S    Mar15   1:08 [events/1]
root       133  0.0  0.0      0     0 ?        S    Mar15   0:59 [events/2]
root       134  0.0  0.0      0     0 ?        S    Mar15   1:04 [events/3]
root       135  0.0  0.0      0     0 ?        S    Mar15   0:58 [events/4]
root       136  0.0  0.0      0     0 ?        S    Mar15   0:57 [events/5]
root       137  0.0  0.0      0     0 ?        S    Mar15   0:59 [events/6]
root       138  0.0  0.0      0     0 ?        S    Mar15   1:05 [events/7]
root       139  0.0  0.0      0     0 ?        S    Mar15   0:49 [events/8]
root       140  0.0  0.0      0     0 ?        S    Mar15   0:55 [events/9]
root       141  0.0  0.0      0     0 ?        S    Mar15   0:59 [events/10]
root       142  0.0  0.0      0     0 ?        S    Mar15   1:00 [events/11]
root       143  0.0  0.0      0     0 ?        S    Mar15   0:46 [events/12]
root       144  0.0  0.0      0     0 ?        S    Mar15   0:58 [events/13]
root       145  0.0  0.0      0     0 ?        S    Mar15   1:05 [events/14]
root       146  0.0  0.0      0     0 ?        S    Mar15   1:13 [events/15]
root       147  0.0  0.0      0     0 ?        S    Mar15   1:02 [events/16]
root       148  0.0  0.0      0     0 ?        S    Mar15   1:07 [events/17]
root       149  0.0  0.0      0     0 ?        S    Mar15   0:53 [events/18]
root       150  0.0  0.0      0     0 ?        S    Mar15   1:01 [events/19]
root       151  0.0  0.0      0     0 ?        S    Mar15   0:47 [events/20]
root       152  0.0  0.0      0     0 ?        S    Mar15   0:52 [events/21]
root       153  0.0  0.0      0     0 ?        S    Mar15   1:00 [events/22]
root       154  0.0  0.0      0     0 ?        S    Mar15   1:01 [events/23]
root       155  0.0  0.0      0     0 ?        S    Mar15   0:41 [events/24]
root       156  0.0  0.0      0     0 ?        S    Mar15   0:43 [events/25]
root       157  0.0  0.0      0     0 ?        S    Mar15   0:57 [events/26]
root       158  0.0  0.0      0     0 ?        S    Mar15   0:59 [events/27]
root       159  0.0  0.0      0     0 ?        S    Mar15   0:40 [events/28]
root       160  0.0  0.0      0     0 ?        S    Mar15   0:53 [events/29]
root       161  0.0  0.0      0     0 ?        S    Mar15   1:07 [events/30]
root       162  0.0  0.0      0     0 ?        S    Mar15   1:18 [events/31]
root       163  0.0  0.0      0     0 ?        S    Mar15   0:00 [cgroup]
root       164  0.0  0.0      0     0 ?        S    Mar15   0:00 [khelper]
root       165  0.0  0.0      0     0 ?        S    Mar15   0:00 [netns]
root       166  0.0  0.0      0     0 ?        S    Mar15   0:00 [async/mgr]
root       167  0.0  0.0      0     0 ?        S    Mar15   0:00 [pm]
root       168  0.0  0.0      0     0 ?        S    Mar15   0:04 [sync_supers]
root       169  0.0  0.0      0     0 ?        S    Mar15   0:04 [bdi-default]
root       170  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/0]
root       171  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/1]
root       172  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/2]
root       173  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/3]
root       174  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/4]
root       175  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/5]
root       176  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/6]
root       177  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/7]
root       178  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/8]
root       179  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/9]
root       180  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/10]
root       181  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/11]
root       182  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/12]
root       183  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/13]
root       184  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/14]
root       185  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/15]
root       186  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/16]
root       187  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/17]
root       188  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/18]
root       189  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/19]
root       190  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/20]
root       191  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/21]
root       192  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/22]
root       193  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/23]
root       194  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/24]
root       195  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/25]
root       196  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/26]
root       197  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/27]
root       198  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/28]
root       199  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/29]
root       200  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/30]
root       201  0.0  0.0      0     0 ?        S    Mar15   0:00 [kintegrityd/31]
root       202  0.0  0.0      0     0 ?        S    Mar15   5:46 [kblockd/0]
root       203  0.0  0.0      0     0 ?        S    Mar15   1:57 [kblockd/1]
root       204  0.0  0.0      0     0 ?        S    Mar15   3:27 [kblockd/2]
root       205  0.0  0.0      0     0 ?        S    Mar15   0:16 [kblockd/3]
root       206  0.0  0.0      0     0 ?        S    Mar15   2:04 [kblockd/4]
root       207  0.0  0.0      0     0 ?        S    Mar15   0:05 [kblockd/5]
root       208  0.0  0.0      0     0 ?        S    Mar15   0:58 [kblockd/6]
root       209  0.0  0.0      0     0 ?        S    Mar15   0:20 [kblockd/7]
root       210  0.0  0.0      0     0 ?        S    Mar15   0:23 [kblockd/8]
root       211  0.0  0.0      0     0 ?        S    Mar15   0:01 [kblockd/9]
root       212  0.0  0.0      0     0 ?        S    Mar15   0:12 [kblockd/10]
root       213  0.0  0.0      0     0 ?        S    Mar15   0:06 [kblockd/11]
root       214  0.0  0.0      0     0 ?        S    Mar15   0:10 [kblockd/12]
root       215  0.0  0.0      0     0 ?        S    Mar15   0:00 [kblockd/13]
root       216  0.0  0.0      0     0 ?        S    Mar15   0:03 [kblockd/14]
root       217  0.0  0.0      0     0 ?        S    Mar15   0:01 [kblockd/15]
root       218  0.0  0.0      0     0 ?        S    Mar15   1:45 [kblockd/16]
root       219  0.0  0.0      0     0 ?        S    Mar15   1:47 [kblockd/17]
root       220  0.0  0.0      0     0 ?        S    Mar15   0:12 [kblockd/18]
root       221  0.0  0.0      0     0 ?        S    Mar15   0:15 [kblockd/19]
root       222  0.0  0.0      0     0 ?        S    Mar15   0:03 [kblockd/20]
root       223  0.0  0.0      0     0 ?        S    Mar15   0:04 [kblockd/21]
root       224  0.0  0.0      0     0 ?        S    Mar15   0:20 [kblockd/22]
root       225  0.0  0.0      0     0 ?        S    Mar15   0:21 [kblockd/23]
root       226  0.0  0.0      0     0 ?        S    Mar15   0:01 [kblockd/24]
root       227  0.0  0.0      0     0 ?        S    Mar15   0:01 [kblockd/25]
root       228  0.0  0.0      0     0 ?        S    Mar15   0:07 [kblockd/26]
root       229  0.0  0.0      0     0 ?        S    Mar15   0:07 [kblockd/27]
root       230  0.0  0.0      0     0 ?        S    Mar15   0:00 [kblockd/28]
root       231  0.0  0.0      0     0 ?        S    Mar15   0:00 [kblockd/29]
root       232  0.0  0.0      0     0 ?        S    Mar15   0:02 [kblockd/30]
root       233  0.0  0.0      0     0 ?        S    Mar15   0:02 [kblockd/31]
root       234  0.0  0.0      0     0 ?        S    Mar15   0:00 [kacpid]
root       235  0.0  0.0      0     0 ?        S    Mar15   0:00 [kacpi_notify]
root       236  0.0  0.0      0     0 ?        S    Mar15   0:00 [kacpi_hotplug]
root       237  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/0]
root       238  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/1]
root       239  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/2]
root       240  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/3]
root       241  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/4]
root       242  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/5]
root       243  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/6]
root       244  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/7]
root       245  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/8]
root       246  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/9]
root       247  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/10]
root       248  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/11]
root       249  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/12]
root       250  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/13]
root       251  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/14]
root       252  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/15]
root       253  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/16]
root       254  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/17]
root       255  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/18]
root       256  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/19]
root       257  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/20]
root       258  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/21]
root       259  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/22]
root       260  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/23]
root       261  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/24]
root       262  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/25]
root       263  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/26]
root       264  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/27]
root       265  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/28]
root       266  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/29]
root       267  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/30]
root       268  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata/31]
root       269  0.0  0.0      0     0 ?        S    Mar15   0:00 [ata_aux]
root       270  0.0  0.0      0     0 ?        S    Mar15   0:00 [ksuspend_usbd]
root       271  0.0  0.0      0     0 ?        S    Mar15   0:00 [khubd]
root       272  0.0  0.0      0     0 ?        S    Mar15   0:00 [kseriod]
root       273  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/0]
root       274  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/1]
root       275  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/2]
root       276  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/3]
root       277  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/4]
root       278  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/5]
root       279  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/6]
root       280  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/7]
root       281  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/8]
root       282  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/9]
root       283  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/10]
root       284  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/11]
root       285  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/12]
root       286  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/13]
root       287  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/14]
root       288  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/15]
root       289  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/16]
root       290  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/17]
root       291  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/18]
root       292  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/19]
root       293  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/20]
root       294  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/21]
root       295  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/22]
root       296  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/23]
root       297  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/24]
root       298  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/25]
root       299  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/26]
root       300  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/27]
root       301  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/28]
root       302  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/29]
root       303  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/30]
root       304  0.0  0.0      0     0 ?        S    Mar15   0:00 [md/31]
root       305  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/0]
root       306  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/1]
root       307  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/2]
root       308  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/3]
root       309  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/4]
root       310  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/5]
root       311  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/6]
root       312  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/7]
root       313  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/8]
root       314  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/9]
root       315  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/10]
root       316  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/11]
root       317  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/12]
root       318  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/13]
root       319  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/14]
root       320  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/15]
root       321  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/16]
root       322  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/17]
root       323  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/18]
root       324  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/19]
root       325  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/20]
root       326  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/21]
root       327  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/22]
root       328  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/23]
root       329  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/24]
root       330  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/25]
root       331  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/26]
root       332  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/27]
root       333  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/28]
root       334  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/29]
root       335  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/30]
root       336  0.0  0.0      0     0 ?        S    Mar15   0:00 [md_misc/31]
root       337  0.0  0.0      0     0 ?        S    Mar15   0:01 [khungtaskd]
root       338  0.0  0.0      0     0 ?        S    Mar15   0:22 [kswapd0]
root       339  0.0  0.0      0     0 ?        S    Mar15   0:23 [kswapd1]
root       340  0.0  0.0      0     0 ?        SN   Mar15   0:00 [ksmd]
root       341  0.0  0.0      0     0 ?        SN   Mar15   1:37 [khugepaged]
root       342  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/0]
root       343  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/1]
root       344  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/2]
root       345  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/3]
root       346  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/4]
root       347  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/5]
root       348  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/6]
root       349  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/7]
root       350  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/8]
root       351  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/9]
root       352  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/10]
root       353  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/11]
root       354  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/12]
root       355  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/13]
root       356  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/14]
root       357  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/15]
root       358  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/16]
root       359  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/17]
root       360  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/18]
root       361  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/19]
root       362  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/20]
root       363  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/21]
root       364  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/22]
root       365  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/23]
root       366  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/24]
root       367  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/25]
root       368  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/26]
root       369  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/27]
root       370  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/28]
root       371  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/29]
root       372  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/30]
root       373  0.0  0.0      0     0 ?        S    Mar15   0:00 [aio/31]
root       374  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/0]
root       375  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/1]
root       376  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/2]
root       377  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/3]
root       378  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/4]
root       379  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/5]
root       380  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/6]
root       381  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/7]
root       382  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/8]
root       383  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/9]
root       384  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/10]
root       385  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/11]
root       386  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/12]
root       387  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/13]
root       388  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/14]
root       389  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/15]
root       390  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/16]
root       391  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/17]
root       392  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/18]
root       393  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/19]
root       394  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/20]
root       395  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/21]
root       396  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/22]
root       397  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/23]
root       398  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/24]
root       399  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/25]
root       400  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/26]
root       401  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/27]
root       402  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/28]
root       403  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/29]
root       404  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/30]
root       405  0.0  0.0      0     0 ?        S    Mar15   0:00 [crypto/31]
root       410  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/0]
root       411  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/1]
root       412  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/2]
root       413  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/3]
root       414  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/4]
root       415  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/5]
root       416  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/6]
root       417  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/7]
root       418  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/8]
root       419  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/9]
root       420  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/10]
root       421  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/11]
root       422  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/12]
root       423  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/13]
root       424  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/14]
root       425  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/15]
root       426  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/16]
root       427  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/17]
root       428  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/18]
root       429  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/19]
root       430  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/20]
root       431  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/21]
root       432  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/22]
root       433  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/23]
root       434  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/24]
root       435  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/25]
root       436  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/26]
root       437  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/27]
root       438  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/28]
root       439  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/29]
root       440  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/30]
root       441  0.0  0.0      0     0 ?        S    Mar15   0:00 [kthrotld/31]
root       442  0.0  0.0      0     0 ?        SN   Mar15   2:49 [kipmi0]
root       444  0.0  0.0      0     0 ?        S    Mar15   0:00 [kpsmoused]
root       445  0.0  0.0      0     0 ?        S    Mar15   0:00 [usbhid_resumer]
root       475  0.0  0.0      0     0 ?        S    Mar15   0:00 [kstriped]
root       504  0.0  0.0      0     0 ?        S    Mar15   0:00 [ttm_swap]
root       512  0.0  0.0      0     0 ?        S<   Mar15   0:01 [kslowd000]
root       513  0.0  0.0      0     0 ?        S<   Mar15   0:01 [kslowd001]
root       708  0.0  0.0      0     0 ?        S    Mar15   0:00 [scsi_eh_0]
root       712  0.0  0.0      0     0 ?        S    Mar15   0:00 [scsi_eh_1]
root       713  0.0  0.0      0     0 ?        S    Mar15   0:00 [scsi_eh_2]
root       765  0.0  0.0      0     0 ?        S    Mar15   0:00 [scsi_eh_3]
root       766  0.0  0.0      0     0 ?        S    Mar15   0:00 [hpsa]
root       824  0.0  0.0      0     0 ?        S    Mar15   0:00 [kdmflush]
root       826  0.0  0.0      0     0 ?        S    Mar15   0:00 [kdmflush]
root       843  0.0  0.0      0     0 ?        S    Mar15  12:10 [jbd2/dm-0-8]
root       844  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       845  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       846  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       847  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       848  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       849  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       850  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       851  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       852  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       853  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       854  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       855  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       856  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       857  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       858  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       859  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       860  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       861  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       862  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       863  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       864  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       865  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       866  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       867  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       868  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       869  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       870  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       871  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       872  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       873  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       874  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       875  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root       947  0.0  0.0  11316  1060 ?        S<s  Mar15   0:00 /sbin/udevd -d
root      1145  0.0  0.0      0     0 ?        S    Mar15   0:16 [edac-poller]
root      1289  0.0  0.0 335288 14052 ?        Ss   Mar26   0:06 /usr/sbin/httpd
root      1471  0.0  0.0      0     0 ?        S    Mar15   0:00 [kdmflush]
root      1504  0.0  0.0      0     0 ?        S    Mar15   0:00 [jbd2/sda1-8]
root      1505  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1506  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1507  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1508  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1509  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1510  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1511  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1512  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1513  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1514  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1515  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1516  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1517  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1518  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1519  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1520  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1521  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1522  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1523  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1524  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1525  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1526  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1527  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1528  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1529  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1530  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1531  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1532  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1533  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1534  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1535  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1536  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1537  0.0  0.0      0     0 ?        S    Mar15   0:10 [jbd2/dm-2-8]
root      1538  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1539  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1540  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1541  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1542  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1543  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1544  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1545  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1546  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1547  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1548  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1549  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1550  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1551  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1552  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1553  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1554  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1555  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1556  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1557  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1558  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1559  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1560  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1561  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1562  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1563  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1564  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1565  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1566  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1567  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1568  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1569  0.0  0.0      0     0 ?        S    Mar15   0:00 [ext4-dio-unwrit]
root      1586  0.2  0.0      0     0 ?        S    Mar15  46:45 [flush-253:0]
root      1587  0.0  0.0      0     0 ?        S    Mar15   0:06 [flush-253:2]
root      1603  0.0  0.0      0     0 ?        S    Mar15   0:20 [kauditd]
root      1800  0.0  0.0  93196  2844 ?        S<sl Mar15   1:28 auditd
root      1816  0.0  0.0 256192  5804 ?        Sl   Mar15  16:08 /sbin/rsyslogd -i /var/run/syslogd.pid -c 5
dbus      1828  0.0  0.0  21400   392 ?        Ss   Mar15   0:00 dbus-daemon --system
avahi     1839  0.0  0.0  27792  1612 ?        S    Mar15   0:00 avahi-daemon: running [LkennagiosP01.local]
avahi     1840  0.0  0.0  27660   496 ?        Ss   Mar15   0:00 avahi-daemon: chroot helper
root      1876  0.0  0.0  64116  1172 ?        Ss   Mar15   0:03 /usr/sbin/sshd
root      1884  0.0  0.0  22092   924 ?        Ss   Mar15   0:00 xinetd -stayalive -pidfile /var/run/xinetd.pid
root      2080  0.0  0.0  82436  1224 ?        Ss   Mar15   0:52 sendmail: accepting connections
smmsp     2090  0.0  0.0  78160   832 ?        Ss   Mar15   0:00 sendmail: Queue runner@01:00:00 for /var/spool/clien
qpidd     2120  0.0  0.1 2922056 23404 ?       Ssl  Mar15   2:20 /usr/sbin/qpidd --data-dir /var/lib/qpidd --daemon
root      2179  0.0  0.0 669336  7668 ?        Ssl  Mar15   0:04 /usr/local/avamar/bin/avagent.bin --bindir="/usr/loc
root      2189  0.0  0.0 117240  1120 ?        Ss   Mar15   1:08 crond
ajaxterm  2234  0.0  0.0 167844  7256 ?        Sl   Mar15   4:46 python /usr/share/ajaxterm/ajaxterm.py --daemon --po
root      2482  0.0  0.1  96048 20692 ?        Ss   Mar15   0:32 /usr/bin/perl /usr/libexec/webmin/miniserv.pl /etc/w
root      2520  0.0  0.0   4060   568 tty1     Ss+  Mar15   0:00 /sbin/mingetty /dev/tty1
root      2528  0.0  0.0   4056   564 tty2     Ss+  Mar15   0:00 /sbin/mingetty /dev/tty2
root      2539  0.0  0.0   4060   572 tty3     Ss+  Mar15   0:00 /sbin/mingetty /dev/tty3
root      2549  0.0  0.0   4060   568 tty4     Ss+  Mar15   0:00 /sbin/mingetty /dev/tty4
root      2551  0.0  0.0   4060   572 tty5     Ss+  Mar15   0:00 /sbin/mingetty /dev/tty5
root      2552  0.0  0.0  11324  1004 ?        S<   Mar15   0:00 /sbin/udevd -d
root      2553  0.0  0.0  11324  1064 ?        S<   Mar15   0:00 /sbin/udevd -d
root      2555  0.0  0.0   4060   568 tty6     Ss+  Mar15   0:00 /sbin/mingetty /dev/tty6
apache    9455  4.1  0.3 482128 58364 ?        S    Mar28  44:04 /usr/sbin/httpd
postgres  9650  0.0  0.0 215204  7476 ?        Ss   Mar28   0:39 postgres: nagiosxi nagiosxi ::1(41756) idle
apache   10926  5.1  0.2 457300 33364 ?        S    10:59   0:04 /usr/sbin/httpd
postgres 10927  0.1  0.0 215136  6224 ?        Ss   10:59   0:00 postgres: nagiosxi nagiosxi ::1(60216) idle
root     11299  0.0  0.0 140124  1628 ?        S    11:00   0:00 CROND
root     11300  0.0  0.0 140124  1628 ?        S    11:00   0:00 CROND
root     11301  0.0  0.0 140124  1628 ?        S    11:00   0:00 CROND
root     11302  0.0  0.0 140124  1628 ?        S    11:00   0:00 CROND
root     11303  0.0  0.0 140124  1628 ?        S    11:00   0:00 CROND
nagios   11310  0.0  0.0   9192  1188 ?        Ss   11:00   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/
nagios   11311  0.0  0.0   9192  1188 ?        Ss   11:00   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/
nagios   11312  0.0  0.0   9192  1192 ?        Ss   11:00   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/
nagios   11314  0.0  0.0   9192  1188 ?        Ss   11:00   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/
nagios   11319  0.4  0.1 219624 21736 ?        S    11:00   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.ph
nagios   11322  0.6  0.1 226028 28328 ?        S    11:00   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/eventman.ph
nagios   11323  0.5  0.1 219856 22352 ?        S    11:00   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php
nagios   11326  0.4  0.1 219852 22000 ?        S    11:00   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/perfdatapro
nagios   11327  0.0  0.0   9192  1192 ?        Ss   11:00   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/
nagios   11329  0.4  0.1 219860 21908 ?        S    11:00   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.p
postgres 11331  0.0  0.0 215068  5788 ?        Ss   11:00   0:00 postgres: nagiosxi nagiosxi ::1(60359) idle
postgres 11332  0.0  0.0 215068  5792 ?        Ss   11:00   0:00 postgres: nagiosxi nagiosxi ::1(60360) idle
postgres 11334  0.1  0.0 215132  6136 ?        Ss   11:00   0:00 postgres: nagiosxi nagiosxi ::1(60362) idle
postgres 11381  0.0  0.0 215088  6516 ?        Ss   11:00   0:00 postgres: nagiosxi nagiosxi ::1(60366) idle
postgres 11432  0.0  0.0 215068  5756 ?        Ss   11:00   0:00 postgres: nagiosxi nagiosxi ::1(60369) idle
root     11459  0.1  0.0  97996  4128 ?        Ss   11:00   0:00 sshd: root@notty
root     11462  0.0  0.0  55212  2124 ?        Ss   11:00   0:00 /usr/libexec/openssh/sftp-server
root     11465  0.1  0.0  97996  4128 ?        Ss   11:00   0:00 sshd: root@pts/0
root     11473  0.0  0.0 108432  1988 pts/0    Ss   11:00   0:00 -bash
apache   11616  2.2  0.1 456508 32240 ?        S    11:00   0:00 /usr/sbin/httpd
postgres 11618  0.0  0.0 215136  5820 ?        Ss   11:00   0:00 postgres: nagiosxi nagiosxi ::1(60395) idle
root     11642  6.0  0.0 110224  1184 pts/0    R+   11:00   0:00 ps aux
apache   12102  4.7  0.3 482120 58416 ?        S    08:20   7:41 /usr/sbin/httpd
postgres 12138  0.0  0.0 215824  7852 ?        Ss   08:20   0:07 postgres: nagiosxi nagiosxi ::1(44935) idle
apache   16778  4.6  0.2 462524 39048 ?        S    Mar28  48:55 /usr/sbin/httpd
postgres 16825  0.0  0.0 215184  7448 ?        Ss   Mar28   0:40 postgres: nagiosxi nagiosxi ::1(42909) idle
root     17566  0.0  0.0  97996  4128 ?        Ss   10:52   0:00 sshd: root@notty
root     17578  0.0  0.0  55212  2128 ?        Ss   10:52   0:00 /usr/libexec/openssh/sftp-server
apache   17941  4.3  0.3 482124 58044 ?        S    Mar28  29:26 /usr/sbin/httpd
nagios   17981  0.0  0.0 424172   952 ?        S    Mar25   0:42 /usr/local/nagios/bin/npcd -d -f /usr/local/nagios/e
nagios   17996  0.0  0.0  49844   824 ?        Ss   Mar25   0:00 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/et
postgres 18087  0.0  0.0 215204  7412 ?        Ss   Mar28   0:24 postgres: nagiosxi nagiosxi ::1(55038) idle
apache   20729  4.2  0.3 475924 52540 ?        S    Mar28  47:56 /usr/sbin/httpd
postgres 20771  0.0  0.0 215848  8188 ?        Ss   Mar28   0:47 postgres: nagiosxi nagiosxi ::1(36547) idle
apache   22161  4.6  0.3 472872 49476 ?        S    Mar28  52:06 /usr/sbin/httpd
postgres 22199  0.0  0.0 215720  8128 ?        Ss   Mar28   0:48 postgres: nagiosxi nagiosxi ::1(36619) idle
apache   23259  4.2  0.3 482124 58308 ?        S    Mar28  42:37 /usr/sbin/httpd
postgres 23323  0.0  0.0 215204  7452 ?        Ss   Mar28   0:36 postgres: nagiosxi nagiosxi ::1(53083) idle
root     24990  0.0  0.0 108164  1584 ?        S    Mar26   0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysq
mysql    25092 14.8  0.3 4947748 63044 ?       Sl   Mar26 622:23 /usr/libexec/mysqld --basedir=/usr --datadir=/var/li
postgres 25726  0.0  0.0 213700  6232 ?        S    Mar15   4:24 /usr/bin/postmaster -p 5432 -D /var/lib/pgsql/data
postgres 25728  0.0  0.0 176712  1460 ?        Ss   Mar15   0:27 postgres: logger process
postgres 25730  0.0  0.0 213820  9696 ?        Ss   Mar15   2:48 postgres: writer process
postgres 25731  0.0  0.0 213700  1740 ?        Ss   Mar15   1:38 postgres: wal writer process
postgres 25732  0.0  0.0 213988  2008 ?        Ss   Mar15   1:01 postgres: autovacuum launcher process
postgres 25733  0.0  0.0 176988  1720 ?        Ss   Mar15   4:11 postgres: stats collector process
apache   29096  4.4  0.2 472228 48828 ?        S    Mar28  43:12 /usr/sbin/httpd
postgres 29171  0.0  0.0 215184  7432 ?        Ss   Mar28   0:34 postgres: nagiosxi nagiosxi ::1(40491) idle
nagios   30865  0.1  0.0  49844  1568 ?        S    Mar28   1:36 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/et
nagios   30866  1.7  0.0  54496  6324 ?        S    Mar28  20:15 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/et
nagios   30869 10.7  0.1 132476 32128 ?        Ssl  Mar28 127:03 /usr/local/nagios/bin/nagios -d /usr/local/nagios/et
apache   31346  4.4  0.3 482816 59068 ?        S    Mar28  49:55 /usr/sbin/httpd
postgres 31357  0.0  0.0 215728  8108 ?        Ss   Mar28   0:47 postgres: nagiosxi nagiosxi ::1(39346) idle
[root@LkennagiosP01 ~]#

Re: troubleshooting my db

Posted: Fri Mar 29, 2013 10:09 am
by abrist
Lets check to see if disk buffers are using the lion's share of ram:

Code: Select all

free -m