Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 638747 Details for
Bug 873379
Out of memory with Spacewalk 1.8 and Postgres 8.4.13
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Postgres queries describing locks, process listing, file listings.
spacewalk_postgres_issue.txt (text/plain), 111.80 KB, created by
Valeriy Vasiliev
on 2012-11-05 17:07:30 UTC
(
hide
)
Description:
Postgres queries describing locks, process listing, file listings.
Filename:
MIME Type:
Creator:
Valeriy Vasiliev
Created:
2012-11-05 17:07:30 UTC
Size:
111.80 KB
patch
obsolete
>==> pg_locks.txt <== >================================================================== >select count(*) from pg_locks; >------------------------------------------------------------------ >-[ RECORD 1 ]----------------------------------------------------- >count | 26686 >================================================================== > >==> pg_lock_details.txt <== >================================================================== >select bl.pid as blocked_pid, a.usename as blocked_user, > ka.current_query as blocking_statement, now() - ka.query_start as blocking_duration, > kl.pid as blocking_pid, ka.usename as blocking_user, a.current_query as blocked_statement, > now() - a.query_start as blocked_duration > from pg_catalog.pg_locks bl > join pg_catalog.pg_stat_activity a > on bl.pid = a.procpid > join pg_catalog.pg_locks kl > join pg_catalog.pg_stat_activity ka > on kl.pid = ka.procpid > on bl.transactionid = kl.transactionid and bl.pid != kl.pid > where not bl.granted; >------------------------------------------------------------------ >-[ RECORD 1 ]----------------------------------------------------- >blocked_pid | 17872 >blocked_user | spaceuser >blocking_statement | <IDLE> in transaction >blocking_duration | 16:05:34.389695 >blocking_pid | 17823 >blocking_user | spaceuser >blocked_statement | > : update rhnServerAction > : set status = 1, > : pickup_time = current_timestamp, > : remaining_tries = 4 - 1 > : where action_id = 4353 > : and server_id = 1000010028 > : >blocked_duration | 16:03:27.18129 >================================================================== > >==> pg_stat_time_asc.txt <== >================================================================== >SELECT * FROM pg_stat_statements ORDER BY total_time DESC LIMIT 5; >------------------------------------------------------------------ >-[ RECORD 1 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | > : select a.id, sa.server_id, pc.jabber_id, > : date_diff_in_days(current_timestamp, earliest_action) * 86400 delta > : from > : rhnServerAction sa, > : rhnAction a, > : rhnPushClient pc > : where pc.server_id = sa.server_id > : and sa.action_id = a.id > : and sa.status in (0, 1) -- Queued or picked up > : and not exists ( > : -- This is like saying 'this action has no > : -- prerequisite or has a prerequisite that has completed > : -- (status = 2) > : select 1 > : from rhnServerAction sap > : where sap.server_id = sa.server_id > : and sap.action_id = a.prerequisite > : and sap.status != 2 > : ) > : order by earliest_action > : >calls | 4824 >total_time | 5.03456399999999 >rows | 4824 >-[ RECORD 2 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | UPDATE QRTZ_TRIGGERS SET JOB_NAME = $1, JOB_GROUP = $2, IS_VOLATILE = $3, DESCRIPTION = $4, NEXT_FIRE_TIME = $5, PREV_FIRE_TIME = $6, TRIGGER_STATE = $7, TRIGGER_TYPE = $8, START_TIME = $9, END_TIME = $10, CALENDAR_NAME = $11, MISFIRE_INSTR = $12, PRIORITY = $13 WHERE TRIGGER_NAME = $14 AND TRIGGER_GROUP = $15 >calls | 2297 >total_time | 4.01938299999999 >rows | 2297 >-[ RECORD 3 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | UPDATE QRTZ_TRIGGERS SET TRIGGER_STATE = $1 WHERE TRIGGER_NAME = $2 AND TRIGGER_GROUP = $3 AND TRIGGER_STATE = $4 >calls | 586 >total_time | 1.495687 >rows | 584 >-[ RECORD 4 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | > : update rhnPushClient > : set state_id = 2 > : where state_id = 1 > : and last_ping_time is not null > : and current_timestamp > next_action_time > : >calls | 4825 >total_time | 1.07540200000001 >rows | 0 >-[ RECORD 5 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | select * from rhnPushClient where jabber_id = E'osad-50a52d9a2d@spacewalk.explido-cloud.com/osad' >calls | 4825 >total_time | 0.654403000000011 >rows | 4825 >================================================================== > >==> pg_stat_time_desc.txt <== >================================================================== >SELECT * FROM pg_stat_statements ORDER BY total_time ASC LIMIT 10; >------------------------------------------------------------------ >-[ RECORD 1 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | SELECT server_id as serverId, key_id as keyId from rhnServerCustomDataValue >calls | 63 >total_time | 3.3e-05 >rows | 0 >-[ RECORD 2 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | SELECT id FROM rhnXccdfIdent >calls | 63 >total_time | 3.7e-05 >rows | 0 >-[ RECORD 3 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | SELECT snapshot_id from rhnSnapshotTag >calls | 70 >total_time | 4e-05 >rows | 0 >-[ RECORD 4 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | > : select s.id from rhnServer s > : where s.id = 1000010060 > : >calls | 4 >total_time | 5.1e-05 >rows | 4 >-[ RECORD 5 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | SELECT t.org_id as org1_243_0_, t.task_name as task2_243_0_, t.task_data as task3_243_0_, t.earliest as earliest243_0_, t.priority as priority243_0_ > : FROM rhnTaskQueue t > : WHERE t.task_name like $1 >calls | 8 >total_time | 5.1e-05 >rows | 0 >-[ RECORD 6 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | > : select s.id from rhnServer s > : where s.id = 1000010041 > : >calls | 4 >total_time | 5.3e-05 >rows | 4 >-[ RECORD 7 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | > : select s.id , s.secret from rhnServer s > : where s.id = 1000010041 > : >calls | 4 >total_time | 8.4e-05 >rows | 4 >-[ RECORD 8 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | > : select s.id , s.secret from rhnServer s > : where s.id = 1000010060 > : >calls | 4 >total_time | 9.1e-05 >rows | 4 >-[ RECORD 9 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | select * from rhnServer where id = 1000010060 >calls | 4 >total_time | 0.000124 >rows | 4 >-[ RECORD 10 ]----------------------------------------------------- >userid | 16388 >dbid | 16384 >query | select * from rhnServer where id = 1000010041 >calls | 4 >total_time | 0.000138 >rows | 4 >================================================================== > >==> free.txt <== ># free -m > > total used free shared buffers cached >Mem: 7869 7732 136 0 16 379 >-/+ buffers/cache: 7336 533 >swap: 2047 2047 0 > >==> pstree.txt <== ># pstree -l -A > >init-+-acpid > |-atd > |-auditd---{auditd} > |-c2s > |-cobblerd > |-crond > |-dbus-daemon > |-dhcpd > |-gogo.pl---gogo.pl---notif-escalator > |-gogo.pl---gogo.pl---generate-config > |-gogo.pl---gogo.pl---notif-launcher > |-gogo.pl---gogo.pl---notifier > |-gogo.pl---gogo.pl---ack-processor > |-gogo.pl---gogo.pl---TSDBLocalQueue. > |-gogo.pl---gogo.pl---dequeue > |-gogo.pl---gogo.pl---kernel.pl > |-hald---hald-runner-+-hald-addon-acpi > | `-hald-addon-inpu > |-httpd-+-256*[httpd] > | `-satidmap.pl > |-irqbalance > |-java---43*[{java}] > |-6*[mingetty] > |-monit---{monit} > |-ntpd > |-osa-dispatcher > |-portreserve > |-postmaster---540*[postmaster] > |-rhnsearchd-+-java---68*[{java}] > | `-{rhnsearchd} > |-router > |-rsyslogd---3*[{rsyslogd}] > |-s2s > |-2*[sendmail] > |-sm > |-sshd---sshd-+-bash > | |-bash---man---sh---sh---less > | `-pstree > |-taskomaticd-+-java---75*[{java}] > | `-{taskomaticd} > |-udevd---2*[udevd] > |-vmtoolsd > `-xinetd > >==> ps_pmem.txt <== ># ps --sort -pmem axwu > >USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND >apache 332 0.0 0.0 517588 6432 ? S Nov04 0:00 /usr/sbin/httpd >postgres 335 0.0 0.0 1139568 708 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 443 0.0 0.1 1144732 11280 ? Ss 02:01 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 503 0.0 0.0 11080 4 ? S<s Nov02 0:00 /sbin/udevd -d >apache 583 0.0 0.3 526216 27324 ? S 06:50 0:00 /usr/sbin/httpd >postgres 584 0.0 0.0 1139696 2592 ? Ss 06:50 0:00 postgres: spaceuser spaceschema [local] idle >postgres 601 0.0 0.1 1144944 12580 ? Ss 04:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 612 0.0 0.2 517340 23860 ? S 04:48 0:00 /usr/sbin/httpd >postgres 613 0.0 0.0 1139688 2000 ? Ss 04:48 0:00 postgres: spaceuser spaceschema [local] idle >postgres 670 0.0 0.1 1144748 11004 ? Ss 04:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 724 0.0 0.1 1144760 12340 ? Ss 06:50 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 809 0.0 0.0 1144728 7004 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 852 0.0 0.0 11076 4 ? S< Nov02 0:00 /sbin/udevd -d >apache 897 0.0 0.0 526428 6020 ? S Nov04 0:00 /usr/sbin/httpd >postgres 898 0.0 0.0 1139568 712 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 903 0.0 0.0 517496 6668 ? S 00:00 0:00 /usr/sbin/httpd >apache 904 0.0 0.1 526428 8156 ? S 00:00 0:00 /usr/sbin/httpd >postgres 905 0.0 0.0 1139568 920 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 906 0.0 0.0 1139568 876 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 1019 0.0 0.1 1144908 8200 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1020 0.0 0.0 1144920 7948 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1021 0.0 0.0 1144904 8016 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1022 0.0 0.0 1144728 7140 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1036 0.0 0.1 1144788 8156 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1039 0.0 0.0 1144928 7888 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1042 0.0 0.1 1144752 9684 ? Ss 00:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 1099 0.0 0.0 59288 1392 ? S Nov02 1:45 /usr/sbin/vmtoolsd >apache 1126 0.0 0.2 517400 23624 ? S 04:49 0:00 /usr/sbin/httpd >postgres 1127 0.0 0.0 1139688 1988 ? Ss 04:49 0:00 postgres: spaceuser spaceschema [local] idle >root 1197 0.0 0.0 6156 8 ? Ss Nov02 0:00 /sbin/portreserve >root 1204 0.0 0.0 249152 984 ? Sl Nov02 0:00 /sbin/rsyslogd -i /var/run/syslogd.pid -c 5 >root 1216 0.0 0.0 9144 364 ? Ss Nov02 0:12 irqbalance >postgres 1269 0.0 0.1 1144920 11400 ? Ss 02:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1270 0.0 0.1 1144928 11612 ? Ss 02:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1273 0.0 0.1 1144764 11176 ? Ss 02:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1276 0.0 0.1 1144732 11284 ? Ss 02:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 1379 0.0 0.2 517444 24016 ? S 06:52 0:00 /usr/sbin/httpd >postgres 1382 0.0 0.0 1139696 2076 ? Ss 06:52 0:00 postgres: spaceuser spaceschema [local] idle >apache 1580 0.0 0.2 517444 23616 ? S 02:06 0:00 /usr/sbin/httpd >postgres 1581 0.0 0.0 1139576 1852 ? Ss 02:06 0:00 postgres: spaceuser spaceschema [local] idle >postgres 1852 0.0 0.1 1144760 12360 ? Ss 06:54 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 1873 0.0 0.1 1144752 11176 ? Ss 04:52 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 1897 0.0 0.2 517444 24016 ? S 06:54 0:00 /usr/sbin/httpd >postgres 1898 0.0 0.0 1139696 2096 ? Ss 06:54 0:00 postgres: spaceuser spaceschema [local] idle >apache 1901 0.0 0.3 526428 27184 ? S 04:53 0:00 /usr/sbin/httpd >postgres 1903 0.0 0.0 1139688 1980 ? Ss 04:53 0:00 postgres: spaceuser spaceschema [local] idle >postgres 2117 0.0 0.1 1144732 11312 ? Ss 02:08 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 2120 0.0 0.2 517408 22932 ? S 02:08 0:00 /usr/sbin/httpd >postgres 2121 0.0 0.0 1139576 1884 ? Ss 02:08 0:00 postgres: spaceuser spaceschema [local] idle >postgres 2384 0.0 0.1 1144396 11056 ? Ss 02:09 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 2409 0.0 0.1 1144756 12340 ? Ss 06:56 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 2410 0.0 0.2 517444 23952 ? S 06:56 0:00 /usr/sbin/httpd >postgres 2411 0.0 0.0 1139696 2084 ? Ss 06:56 0:00 postgres: spaceuser spaceschema [local] idle >apache 2416 0.0 0.3 526436 27116 ? S 04:55 0:00 /usr/sbin/httpd >postgres 2417 0.0 0.0 1139688 1912 ? Ss 04:55 0:00 postgres: spaceuser spaceschema [local] idle >apache 2525 0.0 0.0 517588 6424 ? S 00:06 0:00 /usr/sbin/httpd >postgres 2526 0.0 0.0 1139572 708 ? Ss 00:06 0:00 postgres: spaceuser spaceschema [local] idle >postgres 2555 0.0 0.1 1144944 12956 ? Ss 04:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 2644 0.0 0.3 526428 26948 ? S 02:10 0:00 /usr/sbin/httpd >postgres 2645 0.0 0.0 1139676 1900 ? Ss 02:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 2753 0.0 0.1 1144940 12592 ? Ss 04:56 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 2825 0.0 0.0 1144928 7900 ? Ss 00:07 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 2832 0.0 0.1 1143180 14428 ? Ss 06:58 0:00 postgres: spaceuser spaceschema 127.0.0.1(40004) idle >apache 2890 0.0 0.3 526204 26620 ? S 03:09 0:00 /usr/sbin/httpd >postgres 2892 0.0 0.0 1139680 1796 ? Ss 03:09 0:00 postgres: spaceuser spaceschema [local] idle >apache 2957 0.0 0.3 526436 26888 ? S 04:57 0:00 /usr/sbin/httpd >postgres 2958 0.0 0.0 1139688 1948 ? Ss 04:57 0:00 postgres: spaceuser spaceschema [local] idle >postgres 2960 0.0 0.1 1144936 12392 ? Ss 03:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 2968 0.0 0.1 1144760 11464 ? Ss 06:59 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 2973 0.0 0.3 526080 27284 ? S 06:59 0:00 /usr/sbin/httpd >postgres 2974 0.0 0.0 1139696 2084 ? Ss 06:59 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3015 0.0 0.1 1144772 11424 ? Ss 03:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 3080 0.0 0.3 526096 27168 ? S 03:10 0:00 /usr/sbin/httpd >apache 3081 0.0 0.3 526448 27488 ? S 03:10 0:00 /usr/sbin/httpd >postgres 3084 0.0 0.1 1144740 10612 ? Ss 03:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 3085 0.0 0.0 1139680 1932 ? Ss 03:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3086 0.0 0.0 1139680 1972 ? Ss 03:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3123 0.0 0.1 1144736 11052 ? Ss 03:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 3237 0.0 0.0 517608 6444 ? S 00:09 0:00 /usr/sbin/httpd >postgres 3238 0.0 0.0 1139572 708 ? Ss 00:09 0:00 postgres: spaceuser spaceschema [local] idle >apache 3248 0.0 0.3 526156 27304 ? S 06:59 0:00 /usr/sbin/httpd >postgres 3249 0.0 0.0 1139696 2108 ? Ss 06:59 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3336 0.0 0.1 1144760 12128 ? Ss 02:12 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 3374 0.0 0.3 526424 26952 ? S 02:12 0:00 /usr/sbin/httpd >postgres 3376 0.0 0.0 1139676 1904 ? Ss 02:12 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3445 0.0 0.0 1144928 7992 ? Ss 00:09 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 3510 0.0 0.3 526168 26700 ? S 04:59 0:00 /usr/sbin/httpd >postgres 3511 0.0 0.0 1139688 1956 ? Ss 04:59 0:00 postgres: spaceuser spaceschema [local] idle >apache 3530 0.0 0.1 517712 12800 ? S 00:10 0:00 /usr/sbin/httpd >postgres 3531 0.0 0.0 1139572 708 ? Ss 00:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3575 0.0 0.1 1144404 12060 ? Ss 04:59 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 3576 0.0 0.1 1144752 12196 ? Ss 04:59 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 3705 0.0 0.0 1144732 7028 ? Ss 00:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 3757 0.0 0.2 517444 23356 ? S 05:00 0:00 /usr/sbin/httpd >postgres 3758 0.0 0.0 1139688 1920 ? Ss 05:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 3880 0.0 0.1 1144936 11932 ? Ss 02:14 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 3923 0.0 0.3 526428 26232 ? S 02:14 0:00 /usr/sbin/httpd >postgres 3924 0.0 0.0 1139676 1896 ? Ss 02:14 0:00 postgres: spaceuser spaceschema [local] idle >dbus 4084 0.0 0.0 21400 128 ? Ss Nov02 0:00 dbus-daemon --system >root 4108 0.0 0.0 4076 4 ? Ss Nov02 0:00 /usr/sbin/acpid >68 4117 0.0 0.0 25336 748 ? Ss Nov02 0:00 hald >root 4118 0.0 0.0 18104 8 ? S Nov02 0:00 hald-runner >postgres 4125 0.0 0.1 1144748 10908 ? Ss 05:01 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 4134 0.0 0.1 1144756 12372 ? Ss 07:03 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 4136 0.0 0.1 1144732 11908 ? Ss 02:15 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 4146 0.0 0.0 20220 8 ? S Nov02 0:00 hald-addon-input: Listening on /dev/input/event2 /dev/input/event0 >68 4157 0.0 0.0 17804 8 ? S Nov02 0:00 hald-addon-acpi: listening on acpid socket /var/run/acpid.socket >root 4174 0.0 0.0 64072 308 ? Ss Nov02 0:00 /usr/sbin/sshd >root 4182 0.0 0.0 22088 8 ? Ss Nov02 0:00 xinetd -stayalive -pidfile /var/run/xinetd.pid >ntp 4204 0.0 0.0 30160 556 ? Ss Nov02 0:00 ntpd -u ntp:ntp -p /var/run/ntpd.pid -g >postgres 4235 0.0 0.2 1137744 16212 ? S Nov02 0:13 /usr/bin/postmaster -p 5432 -D /var/lib/pgsql/data >postgres 4237 0.0 0.0 178764 444 ? Ss Nov02 0:04 postgres: logger process >postgres 4239 0.0 2.7 1138316 220260 ? Ss Nov02 1:46 postgres: writer process >postgres 4240 0.0 0.0 1138196 2240 ? Ss Nov02 0:22 postgres: wal writer process >postgres 4241 0.0 0.0 1138932 1096 ? Ss Nov02 0:10 postgres: autovacuum launcher process >postgres 4242 0.0 0.0 179448 908 ? Ss Nov02 0:20 postgres: stats collector process >dhcpd 4255 0.0 0.0 46836 732 ? Ss Nov02 0:00 /usr/sbin/dhcpd -user dhcpd -group dhcpd >root 4271 0.0 0.0 84452 480 ? Ss Nov02 0:03 sendmail: accepting connections >smmsp 4279 0.0 0.0 76048 384 ? Ss Nov02 0:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue >apache 4308 0.0 0.2 517444 23932 ? S 07:04 0:00 /usr/sbin/httpd >postgres 4309 0.0 0.0 1139696 2096 ? Ss 07:04 0:00 postgres: spaceuser spaceschema [local] idle >apache 4310 0.0 0.0 526140 6024 ? S 00:12 0:00 /usr/sbin/httpd >postgres 4311 0.0 0.0 1139572 1624 ? Ss 00:12 0:00 postgres: spaceuser spaceschema [local] idle >root 4318 0.0 0.0 97980 4004 ? Ss 13:25 0:00 sshd: root@pts/0,pts/1 >root 4320 0.0 0.0 108336 1832 pts/0 Ss 13:25 0:00 -bash >apache 4321 0.0 0.1 526080 14272 ? S 00:13 0:00 /usr/sbin/httpd >postgres 4322 0.0 0.0 1139572 1640 ? Ss 00:13 0:00 postgres: spaceuser spaceschema [local] idle >postgres 4323 0.0 0.0 1144916 8044 ? Ss 00:13 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >tomcat 4347 0.0 2.1 2859256 169364 ? Sl Nov02 3:16 /usr/lib/jvm/java/bin/java -Djavax.sql.DataSource.Factory=org.apache.commons.dbcp.BasicDataSourceFactory -ea -Xms256m -Xmx256m -Djava.awt.headless=true -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser -XX:MaxNewSize=256 -XX:-UseConcMarkSweepGC -ea -Xms256m -Xmx256m -Djava.awt.headless=true -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser -Dorg.apache.tomcat.util.http.Parameters.MAX_COUNT=1024 -XX:MaxNewSize=256 -XX:-UseConcMarkSweepGC -classpath :/usr/share/tomcat6/bin/bootstrap.jar:/usr/share/tomcat6/bin/tomcat-juli.jar:/usr/share/java/commons-daemon.jar -Dcatalina.base=/usr/share/tomcat6 -Dcatalina.home=/usr/share/tomcat6 -Djava.endorsed.dirs= -Djava.io.tmpdir=/var/cache/tomcat6/temp -Djava.util.logging.config.file=/usr/share/tomcat6/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager org.apache.catalina.startup.Bootstrap start >root 4370 0.0 0.0 422916 6936 ? Ss Nov02 0:09 /usr/sbin/httpd >root 4374 0.0 0.0 161436 1920 pts/0 S 13:25 0:00 su - postgres >postgres 4376 0.0 0.0 108336 1804 pts/0 S+ 13:25 0:00 -bash >root 4381 0.0 0.0 52440 568 ? S Nov02 0:13 /usr/bin/router -c /etc/jabberd//router.xml >root 4388 0.0 0.0 106140 1196 ? S Nov02 0:11 /usr/bin/sm -c /etc/jabberd//sm.xml >root 4395 0.0 0.4 92948 33616 ? S Nov02 0:17 /usr/bin/c2s -c /etc/jabberd//c2s.xml >root 4402 0.0 0.0 50508 336 ? S Nov02 0:01 /usr/bin/s2s -c /etc/jabberd//s2s.xml >root 4445 0.0 0.0 108472 1908 pts/1 Ss+ 13:25 0:00 -bash >apache 4483 0.0 0.3 526140 26612 ? S 02:16 0:00 /usr/sbin/httpd >postgres 4484 0.0 0.0 1139680 1900 ? Ss 02:16 0:00 postgres: spaceuser spaceschema [local] idle >apache 4530 0.0 0.2 517400 23900 ? S 02:17 0:00 /usr/sbin/httpd >postgres 4531 0.0 0.0 1139680 1844 ? Ss 02:17 0:00 postgres: spaceuser spaceschema [local] idle >postgres 4532 0.0 0.1 1144932 11888 ? Ss 02:17 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 4581 0.0 0.1 1144768 11100 ? Ss 02:17 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 4618 0.0 0.1 1143196 15400 ? Ss Nov02 1:14 postgres: spaceuser spaceschema [local] idle >root 4619 0.4 0.2 244300 18576 ? R Nov02 17:57 /usr/bin/python /usr/sbin/osa-dispatcher --pid-file /var/run/osa-dispatcher.pid >root 4627 0.0 0.0 117212 348 ? Ss Nov02 0:00 crond >root 4652 0.0 0.0 19128 172 ? Sl Nov02 1:45 /usr/bin/rhnsearchd /usr/share/rhn/config-defaults/rhn_search_daemon.conf wrapper.pidfile=/var/run/rhn-search.pid wrapper.daemonize=TRUE >root 4654 4.9 9.7 4502128 786460 ? Sl Nov02 192:26 /usr/bin/java -Djava.library.path=/usr/lib:/usr/lib64:/usr/lib/oracle/11.2/client/lib:/usr/lib/oracle/11.2/client64/lib:/usr/lib/gcj/postgresql-jdbc:/usr/lib64/gcj/postgresql-jdbc -classpath /usr/share/rhn/search/classes/:/usr/share/rhn/search/lib/commons-lang.jar:/usr/share/rhn/search/lib/commons-logging.jar:/usr/share/rhn/search/lib/ibatis-2.3.0.677.jar:/usr/share/rhn/search/lib/log4j.jar:/usr/share/rhn/search/lib/lucene-core-2.3.2.jar:/usr/share/java/ojdbc14.jar:/usr/share/rhn/search/lib/picocontainer-1.3.jar:/usr/share/rhn/search/lib/quartz.jar:/usr/share/rhn/search/lib/redstone-xmlrpc.jar:/usr/share/rhn/search/lib/redstone-xmlrpc-client.jar:/usr/share/rhn/search/lib/simple-core.jar:/usr/share/rhn/search/lib/spacewalk-search.jar:/usr/share/java/tanukiwrapper.jar:/usr/share/rhn/search/lib/lucene-analyzers-2.3.2.jar:/usr/share/rhn/search/lib/hadoop-0.18.1-core.jar:/usr/share/nutch:/usr/share/nutch/conf:/usr/share/rhn/search/lib/nutch-2008-12-01_04-01-21.jar:/usr/share/rhn/search/lib/commons-httpclient-3.0.jar:/usr/share/java/slf4j-api.jar:/usr/share/java/slf4j-jcl.jar:/usr/share/java/postgresql-jdbc.jar -Dwrapper.key=nCuq2UIQWXJ3NK0u -Dwrapper.port=32000 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=4652 -Dwrapper.version=3.2.3 -Dwrapper.native_library=wrapper -Dwrapper.service=TRUE -Dwrapper.cpu.timeout=10 -Dwrapper.jvmid=1 com.redhat.satellite.search.Main >root 4683 0.0 0.0 21452 52 ? Ss Nov02 0:00 /usr/sbin/atd >root 4698 0.0 0.0 124676 984 ? Sl Nov02 0:36 /usr/bin/monit >root 4786 0.0 0.2 629992 16684 ? S Nov02 0:57 /usr/bin/python /usr/bin/cobblerd --daemonize >postgres 4812 0.0 0.1 1144760 12368 ? Ss 07:05 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 4846 0.0 0.0 4060 8 tty1 Ss+ Nov02 0:00 /sbin/mingetty /dev/tty1 >root 4848 0.0 0.0 4060 8 tty2 Ss+ Nov02 0:00 /sbin/mingetty /dev/tty2 >root 4850 0.0 0.0 4060 8 tty3 Ss+ Nov02 0:00 /sbin/mingetty /dev/tty3 >root 4852 0.0 0.0 4060 8 tty4 Ss+ Nov02 0:00 /sbin/mingetty /dev/tty4 >root 4854 0.0 0.0 11076 4 ? S< Nov02 0:00 /sbin/udevd -d >root 4855 0.0 0.0 4060 8 tty5 Ss+ Nov02 0:00 /sbin/mingetty /dev/tty5 >root 4857 0.0 0.0 4060 8 tty6 Ss+ Nov02 0:00 /sbin/mingetty /dev/tty6 >apache 4933 0.0 0.3 526428 27196 ? S 05:03 0:00 /usr/sbin/httpd >postgres 4938 0.0 0.0 1139688 1948 ? Ss 05:03 0:00 postgres: spaceuser spaceschema [local] idle >apache 4945 0.0 0.2 517520 24000 ? S 07:06 0:00 /usr/sbin/httpd >postgres 4946 0.0 0.0 1139696 2092 ? Ss 07:06 0:00 postgres: spaceuser spaceschema [local] idle >root 4947 0.0 0.0 27636 344 ? S<sl Nov02 0:01 auditd >root 4988 0.0 0.0 55260 6592 ? S Nov04 0:00 /usr/bin/perl /usr/share/rhn/satidmap.pl >root 5037 0.0 0.0 74588 772 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=NotifEscalator --user=nocpulse --hbfile=/var/log/nocpulse/notif-escalator.log --hbfreq=300 --hbcheck=600 -- /usr/bin/notif-escalator >nocpulse 5038 0.0 0.0 74588 184 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=NotifEscalator --user=nocpulse --hbfile=/var/log/nocpulse/notif-escalator.log --hbfreq=300 --hbcheck=600 -- /usr/bin/notif-escalator >nocpulse 5039 0.1 0.1 71164 15268 ? SN Nov04 2:44 /usr/bin/perl /usr/bin/notif-escalator >root 5050 0.0 0.0 74588 768 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=GenerateNotifConfig --user=nocpulse --hbfile=/var/log/nocpulse/generate_config.log --hbfreq=300 --hbcheck=600 -- /usr/bin/generate-config >nocpulse 5051 0.0 0.0 74588 184 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=GenerateNotifConfig --user=nocpulse --hbfile=/var/log/nocpulse/generate_config.log --hbfreq=300 --hbcheck=600 -- /usr/bin/generate-config >nocpulse 5052 0.0 0.0 124080 2936 ? SN Nov04 0:02 /usr/bin/perl /usr/bin/generate-config >postgres 5055 0.0 0.1 1143024 14572 ? Ss Nov04 0:03 postgres: spaceuser spaceschema [local] idle >root 5065 0.0 0.0 74588 772 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=NotifLauncher --user=nocpulse --hbfile=/var/log/nocpulse/notif-launcher.log --hbfreq=300 --hbcheck=600 -- /usr/bin/notif-launcher >nocpulse 5066 0.0 0.0 74588 184 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=NotifLauncher --user=nocpulse --hbfile=/var/log/nocpulse/notif-launcher.log --hbfreq=300 --hbcheck=600 -- /usr/bin/notif-launcher >nocpulse 5067 0.1 0.0 71724 7664 ? SN Nov04 2:46 /usr/bin/perl /usr/bin/notif-launcher >root 5080 0.0 0.0 74588 772 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=Notifier --user=nocpulse --hbfile=/var/log/nocpulse/notifier.log --hbfreq=300 --hbcheck=600 -- /usr/bin/notifier >nocpulse 5081 0.0 0.0 74588 184 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=Notifier --user=nocpulse --hbfile=/var/log/nocpulse/notifier.log --hbfreq=300 --hbcheck=600 -- /usr/bin/notifier >nocpulse 5082 0.0 0.1 126572 15800 ? SN Nov04 0:47 /usr/bin/perl /usr/bin/notifier >postgres 5085 0.0 0.0 1139584 1652 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >root 5097 0.0 0.0 74588 772 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=AckProcessor --user=nocpulse --hbfile=/var/log/nocpulse/ack_handler.log --hbfreq=300 --hbcheck=600 -- /usr/bin/ack-processor >nocpulse 5098 0.0 0.0 74588 180 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=AckProcessor --user=nocpulse --hbfile=/var/log/nocpulse/ack_handler.log --hbfreq=300 --hbcheck=600 -- /usr/bin/ack-processor >nocpulse 5099 0.0 0.0 69664 2028 ? SN Nov04 1:45 /usr/bin/perl /usr/bin/ack-processor >postgres 5103 0.0 0.0 1144836 7792 ? Ss 00:15 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 5115 0.0 0.0 74588 4 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=TSDBLocalQueue --user=apache -- /usr/bin/TSDBLocalQueue.pl >apache 5116 0.0 0.0 74588 4 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=TSDBLocalQueue --user=apache -- /usr/bin/TSDBLocalQueue.pl >apache 5117 0.5 0.0 60044 6620 ? SN Nov04 11:07 /usr/bin/perl /usr/bin/TSDBLocalQueue.pl >root 5193 0.0 0.0 74588 788 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=Dequeuer --user=nocpulse --hbfile=/var/log/nocpulse/dequeue.log --hbfreq=60 -- /usr/bin/dequeue >nocpulse 5194 0.0 0.0 74588 204 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=Dequeuer --user=nocpulse --hbfile=/var/log/nocpulse/dequeue.log --hbfreq=60 -- /usr/bin/dequeue >nocpulse 5195 0.0 0.1 101576 8296 ? SN Nov04 1:03 /usr/bin/perl /usr/bin/dequeue >root 5213 0.0 0.0 74588 812 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=Dispatcher --user=nocpulse --hbfile=/var/log/nocpulse/kernel.log --hbfreq=300 --hbcheck=600 -- /usr/bin/kernel.pl --loglevel 1 >nocpulse 5214 0.0 0.0 74588 744 ? SN Nov04 0:00 /usr/bin/perl /usr/bin/gogo.pl --fname=Dispatcher --user=nocpulse --hbfile=/var/log/nocpulse/kernel.log --hbfreq=300 --hbcheck=600 -- /usr/bin/kernel.pl --loglevel 1 >nocpulse 5215 0.0 0.0 129412 3476 ? SN Nov04 0:40 /usr/bin/perl /usr/bin/kernel.pl --loglevel 1 >postgres 5388 0.0 0.1 1144756 11436 ? Ss 07:07 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 5414 0.0 0.3 526520 26376 ? S 02:19 0:00 /usr/sbin/httpd >postgres 5415 0.0 0.0 1139680 1896 ? Ss 02:19 0:00 postgres: spaceuser spaceschema [local] idle >apache 5477 0.0 0.2 517372 23296 ? S 05:05 0:00 /usr/sbin/httpd >postgres 5478 0.0 0.0 1139688 1968 ? Ss 05:05 0:00 postgres: spaceuser spaceschema [local] idle >apache 5479 0.0 0.2 526408 20344 ? S 00:16 0:00 /usr/sbin/httpd >postgres 5480 0.0 0.0 1139572 716 ? Ss 00:16 0:00 postgres: spaceuser spaceschema [local] idle >apache 5494 0.0 0.3 526264 27504 ? S 07:08 0:00 /usr/sbin/httpd >postgres 5495 0.0 0.0 1139696 2096 ? Ss 07:08 0:00 postgres: spaceuser spaceschema [local] idle >postgres 5943 0.0 0.1 1144748 11064 ? Ss 05:07 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 6012 0.0 0.3 526524 27000 ? S 05:07 0:00 /usr/sbin/httpd >postgres 6013 0.0 0.0 1139688 2496 ? Ss 05:08 0:00 postgres: spaceuser spaceschema [local] idle >apache 6045 0.0 0.2 526400 20348 ? S 00:19 0:00 /usr/sbin/httpd >postgres 6046 0.0 0.0 1139572 724 ? Ss 00:19 0:00 postgres: spaceuser spaceschema [local] idle >apache 6065 0.0 0.3 526416 27644 ? S 07:10 0:00 /usr/sbin/httpd >postgres 6066 0.0 0.0 1139696 2088 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6067 0.0 0.1 1144752 12740 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 6070 0.0 0.1 1144788 13136 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 6075 0.0 0.3 526392 31320 ? S 07:10 0:00 /usr/sbin/httpd >apache 6076 0.0 0.3 526428 31428 ? S 07:10 0:00 /usr/sbin/httpd >postgres 6077 0.0 0.0 1139696 2084 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6078 0.0 0.0 1139696 2056 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6079 0.0 0.1 1144756 12400 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 6091 0.0 0.1 1144948 15596 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 6092 0.0 0.1 1144204 15020 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >root 6135 0.0 0.0 19128 512 ? Sl Nov02 1:47 /usr/bin/taskomaticd /usr/share/rhn/config-defaults/rhn_taskomatic_daemon.conf wrapper.pidfile=/var/run//taskomatic.pid wrapper.daemonize=TRUE >apache 6326 0.0 0.2 517348 24036 ? S 02:23 0:00 /usr/sbin/httpd >postgres 6327 0.0 0.0 1139680 1888 ? Ss 02:23 0:00 postgres: spaceuser spaceschema [local] idle >apache 6364 0.0 0.2 527120 18632 ? S Nov04 0:01 /usr/sbin/httpd >postgres 6365 0.0 0.0 1139584 1544 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6367 0.0 0.1 1144948 13132 ? Ss 07:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 6377 0.0 0.2 517392 16752 ? S 00:19 0:00 /usr/sbin/httpd >postgres 6378 0.0 0.0 1139572 728 ? Ss 00:19 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6558 0.0 0.1 1144924 8084 ? Ss 00:20 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 6560 0.0 0.1 1144920 8144 ? Ss 00:20 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 6563 0.0 0.1 1144720 9276 ? Ss 00:20 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 6644 0.0 0.2 517412 23956 ? S 05:10 0:00 /usr/sbin/httpd >postgres 6645 0.0 0.0 1139688 1992 ? Ss 05:10 0:00 postgres: spaceuser spaceschema [local] idle >apache 6653 0.0 0.2 517444 23884 ? S 05:10 0:00 /usr/sbin/httpd >apache 6654 0.0 0.3 526184 27168 ? S 05:10 0:00 /usr/sbin/httpd >postgres 6655 0.0 0.0 1139688 2004 ? Ss 05:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6656 0.0 0.0 1139688 2000 ? Ss 05:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6665 0.0 0.1 1147480 9128 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 6670 0.0 0.2 527260 18844 ? S Nov04 0:01 /usr/sbin/httpd >postgres 6671 0.0 0.0 1139584 1660 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 6708 0.0 0.1 1144848 9224 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 7052 0.0 0.3 526080 26204 ? S 02:26 0:00 /usr/sbin/httpd >postgres 7055 0.0 0.0 1139680 2388 ? Ss 02:26 0:00 postgres: spaceuser spaceschema [local] idle >postgres 7182 0.0 0.1 1144748 12016 ? Ss 05:12 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 7416 0.0 0.2 526216 19148 ? S 00:24 0:00 /usr/sbin/httpd >postgres 7417 0.0 0.0 1139572 788 ? Ss 00:24 0:00 postgres: spaceuser spaceschema [local] idle >postgres 7433 0.0 0.1 1144740 11520 ? Ss 02:27 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 7566 0.0 0.3 526428 26764 ? S 02:28 0:00 /usr/sbin/httpd >postgres 7567 0.0 0.0 1139680 1892 ? Ss 02:28 0:00 postgres: spaceuser spaceschema [local] idle >postgres 7721 0.0 0.1 1144936 11684 ? Ss 02:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 7724 0.0 0.1 1144732 11856 ? Ss 02:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 7746 0.0 0.1 1144752 11020 ? Ss 05:14 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 7776 0.0 0.2 517444 24016 ? S 07:16 0:00 /usr/sbin/httpd >postgres 7777 0.0 0.0 1139696 2100 ? Ss 07:16 0:00 postgres: spaceuser spaceschema [local] idle >apache 7926 0.0 0.2 526416 20420 ? S 00:26 0:00 /usr/sbin/httpd >postgres 7927 0.0 0.0 1139572 1652 ? Ss 00:26 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8072 0.0 0.1 1143992 10400 ? Ss 03:13 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 8075 0.0 0.1 1144936 12288 ? Ss 03:13 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 8078 0.0 0.1 1144744 10908 ? Ss 03:13 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 8122 0.0 0.3 526140 27376 ? S 02:29 0:00 /usr/sbin/httpd >postgres 8123 0.0 0.0 1139680 1808 ? Ss 02:29 0:00 postgres: spaceuser spaceschema [local] idle >apache 8128 0.0 0.3 526320 27324 ? S 02:30 0:00 /usr/sbin/httpd >apache 8129 0.0 0.3 526320 27472 ? S 02:30 0:00 /usr/sbin/httpd >postgres 8130 0.0 0.0 1139680 1912 ? Ss 02:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8131 0.0 0.0 1139680 1924 ? Ss 02:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8318 0.0 0.1 1144756 11424 ? Ss 07:18 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 8437 0.0 0.2 517444 16724 ? S 00:28 0:00 /usr/sbin/httpd >postgres 8438 0.0 0.0 1139572 1652 ? Ss 00:28 0:00 postgres: spaceuser spaceschema [local] idle >apache 8473 0.0 0.2 517444 23128 ? S 05:17 0:00 /usr/sbin/httpd >postgres 8474 0.0 0.0 1139688 1972 ? Ss 05:17 0:00 postgres: spaceuser spaceschema [local] idle >apache 8504 0.0 0.3 526184 27372 ? S 07:19 0:00 /usr/sbin/httpd >postgres 8505 0.0 0.0 1139696 2112 ? Ss 07:19 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8753 0.0 0.1 1144740 11608 ? Ss 03:16 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 8798 0.0 0.3 526428 31356 ? S 07:20 0:00 /usr/sbin/httpd >postgres 8799 0.0 0.0 1139696 2108 ? Ss 07:20 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8845 0.0 0.1 1144748 10996 ? Ss 05:18 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 8880 0.0 0.3 526380 26828 ? S 03:17 0:00 /usr/sbin/httpd >postgres 8881 0.0 0.0 1139680 1844 ? Ss 03:17 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8891 0.0 0.1 1144732 9148 ? Ss 00:29 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 8982 0.0 0.2 526416 20316 ? S 00:29 0:00 /usr/sbin/httpd >postgres 8987 0.0 0.0 1139572 724 ? Ss 00:29 0:00 postgres: spaceuser spaceschema [local] idle >apache 8992 0.0 0.2 526528 20384 ? S 00:30 0:00 /usr/sbin/httpd >apache 8993 0.0 0.2 526464 20412 ? S 00:30 0:00 /usr/sbin/httpd >postgres 8994 0.0 0.0 1139572 760 ? Ss 00:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 8995 0.0 0.0 1139572 728 ? Ss 00:30 0:00 postgres: spaceuser spaceschema [local] idle >apache 8997 0.0 0.3 526388 27008 ? S 05:18 0:00 /usr/sbin/httpd >postgres 8998 0.0 0.0 1139688 1952 ? Ss 05:18 0:00 postgres: spaceuser spaceschema [local] idle >postgres 9150 0.0 0.0 1143980 7408 ? Ss 00:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 9152 0.0 0.1 1144944 12708 ? Ss 05:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 9153 0.0 0.1 1144912 8308 ? Ss 00:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 9154 0.0 0.1 1144780 11900 ? Ss 05:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 9155 0.0 0.1 1144752 11200 ? Ss 05:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 9227 0.0 0.1 1144400 11720 ? Ss 03:18 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 9299 0.0 0.3 526300 27264 ? S 05:19 0:00 /usr/sbin/httpd >postgres 9300 0.0 0.0 1139688 2008 ? Ss 05:19 0:00 postgres: spaceuser spaceschema [local] idle >apache 9398 0.0 0.3 526140 26080 ? S 03:19 0:00 /usr/sbin/httpd >postgres 9399 0.0 0.0 1139680 1936 ? Ss 03:19 0:00 postgres: spaceuser spaceschema [local] idle >postgres 9468 0.0 0.1 1144756 11444 ? Ss 07:22 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 9586 0.0 0.2 517424 24096 ? S 07:23 0:00 /usr/sbin/httpd >postgres 9587 0.0 0.0 1139696 2096 ? Ss 07:23 0:00 postgres: spaceuser spaceschema [local] idle >apache 9678 0.0 0.2 517444 24004 ? S 02:36 0:00 /usr/sbin/httpd >postgres 9679 0.0 0.0 1139680 1916 ? Ss 02:36 0:00 postgres: spaceuser spaceschema [local] idle >apache 9698 0.0 0.3 526148 26536 ? S 03:20 0:00 /usr/sbin/httpd >postgres 9699 0.0 0.0 1139684 1920 ? Ss 03:20 0:00 postgres: spaceuser spaceschema [local] idle >postgres 9775 0.0 0.1 1144944 12768 ? Ss 05:21 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 9780 0.0 0.1 1144752 11132 ? Ss 05:21 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 10049 0.0 0.1 1144732 9276 ? Ss 00:34 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 10073 0.0 0.2 517444 24004 ? S 05:22 0:00 /usr/sbin/httpd >postgres 10074 0.0 0.0 1139688 2028 ? Ss 05:22 0:00 postgres: spaceuser spaceschema [local] idle >apache 10109 0.0 0.2 517444 23944 ? S 07:25 0:00 /usr/sbin/httpd >postgres 10110 0.0 0.0 1139696 2108 ? Ss 07:25 0:00 postgres: spaceuser spaceschema [local] idle >postgres 10227 0.0 0.1 1144740 10632 ? Ss 02:38 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 10230 0.0 0.3 526344 27468 ? S 02:38 0:00 /usr/sbin/httpd >postgres 10231 0.0 0.0 1139680 1912 ? Ss 02:38 0:00 postgres: spaceuser spaceschema [local] idle >postgres 10278 0.0 0.1 1144924 9268 ? Ss 00:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 10279 0.0 0.0 1144748 7732 ? Ss 00:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 10471 0.0 0.2 517476 23060 ? S 03:22 0:00 /usr/sbin/httpd >postgres 10472 0.0 0.0 1139684 1872 ? Ss 03:22 0:00 postgres: spaceuser spaceschema [local] idle >postgres 10540 0.0 0.1 1144752 12104 ? Ss 05:24 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 10582 0.0 0.1 1144756 11460 ? Ss 07:26 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 10592 0.0 0.3 526340 27080 ? S 05:25 0:00 /usr/sbin/httpd >postgres 10593 0.0 0.0 1139688 2024 ? Ss 05:25 0:00 postgres: spaceuser spaceschema [local] idle >apache 10626 0.0 0.3 517604 26924 ? S 07:26 0:01 /usr/sbin/httpd >postgres 10627 0.0 0.0 1139696 2116 ? Ss 07:26 0:00 postgres: spaceuser spaceschema [local] idle >apache 10731 0.0 0.3 526208 27404 ? S 02:40 0:00 /usr/sbin/httpd >postgres 10732 0.0 0.0 1139680 1932 ? Ss 02:40 0:00 postgres: spaceuser spaceschema [local] idle >apache 10781 0.0 0.2 526216 18356 ? S 00:36 0:00 /usr/sbin/httpd >postgres 10782 0.0 0.0 1139572 716 ? Ss 00:36 0:00 postgres: spaceuser spaceschema [local] idle >postgres 10817 0.0 0.1 1144744 11588 ? Ss 02:40 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11015 0.0 0.1 1144748 10648 ? Ss 03:25 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11020 0.0 0.2 517476 23376 ? S 03:25 0:00 /usr/sbin/httpd >postgres 11021 0.0 0.0 1139684 1936 ? Ss 03:25 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11073 0.0 0.1 1144948 15592 ? Ss 07:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11083 0.0 0.1 1144788 12388 ? Ss 07:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11092 0.0 0.2 1144788 16580 ? Ss 07:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11109 0.0 0.2 517444 23992 ? S 05:27 0:00 /usr/sbin/httpd >postgres 11110 0.0 0.0 1139692 2024 ? Ss 05:27 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11127 0.0 0.1 1144760 11208 ? Ss 02:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11129 0.0 0.1 1144936 11852 ? Ss 02:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11132 0.0 0.1 1144772 11304 ? Ss 02:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11133 0.0 0.1 1144732 11820 ? Ss 02:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11146 0.0 0.4 526456 33892 ? S 07:29 0:00 /usr/sbin/httpd >postgres 11147 0.0 0.0 1139696 2112 ? Ss 07:29 0:00 postgres: spaceuser spaceschema [local] idle >apache 11292 0.0 0.2 526448 20296 ? S 00:39 0:00 /usr/sbin/httpd >postgres 11293 0.0 0.0 1139572 736 ? Ss 00:39 0:00 postgres: spaceuser spaceschema [local] idle >apache 11398 0.0 0.4 526424 33796 ? S 07:29 0:01 /usr/sbin/httpd >postgres 11414 0.0 0.0 1139700 3900 ? Ss 07:30 0:00 postgres: spaceuser spaceschema [local] idle >root 11433 1.3 4.6 3550988 371692 ? Sl 07:30 5:23 /usr/bin/java -Dibm.dst.compatibility=true -Xms256m -Xmx1024m -Djava.library.path=/usr/lib:/usr/lib64:/usr/lib/oracle/11.2/client64/lib:/usr/lib/oracle/11.2/client/lib -classpath /usr/share/java/tanukiwrapper.jar:/usr/share/rhn/classes:/usr/share/java/struts.jar:/usr/share/java/jfreechart.jar:/usr/share/java/jpam.jar:/usr/share/java/javamail.jar:/usr/share/java/axis/axis-ant.jar:/usr/share/java/quartz.jar:/usr/share/java/commons-codec.jar:/usr/share/java/commons-beanutils.jar:/usr/share/java/ojdbc14.jar:/usr/share/java/jta.jar:/usr/share/java/concurrent.jar:/usr/share/rhn/lib/spacewalk-asm.jar:/usr/share/java/axis/jaxrpc.jar:/usr/share/java/commons-collections.jar:/usr/share/java/taglibs-standard.jar:/usr/share/java/axis/axis.jar:/usr/share/java/xalan-j2.jar:/usr/share/java/commons-validator.jar:/usr/share/java/asm/asm-attrs.jar:/usr/share/java/jaf.jar:/usr/share/java/jdom.jar:/usr/share/java/oro.jar:/usr/share/rhn/lib/rhn.jar:/usr/share/java/redstone-xmlrpc.jar:/usr/share/java/oscache.jar:/usr/share/java/log4j.jar:/usr/share/java/wsdl4j.jar:/usr/share/java/jcommon.jar:/usr/share/java/commons-el.jar:/usr/share/java/taglibs-core.jar:/usr/share/java/commons-lang.jar:/usr/share/java/commons-digester.jar:/usr/share/java/jasper5-runtime.jar:/usr/share/java/jspapi.jar:/usr/share/java/c3p0.jar:/usr/share/java/sitemesh.jar:/usr/share/java/jasper5-compiler.jar:/usr/share/java/axis/saaj.jar:/usr/share/java/commons-logging.jar:/usr/share/java/commons-discovery.jar:/usr/share/java/xml-commons-apis.jar:/usr/share/java/axis/jaxrpc.jar:/usr/share/java/commons-cli.jar:/usr/share/java/bcel.jar:/usr/share/java/antlr.jar:/usr/share/java/xerces-j2.jar:/usr/share/java/hibernate3.jar:/usr/share/java/cglib.jar:/usr/share/java/dom4j.jar:/usr/share/rhn/lib/java-branding.jar:/usr/share/java/slf4j-api.jar:/usr/share/java/slf4j-jcl.jar:/usr/share/java/simple-core.jar:/usr/share/java/commons-dbcp.jar:/usr/share/java/commons-pool.jar:/usr/share/java/quartz-oracle.jar:/usr/share/java/postgresql-jdbc.jar:/usr/share/java/mchange-commons.jar -Dwrapper.key=5zllx5JkA_S_n8mu -Dwrapper.port=32001 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=6135 -Dwrapper.version=3.2.3 -Dwrapper.native_library=wrapper -Dwrapper.service=TRUE -Dwrapper.cpu.timeout=10 -Dwrapper.jvmid=2 com.redhat.rhn.taskomatic.core.TaskomaticDaemon >postgres 11473 0.0 0.2 1140784 23516 ? Ss 07:30 0:02 postgres: spaceuser spaceschema 127.0.0.1(40308) idle >apache 11505 0.0 0.3 526208 27356 ? S 02:43 0:00 /usr/sbin/httpd >postgres 11506 0.0 0.0 1139680 1908 ? Ss 02:43 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11570 0.0 0.1 1144744 10756 ? Ss 03:27 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11591 0.0 0.2 526244 20552 ? S 00:40 0:00 /usr/sbin/httpd >postgres 11592 0.0 0.0 1139572 1628 ? Ss 00:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11644 0.0 0.1 1144936 11888 ? Ss 02:43 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11647 0.0 0.1 1144744 11848 ? Ss 02:43 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11661 0.0 0.1 1144756 12108 ? Ss 05:29 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11664 0.0 0.3 526460 27728 ? S 05:29 0:00 /usr/sbin/httpd >postgres 11665 0.0 0.0 1139692 2016 ? Ss 05:29 0:00 postgres: spaceuser spaceschema [local] idle >apache 11759 0.0 0.3 526064 25824 ? S 03:27 0:00 /usr/sbin/httpd >postgres 11760 0.0 0.0 1139684 1928 ? Ss 03:27 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11797 0.0 0.1 1144760 15992 ? Ss 07:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11800 0.0 0.2 1144948 16696 ? Ss 07:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11873 0.0 0.1 1144924 8140 ? Ss 00:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11874 0.0 0.2 517476 16884 ? S 00:41 0:00 /usr/sbin/httpd >postgres 11875 0.0 0.0 1139572 1656 ? Ss 00:41 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11878 0.0 0.1 1144912 8284 ? Ss 00:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11881 0.0 0.0 1144184 7800 ? Ss 00:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11934 0.0 0.3 526124 27328 ? S 05:30 0:00 /usr/sbin/httpd >postgres 11935 0.0 0.0 1139692 2016 ? Ss 05:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 11947 0.0 0.1 1144384 11684 ? Ss 03:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11948 0.0 0.1 1144772 11412 ? Ss 03:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 11953 0.0 0.1 1144736 11060 ? Ss 03:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 11991 0.0 0.3 526420 27344 ? S 05:30 0:00 /usr/sbin/httpd >postgres 11992 0.0 0.0 1139692 2000 ? Ss 05:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 12013 0.0 0.1 1144780 13020 ? Ss 05:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 12018 0.0 0.1 1144744 11300 ? Ss 05:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 12019 0.0 0.1 1144748 11548 ? Ss 05:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 12024 0.0 0.3 526116 27264 ? S 02:45 0:00 /usr/sbin/httpd >postgres 12025 0.0 0.0 1139680 1892 ? Ss 02:45 0:00 postgres: spaceuser spaceschema [local] idle >postgres 12061 0.0 0.1 1142904 14292 ? Ss 09:38 0:00 postgres: spaceuser spaceschema 127.0.0.1(40937) idle >postgres 12216 0.0 0.2 1140808 23588 ? Ss 07:32 0:06 postgres: spaceuser spaceschema 127.0.0.1(40514) idle >postgres 12273 0.0 0.1 1144728 9300 ? Ss 00:42 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 12323 0.0 0.2 517588 23292 ? S 03:30 0:00 /usr/sbin/httpd >postgres 12324 0.0 0.0 1139684 1792 ? Ss 03:30 0:00 postgres: spaceuser spaceschema [local] idle >apache 12336 0.0 0.2 517440 23464 ? S 03:30 0:00 /usr/sbin/httpd >apache 12337 0.0 0.3 526372 26412 ? S 03:30 0:00 /usr/sbin/httpd >postgres 12338 0.0 0.0 1139684 1804 ? Ss 03:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 12339 0.0 0.0 1139684 1832 ? Ss 03:30 0:00 postgres: spaceuser spaceschema [local] idle >apache 12396 0.0 0.3 517444 29952 ? S 07:33 0:00 /usr/sbin/httpd >postgres 12397 0.0 0.0 1139700 3788 ? Ss 07:33 0:00 postgres: spaceuser spaceschema [local] idle >apache 12536 0.0 0.2 517484 23924 ? S 02:46 0:00 /usr/sbin/httpd >postgres 12537 0.0 0.0 1139680 1924 ? Ss 02:46 0:00 postgres: spaceuser spaceschema [local] idle >postgres 12636 0.0 0.1 1144940 12312 ? Ss 03:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 12639 0.0 0.1 1144940 12420 ? Ss 03:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 12640 0.0 0.1 1144776 11676 ? Ss 03:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 12743 0.0 0.1 526432 12428 ? S Nov04 0:01 /usr/sbin/httpd >postgres 12744 0.0 0.0 1139584 1668 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 12778 0.0 0.1 1144292 10732 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 12868 0.0 0.2 517444 16708 ? S 00:45 0:00 /usr/sbin/httpd >postgres 12869 0.0 0.0 1139588 728 ? Ss 00:45 0:00 postgres: spaceuser spaceschema [local] idle >postgres 12953 0.0 0.1 1144764 15028 ? Ss 07:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13052 0.0 0.2 517444 23756 ? S 02:48 0:00 /usr/sbin/httpd >postgres 13053 0.0 0.0 1139680 1912 ? Ss 02:48 0:00 postgres: spaceuser spaceschema [local] idle >apache 13103 0.0 0.3 517444 29948 ? S 07:36 0:00 /usr/sbin/httpd >postgres 13104 0.0 0.0 1139700 3784 ? Ss 07:36 0:00 postgres: spaceuser spaceschema [local] idle >postgres 13343 0.0 0.1 1144948 12652 ? Ss 05:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13345 0.0 0.3 526084 27228 ? S 02:49 0:00 /usr/sbin/httpd >postgres 13346 0.0 0.0 1139680 1912 ? Ss 02:49 0:00 postgres: spaceuser spaceschema [local] idle >postgres 13382 0.0 0.1 1144732 9188 ? Ss 00:46 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13385 0.0 0.2 517400 16828 ? S 00:46 0:00 /usr/sbin/httpd >postgres 13386 0.0 0.0 1139588 732 ? Ss 00:46 0:00 postgres: spaceuser spaceschema [local] idle >apache 13494 0.0 0.3 526340 27272 ? S 05:35 0:00 /usr/sbin/httpd >postgres 13495 0.0 0.0 1139692 2008 ? Ss 05:35 0:00 postgres: spaceuser spaceschema [local] idle >postgres 13506 0.0 0.1 1144760 15960 ? Ss 07:37 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 13588 0.0 0.1 1144740 10260 ? Ss 02:50 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13628 0.0 0.4 526216 33748 ? S 07:38 0:00 /usr/sbin/httpd >postgres 13629 0.0 0.0 1139700 3780 ? Ss 07:38 0:00 postgres: spaceuser spaceschema [local] idle >postgres 13691 0.0 0.1 1144764 9620 ? Ss 00:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13789 0.0 0.2 527316 20688 ? S Nov04 0:02 /usr/sbin/httpd >postgres 13790 0.0 0.0 1139584 1540 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 13817 0.0 0.1 1145120 11372 ? Ss Nov04 0:01 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13818 0.0 0.2 527444 18416 ? S Nov04 0:01 /usr/sbin/httpd >postgres 13819 0.0 0.0 1139584 1704 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 13848 0.0 0.1 1144912 9464 ? Ss Nov04 0:01 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 13935 0.0 0.2 517392 17312 ? S 00:49 0:00 /usr/sbin/httpd >postgres 13936 0.0 0.0 1139588 736 ? Ss 00:49 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14009 0.0 0.1 1144736 9500 ? Ss 00:49 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 14013 0.0 0.3 526236 27152 ? S 05:37 0:00 /usr/sbin/httpd >postgres 14014 0.0 0.0 1139692 1900 ? Ss 05:37 0:00 postgres: spaceuser spaceschema [local] idle >apache 14114 0.0 0.3 526208 26812 ? S 03:36 0:00 /usr/sbin/httpd >postgres 14115 0.0 0.0 1139684 1940 ? Ss 03:36 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14142 0.0 0.1 1144740 10696 ? Ss 02:53 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 14143 0.0 0.2 517444 23932 ? S 02:53 0:00 /usr/sbin/httpd >postgres 14146 0.0 0.0 1139680 1920 ? Ss 02:53 0:00 postgres: spaceuser spaceschema [local] idle >apache 14161 0.0 0.2 517444 23504 ? S 03:36 0:00 /usr/sbin/httpd >postgres 14162 0.0 0.0 1139684 1924 ? Ss 03:36 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14163 0.0 0.1 1144748 11000 ? Ss 03:36 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 14168 0.0 0.3 517444 30024 ? S 07:39 0:00 /usr/sbin/httpd >postgres 14176 0.0 0.0 1139700 3800 ? Ss 07:39 0:00 postgres: spaceuser spaceschema [local] idle >apache 14195 0.0 0.4 526464 34004 ? S 07:40 0:00 /usr/sbin/httpd >apache 14196 0.0 0.4 526464 34156 ? S 07:40 0:00 /usr/sbin/httpd >postgres 14197 0.0 0.0 1139700 3804 ? Ss 07:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14198 0.0 0.0 1139700 3800 ? Ss 07:40 0:00 postgres: spaceuser spaceschema [local] idle >apache 14201 0.0 0.2 526404 20344 ? S 00:49 0:00 /usr/sbin/httpd >postgres 14202 0.0 0.0 1139572 756 ? Ss 00:49 0:00 postgres: spaceuser spaceschema [local] idle >apache 14580 0.0 0.3 526080 27044 ? S 05:39 0:00 /usr/sbin/httpd >postgres 14581 0.0 0.0 1139692 2040 ? Ss 05:39 0:00 postgres: spaceuser spaceschema [local] idle >apache 14588 0.0 0.2 517476 23824 ? S 05:40 0:00 /usr/sbin/httpd >apache 14589 0.0 0.3 526428 27472 ? S 05:40 0:00 /usr/sbin/httpd >postgres 14590 0.0 0.0 1139692 2040 ? Ss 05:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14591 0.0 0.0 1139692 2028 ? Ss 05:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14621 0.0 0.1 1144744 10568 ? Ss 03:37 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 14661 0.0 0.1 1144760 15984 ? Ss 07:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 14682 0.0 0.1 1144744 10692 ? Ss 02:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 14683 0.0 0.2 517444 23948 ? S 02:55 0:00 /usr/sbin/httpd >postgres 14684 0.0 0.0 1139680 1920 ? Ss 02:55 0:00 postgres: spaceuser spaceschema [local] idle >apache 14839 0.0 0.2 527136 18860 ? S Nov04 0:01 /usr/sbin/httpd >postgres 14840 0.0 0.0 1139584 1656 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 14867 0.0 0.1 1144920 9548 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 14939 0.0 0.1 1144920 8088 ? Ss 00:52 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 15108 0.0 0.1 1144752 11160 ? Ss 05:42 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 15176 0.0 0.3 526080 26440 ? S 03:39 0:00 /usr/sbin/httpd >postgres 15177 0.0 0.0 1139684 1920 ? Ss 03:39 0:00 postgres: spaceuser spaceschema [local] idle >apache 15215 0.0 0.2 517372 23568 ? S 03:40 0:00 /usr/sbin/httpd >postgres 15216 0.0 0.0 1139684 1948 ? Ss 03:40 0:00 postgres: spaceuser spaceschema [local] idle >apache 15222 0.0 0.2 526292 18456 ? S 00:53 0:00 /usr/sbin/httpd >postgres 15223 0.0 0.0 1139572 1652 ? Ss 00:53 0:00 postgres: spaceuser spaceschema [local] idle >postgres 15226 0.0 0.1 1144740 10676 ? Ss 02:57 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 15410 0.0 0.2 517348 24000 ? S 02:58 0:00 /usr/sbin/httpd >postgres 15411 0.0 0.0 1139680 1912 ? Ss 02:58 0:00 postgres: spaceuser spaceschema [local] idle >postgres 15605 0.0 0.1 1144924 8128 ? Ss 00:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 15660 0.0 0.1 1144756 11200 ? Ss 05:44 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 15729 0.0 0.2 526396 18324 ? S 00:56 0:00 /usr/sbin/httpd >postgres 15730 0.0 0.0 1139572 744 ? Ss 00:56 0:00 postgres: spaceuser spaceschema [local] idle >postgres 15774 0.0 0.1 1144744 10824 ? Ss 03:42 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 15789 0.0 0.3 517340 30012 ? S 07:46 0:00 /usr/sbin/httpd >postgres 15790 0.0 0.0 1139700 3792 ? Ss 07:46 0:00 postgres: spaceuser spaceschema [local] idle >postgres 15806 0.0 0.1 1144732 9904 ? Ss 00:56 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 15823 0.0 0.1 1142904 14196 ? Ss 09:53 0:00 postgres: spaceuser spaceschema 127.0.0.1(40953) idle >apache 15966 0.0 0.3 526572 27708 ? S 03:00 0:00 /usr/sbin/httpd >postgres 15967 0.0 0.0 1139680 1784 ? Ss 03:00 0:00 postgres: spaceuser spaceschema [local] idle >apache 15972 0.0 0.3 526412 27012 ? S 03:00 0:00 /usr/sbin/httpd >apache 15973 0.0 0.3 526452 27564 ? S 03:00 0:00 /usr/sbin/httpd >postgres 15974 0.0 0.0 1139680 1932 ? Ss 03:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 15975 0.0 0.0 1139680 1948 ? Ss 03:00 0:00 postgres: spaceuser spaceschema [local] idle >apache 16240 0.0 0.2 526304 20040 ? S 00:58 0:00 /usr/sbin/httpd >postgres 16241 0.0 0.0 1139572 784 ? Ss 00:58 0:00 postgres: spaceuser spaceschema [local] idle >postgres 16328 0.0 0.1 1144760 15964 ? Ss 07:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 16331 0.0 0.4 526084 33736 ? S 07:48 0:00 /usr/sbin/httpd >postgres 16332 0.0 0.0 1139700 3776 ? Ss 07:48 0:00 postgres: spaceuser spaceschema [local] idle >postgres 16389 0.0 0.1 1144740 11676 ? Ss 03:01 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 16400 0.0 0.2 517444 23788 ? S 05:47 0:00 /usr/sbin/httpd >postgres 16401 0.0 0.0 1139692 2516 ? Ss 05:47 0:00 postgres: spaceuser spaceschema [local] idle >apache 16480 0.0 0.2 517444 23424 ? S 03:44 0:00 /usr/sbin/httpd >postgres 16481 0.0 0.0 1139684 1940 ? Ss 03:44 0:00 postgres: spaceuser spaceschema [local] idle >postgres 16611 0.0 0.1 1144924 9908 ? Ss 00:59 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 16778 0.0 0.1 1144752 11156 ? Ss 05:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 16794 0.0 0.2 517484 18480 ? S 01:00 0:00 /usr/sbin/httpd >postgres 16795 0.0 0.0 1139572 916 ? Ss 01:00 0:00 postgres: spaceuser spaceschema [local] idle >apache 16837 0.0 0.4 526456 34024 ? S 07:50 0:00 /usr/sbin/httpd >postgres 16838 0.0 0.0 1139700 3796 ? Ss 07:50 0:00 postgres: spaceuser spaceschema [local] idle >postgres 16845 0.0 0.1 1144772 13104 ? Ss 05:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 16846 0.0 0.1 1144948 12756 ? Ss 05:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 16849 0.0 0.3 526432 27644 ? S 05:48 0:00 /usr/sbin/httpd >postgres 16850 0.0 0.0 1139692 2008 ? Ss 05:48 0:00 postgres: spaceuser spaceschema [local] idle >postgres 16853 0.0 0.1 1144752 11256 ? Ss 05:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 16862 0.0 0.1 1144932 12852 ? Ss 05:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 16879 0.0 0.1 1144744 10752 ? Ss 03:46 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 16934 0.0 0.1 1144764 15080 ? Ss 07:50 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 17000 0.0 0.3 526340 26436 ? S 03:47 0:00 /usr/sbin/httpd >postgres 17001 0.0 0.0 1139684 1960 ? Ss 03:47 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17081 0.0 0.0 1140328 6564 ? Ss 14:14 0:00 postgres: spaceuser spaceschema 127.0.0.1(41190) idle >postgres 17082 0.0 0.0 1140328 6580 ? Ss 14:14 0:00 postgres: spaceuser spaceschema 127.0.0.1(41191) idle >apache 17221 0.0 0.3 526332 27288 ? S 05:50 0:00 /usr/sbin/httpd >postgres 17224 0.0 0.0 1139692 2036 ? Ss 05:50 0:00 postgres: spaceuser spaceschema [local] idle >apache 17324 0.0 0.2 526340 23564 ? S 01:02 0:00 /usr/sbin/httpd >postgres 17325 0.0 0.0 1139572 1648 ? Ss 01:02 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17398 0.0 0.0 1139716 3664 ? Ss 14:16 0:00 postgres: spaceuser spaceschema 127.0.0.1(41192) idle >postgres 17399 0.0 0.0 1139716 3676 ? Ss 14:16 0:00 postgres: spaceuser spaceschema 127.0.0.1(41193) idle >apache 17513 0.0 0.2 517476 23640 ? S 03:49 0:00 /usr/sbin/httpd >postgres 17514 0.0 0.0 1139684 1956 ? Ss 03:49 0:00 postgres: spaceuser spaceschema [local] idle >apache 17613 0.0 0.3 517348 30156 ? S 07:53 0:00 /usr/sbin/httpd >postgres 17614 0.0 0.0 1139700 3800 ? Ss 07:53 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17710 0.0 0.1 1144744 11652 ? Ss 03:03 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 17807 0.0 0.2 517348 23516 ? S 03:50 0:00 /usr/sbin/httpd >postgres 17808 0.0 0.0 1139684 1940 ? Ss 03:50 0:00 postgres: spaceuser spaceschema [local] idle >apache 17819 0.0 0.0 517888 7212 ? S Nov04 0:00 /usr/sbin/httpd >postgres 17820 0.0 0.0 1139584 1584 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17823 0.0 0.1 1144756 11532 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle in transaction >apache 17826 0.0 0.0 526524 7800 ? S Nov04 0:00 /usr/sbin/httpd >apache 17827 0.0 0.1 526516 8264 ? S Nov04 0:00 /usr/sbin/httpd >postgres 17828 0.0 0.0 1139584 1540 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17829 0.0 0.0 1139584 1532 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17832 0.0 0.1 1144644 8824 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17833 0.0 0.1 1144648 8148 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 17836 0.0 0.0 526568 6104 ? S Nov04 0:00 /usr/sbin/httpd >apache 17837 0.0 0.0 526508 6144 ? S Nov04 0:00 /usr/sbin/httpd >apache 17838 0.0 0.1 526512 8152 ? S Nov04 0:00 /usr/sbin/httpd >apache 17839 0.0 0.1 526580 11836 ? S Nov04 0:00 /usr/sbin/httpd >postgres 17840 0.0 0.0 1139584 1528 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17841 0.0 0.0 1139584 1528 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17842 0.0 0.0 1139584 1524 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17843 0.0 0.0 1139584 1520 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17846 0.0 0.0 1144580 7852 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17847 0.0 0.0 1144580 7976 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17848 0.0 0.1 1144580 8080 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17849 0.0 0.0 1144580 7984 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 17852 0.0 0.0 526392 6080 ? S Nov04 0:00 /usr/sbin/httpd >apache 17853 0.0 0.1 526432 10112 ? S Nov04 0:00 /usr/sbin/httpd >apache 17854 0.0 0.0 526436 6340 ? S Nov04 0:00 /usr/sbin/httpd >apache 17855 0.0 0.0 526392 6080 ? S Nov04 0:00 /usr/sbin/httpd >apache 17856 0.0 0.1 517664 8268 ? S Nov04 0:00 /usr/sbin/httpd >apache 17857 0.0 0.0 517744 6456 ? S Nov04 0:00 /usr/sbin/httpd >apache 17858 0.0 0.0 526396 6024 ? S Nov04 0:00 /usr/sbin/httpd >apache 17859 0.0 0.0 517536 6492 ? S Nov04 0:00 /usr/sbin/httpd >postgres 17860 0.0 0.0 1139584 1520 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17861 0.0 0.0 1139584 1520 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17862 0.0 0.0 1139584 1528 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17863 0.0 0.0 1139584 1516 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17864 0.0 0.0 1139584 1536 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17865 0.0 0.0 1139584 1552 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17867 0.0 0.0 1139584 1528 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17868 0.0 0.0 1139584 1536 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 17870 0.0 0.0 1144176 7700 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17871 0.0 0.0 1144748 7508 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17872 0.0 0.0 1144384 7516 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17873 0.0 0.0 1144724 7160 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17874 0.0 0.0 1144844 7520 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17875 0.0 0.0 1144724 7144 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17876 0.0 0.0 1144384 7484 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17877 0.0 0.0 1144720 7076 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 17890 0.0 0.1 1144732 10288 ? Ss 01:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 17891 0.0 0.2 517476 22504 ? S 01:04 0:00 /usr/sbin/httpd >postgres 17892 0.0 0.0 1139572 1520 ? Ss 01:04 0:00 postgres: spaceuser spaceschema [local] idle >apache 18036 0.0 0.2 517444 23740 ? S 05:52 0:00 /usr/sbin/httpd >postgres 18037 0.0 0.0 1139692 2028 ? Ss 05:52 0:00 postgres: spaceuser spaceschema [local] idle >postgres 18059 0.0 0.1 1144744 10868 ? Ss 03:50 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 18070 0.0 0.1 1144764 16000 ? Ss 07:54 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 18134 0.0 0.0 1139716 3664 ? Ss 14:18 0:00 postgres: spaceuser spaceschema 127.0.0.1(41195) idle >root 18171 0.0 0.0 110796 1660 ? Rs 14:18 0:00 ps --sort -pmem axwu >postgres 18228 0.0 0.1 1143804 14592 ? Ss 07:55 0:00 postgres: spaceuser spaceschema 127.0.0.1(40747) idle in transaction >postgres 18229 0.0 0.1 1144796 14716 ? Ss 07:55 0:00 postgres: spaceuser spaceschema 127.0.0.1(40748) idle in transaction >apache 18427 0.0 0.2 517476 23072 ? S 01:06 0:00 /usr/sbin/httpd >postgres 18428 0.0 0.0 1139572 1708 ? Ss 01:06 0:00 postgres: spaceuser spaceschema [local] idle >postgres 18429 0.0 0.1 1144728 9344 ? Ss 01:06 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 18516 0.0 0.1 1144756 12100 ? Ss 05:54 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 18552 0.0 0.2 517600 23888 ? S 05:54 0:00 /usr/sbin/httpd >postgres 18555 0.0 0.0 1139692 2016 ? Ss 05:54 0:00 postgres: spaceuser spaceschema [local] idle >postgres 18608 0.0 0.1 1144744 11800 ? Ss 03:52 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 18618 0.0 0.3 526536 26344 ? S 03:52 0:00 /usr/sbin/httpd >postgres 18621 0.0 0.0 1139684 1860 ? Ss 03:52 0:00 postgres: spaceuser spaceschema [local] idle >postgres 18635 0.0 0.1 1144760 16012 ? Ss 07:56 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 18666 0.0 0.1 1144948 12744 ? Ss 05:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 18671 0.0 0.1 1144944 12796 ? Ss 05:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 18864 0.0 0.3 526460 27836 ? S 05:56 0:00 /usr/sbin/httpd >postgres 18866 0.0 0.0 1139692 2048 ? Ss 05:56 0:00 postgres: spaceuser spaceschema [local] idle >postgres 18966 0.0 0.1 1144732 11164 ? Ss 01:08 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 19120 0.0 0.3 526112 27240 ? S 05:57 0:00 /usr/sbin/httpd >postgres 19122 0.0 0.0 1139692 2028 ? Ss 05:57 0:00 postgres: spaceuser spaceschema [local] idle >apache 19140 0.0 0.3 526468 26508 ? S 03:55 0:00 /usr/sbin/httpd >postgres 19142 0.0 0.0 1139684 1884 ? Ss 03:55 0:00 postgres: spaceuser spaceschema [local] idle >apache 19152 0.0 0.2 517444 21192 ? S 01:08 0:00 /usr/sbin/httpd >postgres 19153 0.0 0.0 1139576 1840 ? Ss 01:08 0:00 postgres: spaceuser spaceschema [local] idle >apache 19448 0.0 0.2 517348 19532 ? S 01:09 0:00 /usr/sbin/httpd >postgres 19449 0.0 0.0 1139576 840 ? Ss 01:09 0:00 postgres: spaceuser spaceschema [local] idle >postgres 19548 0.0 0.1 1144736 9936 ? Ss 01:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 19629 0.0 0.2 1144956 16980 ? Ss 08:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 19632 0.0 0.2 1144956 16868 ? Ss 08:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 19633 0.0 0.2 1144952 16768 ? Ss 08:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 19723 0.0 0.1 1144744 10632 ? Ss 03:57 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 19904 0.0 0.2 517808 23208 ? S 03:57 0:00 /usr/sbin/httpd >postgres 19905 0.0 0.0 1139684 1828 ? Ss 03:57 0:00 postgres: spaceuser spaceschema [local] idle >apache 20211 0.0 0.2 526104 22936 ? S 01:13 0:00 /usr/sbin/httpd >postgres 20212 0.0 0.0 1139576 748 ? Ss 01:13 0:00 postgres: spaceuser spaceschema [local] idle >postgres 20232 0.0 0.1 1144752 12180 ? Ss 06:01 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 20402 0.0 0.2 517400 24076 ? S 06:02 0:00 /usr/sbin/httpd >postgres 20407 0.0 0.0 1139692 2536 ? Ss 06:02 0:00 postgres: spaceuser spaceschema [local] idle >apache 20455 0.0 0.3 526428 26376 ? S 03:59 0:00 /usr/sbin/httpd >postgres 20456 0.0 0.0 1139684 1928 ? Ss 03:59 0:00 postgres: spaceuser spaceschema [local] idle >apache 20462 0.0 0.2 517500 22928 ? S 04:00 0:00 /usr/sbin/httpd >apache 20463 0.0 0.3 526416 26128 ? S 04:00 0:00 /usr/sbin/httpd >postgres 20464 0.0 0.0 1139684 1892 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 20465 0.0 0.0 1139684 1796 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 20577 0.0 0.1 1144848 12024 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20580 0.0 0.1 1144940 12536 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20581 0.0 0.1 1144924 12680 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20582 0.0 0.1 1144748 10800 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20583 0.0 0.1 1144748 11000 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20596 0.0 0.1 1144940 12356 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20597 0.0 0.1 1144940 12400 ? Ss 04:00 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 20617 0.0 0.1 1144740 9292 ? Ss 01:14 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 20663 0.0 0.3 526184 24184 ? S 01:14 0:00 /usr/sbin/httpd >postgres 20665 0.0 0.0 1139576 1048 ? Ss 01:14 0:00 postgres: spaceuser spaceschema [local] idle >postgres 20878 0.0 0.1 1142952 9764 ? Ss 08:05 0:00 postgres: spaceuser spaceschema 127.0.0.1(40840) idle in transaction >postgres 20879 0.0 0.1 1140988 9616 ? Ss 08:05 0:00 postgres: spaceuser spaceschema 127.0.0.1(40841) idle in transaction >postgres 20880 0.0 0.1 1143108 11504 ? Ss 08:05 0:00 postgres: spaceuser spaceschema 127.0.0.1(40842) idle in transaction >apache 20921 0.0 0.3 526532 27808 ? S 06:04 0:00 /usr/sbin/httpd >postgres 20922 0.0 0.0 1139692 2552 ? Ss 06:04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 21135 0.0 0.1 1144940 13292 ? Ss 06:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 21138 0.0 0.1 1144752 11252 ? Ss 06:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 21139 0.0 0.1 1144944 12904 ? Ss 06:04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 21235 0.0 0.3 526424 26912 ? S 01:17 0:00 /usr/sbin/httpd >postgres 21236 0.0 0.0 1139576 1720 ? Ss 01:17 0:00 postgres: spaceuser spaceschema [local] idle >apache 21431 0.0 0.3 526132 27304 ? S 06:05 0:00 /usr/sbin/httpd >postgres 21432 0.0 0.0 1139692 2128 ? Ss 06:05 0:00 postgres: spaceuser spaceschema [local] idle >postgres 21729 0.0 0.1 1144740 11252 ? Ss 01:18 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 21750 0.0 0.3 526416 27572 ? S 01:19 0:00 /usr/sbin/httpd >postgres 21751 0.0 0.0 1139576 1820 ? Ss 01:19 0:00 postgres: spaceuser spaceschema [local] idle >apache 21783 0.0 0.3 526304 26852 ? S 04:05 0:00 /usr/sbin/httpd >postgres 21784 0.0 0.0 1139684 2468 ? Ss 04:05 0:00 postgres: spaceuser spaceschema [local] idle >postgres 21787 0.0 0.1 1144932 12472 ? Ss 04:05 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 21897 0.0 0.1 1144724 11452 ? Ss 01:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 21898 0.0 0.1 1144932 11772 ? Ss 01:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 21903 0.0 0.1 1144736 11276 ? Ss 01:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 21904 0.0 0.1 1144728 11480 ? Ss 01:19 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 21948 0.0 0.3 526388 27372 ? S 06:07 0:00 /usr/sbin/httpd >postgres 21949 0.0 0.0 1139692 2528 ? Ss 06:07 0:00 postgres: spaceuser spaceschema [local] idle >apache 22046 0.0 0.3 526148 27416 ? S 01:20 0:00 /usr/sbin/httpd >postgres 22047 0.0 0.0 1139576 2360 ? Ss 01:20 0:00 postgres: spaceuser spaceschema [local] idle >postgres 22092 0.0 0.1 1141120 8468 ? Ss 08:09 0:00 postgres: spaceuser spaceschema 127.0.0.1(40853) idle in transaction >postgres 22093 0.0 0.1 1143108 11144 ? Ss 08:09 0:00 postgres: spaceuser spaceschema 127.0.0.1(40854) idle in transaction >postgres 22095 0.0 0.1 1143460 11184 ? Ss 08:09 0:00 postgres: spaceuser spaceschema 127.0.0.1(40856) idle in transaction >postgres 22248 0.0 0.1 1144772 13140 ? Ss 06:09 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 22249 0.0 0.2 517508 24024 ? S 06:09 0:00 /usr/sbin/httpd >postgres 22250 0.0 0.0 1139692 2044 ? Ss 06:09 0:00 postgres: spaceuser spaceschema [local] idle >postgres 22251 0.0 0.1 1144392 12356 ? Ss 06:09 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 22260 0.0 0.1 1144756 12156 ? Ss 06:09 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 22517 0.0 0.3 526392 27736 ? S 06:09 0:00 /usr/sbin/httpd >postgres 22518 0.0 0.0 1139692 2068 ? Ss 06:09 0:00 postgres: spaceuser spaceschema [local] idle >postgres 22522 0.0 0.1 1144736 11596 ? Ss 01:21 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 22534 0.0 0.3 526428 27368 ? S 04:08 0:00 /usr/sbin/httpd >postgres 22535 0.0 0.0 1139684 1972 ? Ss 04:08 0:00 postgres: spaceuser spaceschema [local] idle >apache 22850 0.0 0.2 517444 23336 ? S 01:23 0:00 /usr/sbin/httpd >postgres 22851 0.0 0.0 1139576 1856 ? Ss 01:23 0:00 postgres: spaceuser spaceschema [local] idle >postgres 22998 0.0 0.1 1144940 12780 ? Ss 04:09 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 23014 0.0 0.1 1143100 14564 ? Ss 08:13 0:00 postgres: spaceuser spaceschema 127.0.0.1(40859) idle >apache 23089 0.0 0.2 517404 23696 ? S 04:10 0:00 /usr/sbin/httpd >postgres 23090 0.0 0.0 1139684 1948 ? Ss 04:10 0:00 postgres: spaceuser spaceschema [local] idle >apache 23111 0.0 0.3 526428 27224 ? S 04:10 0:00 /usr/sbin/httpd >postgres 23112 0.0 0.0 1139684 1960 ? Ss 04:10 0:00 postgres: spaceuser spaceschema [local] idle >postgres 23215 0.0 0.1 1144408 12196 ? Ss 06:12 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 23266 0.0 0.1 1144776 11664 ? Ss 04:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 23269 0.0 0.1 1144468 12356 ? Ss 04:10 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 23397 0.0 0.1 1144740 11420 ? Ss 01:25 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 23568 0.0 0.3 517728 24320 ? S 06:14 0:00 /usr/sbin/httpd >postgres 23569 0.0 0.0 1139692 2072 ? Ss 06:14 0:00 postgres: spaceuser spaceschema [local] idle >apache 23570 0.0 0.3 526084 26432 ? S 01:25 0:00 /usr/sbin/httpd >postgres 23573 0.0 0.0 1139576 1352 ? Ss 01:25 0:00 postgres: spaceuser spaceschema [local] idle >postgres 23761 0.0 0.1 1144944 12924 ? Ss 06:14 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 24083 0.0 0.2 517588 23940 ? S 01:27 0:00 /usr/sbin/httpd >postgres 24084 0.0 0.0 1139576 1864 ? Ss 01:27 0:00 postgres: spaceuser spaceschema [local] idle >apache 24124 0.0 0.3 526156 27488 ? S 06:16 0:00 /usr/sbin/httpd >postgres 24125 0.0 0.0 1139692 2516 ? Ss 06:16 0:00 postgres: spaceuser spaceschema [local] idle >postgres 24252 0.0 0.1 1142968 14420 ? Ss 08:18 0:00 postgres: spaceuser spaceschema 127.0.0.1(40863) idle >apache 24367 0.0 0.2 517696 22780 ? S 04:14 0:00 /usr/sbin/httpd >postgres 24368 0.0 0.0 1139684 1948 ? Ss 04:14 0:00 postgres: spaceuser spaceschema [local] idle >postgres 24370 0.0 0.1 1144944 12976 ? Ss 06:17 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 24373 0.0 0.3 526124 27488 ? S 06:17 0:00 /usr/sbin/httpd >postgres 24374 0.0 0.0 1139692 2064 ? Ss 06:17 0:00 postgres: spaceuser spaceschema [local] idle >postgres 24385 0.0 0.1 1144784 12344 ? Ss 06:17 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 24485 0.0 0.1 1144776 11756 ? Ss 04:15 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 24556 0.0 0.2 517400 23884 ? S 03:05 0:00 /usr/sbin/httpd >postgres 24557 0.0 0.0 1139680 1928 ? Ss 03:05 0:00 postgres: spaceuser spaceschema [local] idle >apache 24633 0.0 0.3 526460 27648 ? S 01:30 0:00 /usr/sbin/httpd >postgres 24634 0.0 0.0 1139576 2328 ? Ss 01:30 0:00 postgres: spaceuser spaceschema [local] idle >apache 24646 0.0 0.3 526140 27012 ? S 01:30 0:00 /usr/sbin/httpd >apache 24647 0.0 0.3 526080 27224 ? S 01:30 0:00 /usr/sbin/httpd >postgres 24648 0.0 0.0 1139576 2364 ? Ss 01:30 0:00 postgres: spaceuser spaceschema [local] idle >postgres 24649 0.0 0.0 1139576 2372 ? Ss 01:30 0:00 postgres: spaceuser spaceschema [local] idle >apache 24889 0.0 0.2 517348 23500 ? S 04:16 0:00 /usr/sbin/httpd >postgres 24890 0.0 0.0 1139684 1976 ? Ss 04:16 0:00 postgres: spaceuser spaceschema [local] idle >postgres 25064 0.0 0.1 1144732 11292 ? Ss 01:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 25136 0.0 0.3 526148 27404 ? S 06:20 0:00 /usr/sbin/httpd >postgres 25137 0.0 0.0 1139692 2072 ? Ss 06:20 0:00 postgres: spaceuser spaceschema [local] idle >apache 25399 0.0 0.3 526148 26568 ? S 04:18 0:00 /usr/sbin/httpd >postgres 25400 0.0 0.0 1139684 1984 ? Ss 04:19 0:00 postgres: spaceuser spaceschema [local] idle >apache 25693 0.0 0.3 526308 26760 ? S 04:20 0:00 /usr/sbin/httpd >postgres 25694 0.0 0.0 1139684 1960 ? Ss 04:20 0:00 postgres: spaceuser spaceschema [local] idle >postgres 25879 0.0 0.1 1144748 11880 ? Ss 04:20 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 25880 0.0 0.1 1144944 12436 ? Ss 04:20 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 25883 0.0 0.1 1144748 11008 ? Ss 04:20 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 25907 0.0 0.2 517348 23924 ? S 06:22 0:00 /usr/sbin/httpd >postgres 25908 0.0 0.0 1139692 2032 ? Ss 06:22 0:00 postgres: spaceuser spaceschema [local] idle >postgres 26013 0.0 0.1 1144928 11340 ? Ss 01:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 26016 0.0 0.1 1144724 11396 ? Ss 01:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 26017 0.0 0.1 1144736 11460 ? Ss 01:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 26110 0.0 0.0 526136 6568 ? S Nov04 0:00 /usr/sbin/httpd >postgres 26111 0.0 0.0 1139584 1676 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 26170 0.0 0.3 526136 27136 ? S 01:36 0:00 /usr/sbin/httpd >postgres 26171 0.0 0.0 1139576 1856 ? Ss 01:36 0:00 postgres: spaceuser spaceschema [local] idle >apache 26417 0.0 0.3 526300 27520 ? S 06:24 0:00 /usr/sbin/httpd >postgres 26418 0.0 0.0 1139692 2064 ? Ss 06:24 0:00 postgres: spaceuser spaceschema [local] idle >apache 26468 0.0 0.3 526132 27084 ? S 04:23 0:00 /usr/sbin/httpd >postgres 26469 0.0 0.0 1139688 1960 ? Ss 04:23 0:00 postgres: spaceuser spaceschema [local] idle >apache 26651 0.0 0.0 526220 6376 ? S Nov04 0:00 /usr/sbin/httpd >postgres 26652 0.0 0.0 1139584 1624 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 26711 0.0 0.2 517444 23468 ? S 01:38 0:00 /usr/sbin/httpd >postgres 26712 0.0 0.0 1139576 1352 ? Ss 01:38 0:00 postgres: spaceuser spaceschema [local] idle >postgres 26960 0.0 0.1 1144752 11268 ? Ss 06:27 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 26961 0.0 0.2 517412 24096 ? S 06:27 0:00 /usr/sbin/httpd >postgres 26962 0.0 0.0 1139692 2084 ? Ss 06:27 0:00 postgres: spaceuser spaceschema [local] idle >apache 26984 0.0 0.3 526320 27092 ? S 04:25 0:00 /usr/sbin/httpd >postgres 26985 0.0 0.0 1139688 1896 ? Ss 04:25 0:00 postgres: spaceuser spaceschema [local] idle >apache 27140 0.0 0.0 526080 6052 ? S Nov04 0:00 /usr/sbin/httpd >postgres 27141 0.0 0.0 1139584 1632 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 27142 0.0 0.0 1144832 7848 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 27145 0.0 0.0 1144732 7316 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 27295 0.0 0.1 1144736 11356 ? Ss 01:40 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 27300 0.0 0.2 517340 23828 ? S 01:40 0:00 /usr/sbin/httpd >postgres 27301 0.0 0.0 1139576 1760 ? Ss 01:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 27359 0.0 0.1 1144004 11000 ? Ss 06:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 27360 0.0 0.1 1144948 13040 ? Ss 06:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 27365 0.0 0.1 1144756 11556 ? Ss 06:28 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 27516 0.0 0.3 526080 27324 ? S 06:29 0:00 /usr/sbin/httpd >postgres 27517 0.0 0.0 1139696 2052 ? Ss 06:29 0:00 postgres: spaceuser spaceschema [local] idle >apache 27520 0.0 0.2 517444 23532 ? S 04:27 0:00 /usr/sbin/httpd >postgres 27521 0.0 0.0 1139688 1924 ? Ss 04:27 0:00 postgres: spaceuser spaceschema [local] idle >apache 27756 0.0 0.2 517340 23876 ? S 06:29 0:00 /usr/sbin/httpd >postgres 27757 0.0 0.0 1139696 2016 ? Ss 06:29 0:00 postgres: spaceuser spaceschema [local] idle >postgres 27832 0.0 0.1 1144732 11228 ? Ss 01:42 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 27865 0.0 0.0 526456 6172 ? S Nov04 0:00 /usr/sbin/httpd >postgres 27866 0.0 0.0 1139584 1652 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 28007 0.0 0.3 526324 26492 ? S 01:42 0:00 /usr/sbin/httpd >postgres 28008 0.0 0.0 1139576 1632 ? Ss 01:42 0:00 postgres: spaceuser spaceschema [local] idle >apache 28067 0.0 0.2 517556 23636 ? S 04:29 0:00 /usr/sbin/httpd >postgres 28068 0.0 0.0 1139688 1928 ? Ss 04:29 0:00 postgres: spaceuser spaceschema [local] idle >postgres 28069 0.0 0.1 1144752 10840 ? Ss 04:29 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28109 0.0 0.1 1144756 11324 ? Ss 06:31 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 28157 0.0 0.0 517720 6616 ? S Nov04 0:00 /usr/sbin/httpd >postgres 28158 0.0 0.0 1139584 1612 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 28311 0.0 0.3 526428 27160 ? S 04:29 0:00 /usr/sbin/httpd >postgres 28312 0.0 0.0 1139688 2452 ? Ss 04:29 0:00 postgres: spaceuser spaceschema [local] idle >postgres 28318 0.0 0.0 1144732 6984 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28389 0.0 0.1 1144736 11252 ? Ss 01:44 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28473 0.0 0.1 1144736 10948 ? Ss 04:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28474 0.0 0.1 1144944 12480 ? Ss 04:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28476 0.0 0.1 1144928 12512 ? Ss 04:30 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 28522 0.0 0.3 526432 27324 ? S 01:44 0:00 /usr/sbin/httpd >postgres 28523 0.0 0.0 1139576 1816 ? Ss 01:44 0:00 postgres: spaceuser spaceschema [local] idle >apache 28803 0.0 0.3 526324 31316 ? S 06:34 0:00 /usr/sbin/httpd >postgres 28804 0.0 0.0 1139696 2036 ? Ss 06:34 0:00 postgres: spaceuser spaceschema [local] idle >apache 28854 0.0 0.2 517404 23616 ? S 04:32 0:00 /usr/sbin/httpd >postgres 28855 0.0 0.0 1139688 1984 ? Ss 04:32 0:00 postgres: spaceuser spaceschema [local] idle >postgres 28906 0.0 0.1 1144740 11640 ? Ss 03:07 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28911 0.0 0.0 1144720 7068 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 28921 0.0 0.0 1144732 6988 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 28922 0.0 0.0 526576 6072 ? S Nov04 0:00 /usr/sbin/httpd >postgres 28923 0.0 0.0 1139584 1608 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 28994 0.0 0.2 517348 23584 ? S 03:07 0:00 /usr/sbin/httpd >postgres 28996 0.0 0.0 1139680 1908 ? Ss 03:07 0:00 postgres: spaceuser spaceschema [local] idle >apache 29039 0.0 0.3 526208 27076 ? S 01:47 0:00 /usr/sbin/httpd >postgres 29040 0.0 0.0 1139576 1860 ? Ss 01:47 0:00 postgres: spaceuser spaceschema [local] idle >postgres 29210 0.0 0.1 1144760 11312 ? Ss 06:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 29314 0.0 0.2 517476 23492 ? S 06:35 0:00 /usr/sbin/httpd >postgres 29315 0.0 0.0 1139696 2060 ? Ss 06:35 0:00 postgres: spaceuser spaceschema [local] idle >apache 29436 0.0 0.0 517444 6600 ? S Nov04 0:00 /usr/sbin/httpd >postgres 29437 0.0 0.0 1139584 724 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 29474 0.0 0.1 1144928 11500 ? Ss 01:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 29477 0.0 0.1 1144752 11920 ? Ss 01:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 29480 0.0 0.1 1144912 11924 ? Ss 01:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 29481 0.0 0.1 1144736 11504 ? Ss 01:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 29562 0.0 0.2 517340 23300 ? S 01:49 0:00 /usr/sbin/httpd >postgres 29563 0.0 0.0 1139592 1636 ? Ss 01:49 0:00 postgres: spaceuser spaceschema [local] idle >postgres 29614 0.0 0.1 1144944 12424 ? Ss 04:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 29772 0.0 0.1 1144756 11320 ? Ss 06:37 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 29819 0.0 0.1 1144748 11068 ? Ss 04:35 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 29824 0.0 0.2 517348 23284 ? S 04:35 0:00 /usr/sbin/httpd >postgres 29825 0.0 0.0 1139688 1936 ? Ss 04:35 0:00 postgres: spaceuser spaceschema [local] idle >apache 29840 0.0 0.2 517724 24044 ? S 06:37 0:00 /usr/sbin/httpd >postgres 29841 0.0 0.0 1139696 2064 ? Ss 06:37 0:00 postgres: spaceuser spaceschema [local] idle >apache 29854 0.0 0.3 526144 27120 ? S 01:50 0:00 /usr/sbin/httpd >postgres 29855 0.0 0.0 1139592 2360 ? Ss 01:50 0:00 postgres: spaceuser spaceschema [local] idle >postgres 29980 0.0 0.0 1144728 7100 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 29981 0.0 0.0 517444 6672 ? S Nov04 0:00 /usr/sbin/httpd >postgres 29982 0.0 0.0 1139584 780 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 30093 0.0 0.1 1144736 11476 ? Ss 01:50 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 30385 0.0 0.3 517728 24228 ? S 04:38 0:00 /usr/sbin/httpd >postgres 30386 0.0 0.0 1139688 1980 ? Ss 04:38 0:00 postgres: spaceuser spaceschema [local] idle >apache 30403 0.0 0.3 526404 27428 ? S 06:39 0:00 /usr/sbin/httpd >postgres 30404 0.0 0.0 1139696 2076 ? Ss 06:39 0:00 postgres: spaceuser spaceschema [local] idle >apache 30409 0.0 0.3 526308 27460 ? S 06:40 0:00 /usr/sbin/httpd >apache 30410 0.0 0.3 526116 27376 ? S 06:40 0:00 /usr/sbin/httpd >postgres 30411 0.0 0.0 1139696 2092 ? Ss 06:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 30412 0.0 0.0 1139696 2080 ? Ss 06:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 30518 0.0 0.0 1144732 6984 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 30519 0.0 0.0 517348 6524 ? S Nov04 0:00 /usr/sbin/httpd >postgres 30520 0.0 0.0 1139584 744 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 30637 0.0 0.3 526452 27280 ? S 01:53 0:00 /usr/sbin/httpd >postgres 30638 0.0 0.0 1139592 1704 ? Ss 01:53 0:00 postgres: spaceuser spaceschema [local] idle >postgres 30805 0.0 0.1 1144744 12488 ? Ss 06:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 30806 0.0 0.1 1144952 13172 ? Ss 06:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 30807 0.0 0.1 1144788 12252 ? Ss 06:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 30810 0.0 0.1 1144004 11076 ? Ss 06:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 30813 0.0 0.1 1144940 15872 ? Ss 06:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 30884 0.0 0.1 1144752 10892 ? Ss 04:39 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 30940 0.0 0.2 517496 23380 ? S 04:40 0:00 /usr/sbin/httpd >postgres 30941 0.0 0.0 1139688 1960 ? Ss 04:40 0:00 postgres: spaceuser spaceschema [local] idle >apache 30949 0.0 0.3 526428 26384 ? S 04:40 0:00 /usr/sbin/httpd >apache 30950 0.0 0.3 526308 26856 ? S 04:40 0:00 /usr/sbin/httpd >postgres 30951 0.0 0.0 1139688 1936 ? Ss 04:40 0:00 postgres: spaceuser spaceschema [local] idle >postgres 30952 0.0 0.0 1139688 1944 ? Ss 04:40 0:00 postgres: spaceuser spaceschema [local] idle >apache 31183 0.0 0.3 526428 27068 ? S 01:55 0:00 /usr/sbin/httpd >postgres 31184 0.0 0.0 1139592 1784 ? Ss 01:55 0:00 postgres: spaceuser spaceschema [local] idle >postgres 31227 0.0 0.1 1144736 10920 ? Ss 04:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 31230 0.0 0.1 1144944 12604 ? Ss 04:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 31231 0.0 0.1 1144928 12692 ? Ss 04:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 31234 0.0 0.1 1144936 12608 ? Ss 04:41 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 31237 0.0 0.1 1144768 11568 ? Ss 01:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >postgres 31242 0.0 0.1 1144932 11812 ? Ss 01:55 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 31265 0.0 0.1 526468 8240 ? S Nov04 0:00 /usr/sbin/httpd >postgres 31266 0.0 0.0 1139568 1624 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >postgres 31649 0.0 0.0 1144724 7004 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 31784 0.0 0.0 526080 6276 ? S Nov04 0:00 /usr/sbin/httpd >postgres 31785 0.0 0.0 1139568 716 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 31898 0.0 0.3 526080 26760 ? S 01:57 0:00 /usr/sbin/httpd >postgres 31899 0.0 0.0 1139576 1868 ? Ss 01:57 0:00 postgres: spaceuser spaceschema [local] idle >apache 32218 0.0 0.2 517444 23848 ? S 06:47 0:00 /usr/sbin/httpd >postgres 32223 0.0 0.0 1139696 2084 ? Ss 06:47 0:00 postgres: spaceuser spaceschema [local] idle >apache 32290 0.0 0.0 526388 6480 ? S Nov04 0:00 /usr/sbin/httpd >postgres 32291 0.0 0.0 1139568 896 ? Ss Nov04 0:00 postgres: spaceuser spaceschema [local] idle >apache 32449 0.0 0.3 526584 27500 ? S 01:59 0:00 /usr/sbin/httpd >postgres 32450 0.0 0.0 1139576 2376 ? Ss 01:59 0:00 postgres: spaceuser spaceschema [local] idle >apache 32461 0.0 0.3 526408 27540 ? S 02:00 0:00 /usr/sbin/httpd >apache 32462 0.0 0.3 526488 27536 ? S 02:00 0:00 /usr/sbin/httpd >postgres 32463 0.0 0.0 1139576 1892 ? Ss 02:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 32464 0.0 0.0 1139576 1884 ? Ss 02:00 0:00 postgres: spaceuser spaceschema [local] idle >postgres 32596 0.0 0.1 1144756 11400 ? Ss 06:48 0:00 postgres: spaceuser spaceschema [local] UPDATE waiting >apache 32740 0.0 0.2 517476 23948 ? S 06:49 0:00 /usr/sbin/httpd >postgres 32741 0.0 0.0 1139696 2092 ? Ss 06:49 0:00 postgres: spaceuser spaceschema [local] idle >apache 32746 0.0 0.3 526428 26420 ? S 04:46 0:00 /usr/sbin/httpd >postgres 32747 0.0 0.0 1139688 1908 ? Ss 04:46 0:00 postgres: spaceuser spaceschema [local] idle > >==> ls_log_rhn.txt <== ># ls -alhtr /var/log/rhn/ > >total 18M >-rw-r--r-- 1 root root 86K Aug 27 20:45 populate_db.log.1 >-rw-r--r-- 1 root root 5.4K Aug 27 21:14 rhn_installation.log.1 >-rw-rw---- 1 apache apache 0 Aug 27 23:12 rhn_server_app.log >-rw-rw---- 1 apache apache 1.3M Aug 31 18:30 rhn_upload_package_push.log >-rw-rw---- 1 apache root 768 Sep 4 20:49 spacewalk-data-fsck.log >-rw------- 1 root root 0 Sep 11 16:52 jabberd.log >-rw-rw---- 1 apache apache 729K Sep 22 03:14 rhn_server_xmlrpc.log-20120922.gz >-rw-rw---- 1 apache apache 1.2M Oct 15 03:24 rhn_server_xmlrpc.log-20121015.gz >-rw-rw---- 1 apache apache 9.4K Oct 19 13:48 rhn_config_management.log >-rw-rw---- 1 apache apache 587K Oct 20 03:29 rhn_server_xmlrpc.log-20121020.gz >drwxrwx--- 3 root apache 4.0K Oct 30 14:17 oracle >drwxr-xr-x 2 root root 4.0K Oct 30 16:13 search >-rw-r--r-- 1 root root 66 Nov 2 20:40 rhn_installation.log.2 >-rw-r--r-- 1 root root 66 Nov 2 20:45 rhn_installation.log.3 >-rw-r--r-- 1 root root 66 Nov 2 20:46 rhn_installation.log.4 >-rw-r--r-- 1 root root 66 Nov 2 20:46 rhn_installation.log.5 >-rw-r--r-- 1 root root 66 Nov 2 20:46 rhn_installation.log.6 >-rw-r--r-- 1 root root 66 Nov 2 20:47 rhn_installation.log.7 >-rw-r--r-- 1 root root 1.9K Nov 2 20:50 rhn_installation.log >-rw-rw---- 1 apache root 8.2K Nov 2 21:03 osa-dispatcher.log >-rw-rw---- 1 apache apache 599K Nov 3 03:28 rhn_server_xmlrpc.log-20121103.gz >drwxrwx--- 5 root apache 4.0K Nov 3 03:28 . >drwxr-xr-x. 18 root root 4.0K Nov 4 03:39 .. >-rw-r--r-- 1 tomcat tomcat 29K Nov 5 07:32 rhn_web_api.log >drwxr-xr-x 2 root apache 4.0K Nov 5 08:00 reposync >-rw-r--r-- 1 root root 3.7M Nov 5 08:00 rhn_taskomatic_daemon.log >-rw-rw---- 1 apache apache 9.8M Nov 5 08:05 rhn_server_xmlrpc.log > > >==> ls_yum_repos.txt <== >#ls -l /etc/yum.repos.d/ > >total 52 >-rw-r--r--. 1 root root 1926 Jun 26 11:30 CentOS-Base.repo >-rw-r--r--. 1 root root 637 Jun 26 11:30 CentOS-Debuginfo.repo >-rw-r--r--. 1 root root 626 Jun 26 11:30 CentOS-Media.repo >-rw-r--r--. 1 root root 2593 Jun 26 11:30 CentOS-Vault.repo >-rw-r--r-- 1 root root 957 May 9 17:55 epel.repo >-rw-r--r-- 1 root root 1056 May 9 17:55 epel-testing.repo >-rw-r--r-- 1 root root 257 Nov 2 18:59 jpackage-generic.repo >-rw-r--r-- 1 root root 223 Oct 31 10:28 spacewalk-client-nightly.repo >-rw-r--r-- 1 root root 203 Oct 31 10:28 spacewalk-client.repo >-rw-r--r-- 1 root root 196 Oct 31 10:28 spacewalk-nightly.repo >-rw-r--r-- 1 root root 176 Oct 31 10:28 spacewalk.repo >-rw-r--r-- 1 root root 186 Oct 31 10:28 spacewalk-source.repo >-rw-r--r-- 1 root root 253 Aug 27 19:55 VMware-Tools.repo > >==> yum_list_spacewalk.txt <== ># yum list installed spacewalk\* > >Loaded plugins: changelog, downloadonly, fastestmirror, security, tmprepo >Installed Packages >spacewalk-admin.noarch 1.8.6-1.el6 @spacewalk >spacewalk-backend.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-app.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-applet.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-config-files.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-config-files-common.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-config-files-tool.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-iss.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-iss-export.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-libs.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-package-push-server.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-server.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-sql.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-sql-postgresql.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-tools.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-xml-export-libs.noarch 1.8.85-1.el6 @spacewalk >spacewalk-backend-xmlrpc.noarch 1.8.85-1.el6 @spacewalk >spacewalk-base.noarch 1.8.49-1.el6 @spacewalk >spacewalk-base-minimal.noarch 1.8.49-1.el6 @spacewalk >spacewalk-branding.noarch 1.8.7-1.el6 @spacewalk >spacewalk-certs-tools.noarch 1.8.4-1.el6 @spacewalk >spacewalk-client-repo.noarch 1.8-4.el6 @spacewalk >spacewalk-common.noarch 1.8.6-1.el6 @spacewalk >spacewalk-config.noarch 1.8.6-1.el6 @spacewalk >spacewalk-doc-indexes.noarch 1.1.1-1.el6 @spacewalk >spacewalk-grail.noarch 1.8.49-1.el6 @spacewalk >spacewalk-html.noarch 1.8.49-1.el6 @spacewalk >spacewalk-java.noarch 1.8.178-1.el6 @spacewalk >spacewalk-java-config.noarch 1.8.178-1.el6 @spacewalk >spacewalk-java-lib.noarch 1.8.178-1.el6 @spacewalk >spacewalk-java-postgresql.noarch 1.8.178-1.el6 @spacewalk >spacewalk-jpp-workaround.noarch 1.0.4-1.el6 @spacewalk >spacewalk-monitoring.noarch 1.4.1-1.el6 @spacewalk >spacewalk-monitoring-selinux.noarch 1.8.4-1.el6 @spacewalk >spacewalk-postgresql.noarch 1.8.6-1.el6 @spacewalk >spacewalk-pxt.noarch 1.8.49-1.el6 @spacewalk >spacewalk-repo.noarch 1.8-4.el6 installed >spacewalk-schema.noarch 1.8.88-1.el6 @spacewalk >spacewalk-search.noarch 1.8.6-1.el6 @spacewalk >spacewalk-selinux.noarch 1.8.2-1.el6 @spacewalk >spacewalk-setup.noarch 1.8.24-1.el6 @spacewalk >spacewalk-setup-jabberd.noarch 1.8.7-1.el6 @spacewalk >spacewalk-slf4j.noarch 1.6.1-1.el6 @spacewalk >spacewalk-sniglets.noarch 1.8.49-1.el6 @spacewalk >spacewalk-taskomatic.noarch 1.8.178-1.el6 @spacewalk >spacewalk-utils.noarch 1.8.33-1.el6 @spacewalk
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 873379
: 638747 |
644715
|
645559
|
646275
|
646369
|
649139
|
649654
|
650335