CPU가 몇 시간 동안 99%에서 멈춤: 로그 찾기

CPU가 몇 시간 동안 99%에서 멈춤: 로그 찾기

발췌 syslog:

CRON[pid]: (user) CMD (  [ -x /usr/lib/php5/maxlifetime ] && [ -d /var/lib/php5 ] && find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -cmin +$(/usr/lib/php5/maxlifetime) ! -
execdir fuser -s {} 2>/dev/null \; -delete)

내 CPU가 몇 시간 동안 99%에서 멈춰 있었습니다. 아마도 이것 때문인 것 같습니다. 이것이 무엇인지, 어떻게 시작되고 어떻게 중지하는지 아시는 분 계신가요?

편집: 나는 이것을 시도했고 top -n1이것을 여러 번 보았습니다.

PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND  
PID user      20   0     0    0    0 Z 99.9  0.0   0:00.00 fuser <defunct>

이 행은 약 8회 반복됩니다.

편집 2:

uname-a:

user SMP Tue Feb 14 13:27:41 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux`
lsb_release -a:
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 11.10
Release:    11.10
Codename:   code

편집 3:

재부팅 후 시스템은 동일한 99% cpu usage결과 로 돌아갑니다 top -n1.

답변1

이것은 /var/lib/php5/에 있는 오래된 세션 파일을 정리하는 cron 작업입니다. 99%에서 멈추면 대상 폴더(/var/lib/php5/)에 파일이 너무 많거나 파일 시스템이 손상되었는지 확인해야 합니다.

프로세스는 crontab에서 시작됩니다. crontab 목록 참조(설명여기). 프로세스를 종료하고 crontab에서 제거할 수 있지만 복구해야 할 파일이 너무 많은 등 근본적인 문제가 있을 가능성이 더 높습니다.

답변2

여기서 답을 찾았습니다.http://www.flynsarmy.com/2011/11/fuser-using-100-cpu-in-ubuntu-11-10/

존재하다/etc/cron.d/php5 on Ubuntu 11.10:

바꾸다
09,39 * * * * root [ -x /usr/lib/php5/maxlifetime ] &amp;&amp; [ -d /var/lib/php5 ] &amp;&amp; find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -cmin +$(/usr/lib/php5/maxlifetime) ! -execdir fuser -s {} 2&gt;/dev/null \; -delete

그리고
09,39 * * * * root [ -x /usr/lib/php5/maxlifetime ] &amp;&amp; [ -d /var/lib/php5 ] &amp;&amp; find /var/lib/php5/ -depth -mindepth 1 -maxdepth 1 -type f -cmin +$(/usr/lib/php5/maxlifetime) -delete

관련 정보