Ubuntu Restart Php

[Solved] Ubuntu Restart Php | Php - Code Explorer | yomemimo.com
Question : ubuntu restart php-fpm

Answered by : alberto-peripolli

service php-fpm restart # typical
service php5-fpm restart # debian-style
service php7.0-fpm restart # debian-style PHP 7
service php7.2-fpm restart # debian-style PHP 7.2
service php7.4-fpm restart # debian-style PHP 7.4

Source : https://serverfault.com/questions/189940/how-do-you-restart-php-fpm | Last Update : Tue, 29 Dec 20

Question : php restart

Answered by : hirohito

systemctl restart php-fpm.service

Source : | Last Update : Sun, 01 Aug 21

Question : ubuntu restart php

Answered by : asep-indra-kurniawan

#check version first
php --version
#status
service php7.4-fpm status
#restart
service php7.4-fpm restart
#reload
service php7.4-fpm reload
#force-reload
service php7.4-fpm force-reload
#start
service php7.4-fpm start
#stop
service php7.4-fpm stop
#or
/etc/init.d/php7.4-fpm restart

Source : | Last Update : Wed, 27 Apr 22

Question : restart php linux

Answered by : asep-indra-kurniawan

/etc/init.d/php7.4-fpm restart
#change your php version

Source : | Last Update : Tue, 15 Mar 22

Question : how to restart php-fpm on ubuntu

Answered by : cautious-cardinal-dsqf6i68pcok

sudo /etc/init.d/php-fpm restart

Source : | Last Update : Fri, 18 Dec 20

Answers related to ubuntu restart php

Code Explorer Popular Question For Php