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

관련 정보