Suddenly my website became very slow. When I login into my sever with ssh, and checked the cpu utilization, I found host command was utilizing more than 80% cpu. The problem was solved by a server restart. But I am afraid it can be come back. Any explanation of the possible cause?
Asked
Active
Viewed 2,467 times
2
find / -name host 2>&1should do the trick) – Chris S Feb 19 '14 at 14:46/usr/bin/host /usr/src/linux-headers-3.2.0-40/drivers/memstick/host /usr/src/linux-headers-3.2.0-40/drivers/usb/host /usr/src/linux-headers-3.2.0-40/drivers/mmc/host /usr/src/linux-headers-3.2.0-40-virtual/include/config/scsi/sas/host /usr/src/linux-headers-3.2.0-40-virtual/include/config/bcma/host
– vinayrks Feb 19 '14 at 18:22sudo find / -executable -type f -name host 2>&1. In my case, it just returned one result,/usr/bin/host. – mlissner Jan 25 '16 at 23:37