Wondering if anyone know's why the processes below are taking up some much CPU resources on my Ubuntu apache server.
- 100%
/usr/sbin/acpi - 71%
/usr/local/apa - 68%
/sbin/syslogd - 66%
/usr/sbin/cron - 59%
/sbin/klogd
If I run strace on most of the processes I see
select(8, [3], NULL, NULL, {0, 0}) = 0 (Timeout)
Once I stop the process the CPU usage goes back to normal but after an hour our so everything starts maxing out again.
I haven't setup anything in the cron for this server. So not sure exactly what the cron is doing.
I am using Ubuntu 12.04.
select(8, [3], NULL, NULL, {0, 0}) = 0 (Timeout)
I ran lsof -p {acpi process id} -ad 3
and got
/usr/sbin 21798 www-data 3u IPv4 10901916 0t0 TCP ip-10-169-241-28.ec2.internal:46985->li498-11.members.linode.com:ircd (CLOSE_WAIT)
So it looks like it getting caught up on this? Not sure why my server is calling linode.com.. I'm starting to think I've been hacked or something.
– Dylan D Jun 28 '15 at 17:23