Equivalente ao Servidor de Aplicativos Reinicie em PHP?

2

Estou acostumado a reiniciar o Java Application Server (es.Tomcat) quando houver problemas de memória / desempenho.

Como faço para "reiniciar" o PHP em casos semelhantes? É o suficiente para reiniciar o servidor web (Apache / Nginx)? Depende se existe também um Application Server (es Zend)?

    
por Glasnhost 25.01.2017 / 12:47

2 respostas

2

It's enough to restart the web server

De perto , na minha opinião:

  • Apache: De fato.
  • Nginx: Você precisará verificar o PHP-FPM também.

Por exemplo,

# sudo systemctl restart nginx.service
# sudo systemctl restart php-fpm.service

Como Silver apontou:

If PHP is integrated in your webserver you'll need to restart the webserver. If you run PHP with the FastCGI Process Manager (FPM), you'll need to restart the FPM service.

    
por 25.01.2017 / 12:58
-3

Basta escrever um pequeno script bash e reiniciar todos os serviços:)

service restart apache;
service restart nginx;
service restart php-fpm;
    
por 29.09.2017 / 07:08

Tags