ubuntu 12.04 - fusor de alta cpu

1

O problema é a alta cpu do fusor e a alta carga do servidor.

root      20   0  7580  840  692 D   10  0.0   0:00.31 fuser 16061

root      20   0  7580  844  692 D   10  0.0   0:00.31 fuser 16062

root      20   0  7584  840  692 R    9  0.0   0:00.28 fuser 16063

root      20   0  7584  840  692 R    8  0.0   0:00.26 fuser 16054 

root      20   0  7584  840  692 D    8  0.0   0:00.25 fuser 16057 

root      20   0  7580  840  692 D    8  0.0   0:00.25 fuser 16059 

root      20   0  7580  840  692 D    8  0.0   0:00.25 fuser 16056 

root      20   0  7580  840  692 D    8  0.0   0:00.24 fuser 16060 

root      20   0  7580  836  692 D    8  0.0   0:00.24 fuser 16058 

root      20   0  7580  836  692 D    6  0.0   0:00.19 fuser 16064 

root      20   0  7584  836  692 R    5  0.0   0:00.17 fuser

Eu acho a pergunta: link

É um erro de 11,10? mas meu servidor é 12.04

meu servidor /etc/cron.d/php5

09,39 *     * * *     root   [ -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

e definido para

09,39 *     * * *     root   [ -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) -delete

também não funciona.

quesiton:

  1. Alterar /etc/cron.d/php5 causará o problema?

  2. Agora, como localizo o problema?

por leiyonglin 18.01.2014 / 04:26

1 resposta

1

talvez post antigo, mas

Eu tenho o mesmo problema com os servidores Ubuntu, mas nenhum problema com os servidores Debian, a única diferença que encontrei foi

ubuntu

[ -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

debian

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

Então, adicione o -ignore_readdir_race na linha do cron e acho que funcionará,

    
por Synchro 11.07.2014 / 15:56