Search
 
SCRIPT & CODE EXAMPLE
 

PHP

ubuntu restart php-fpm

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
Comment

ubuntu restart php

#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
Comment

how to restart php-fpm on ubuntu

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

PREVIOUS NEXT
Code Example
Php :: phpmailer utf8 charset encoding 
Php :: larave whereNotNull 
Php :: install php8.1 
Php :: print beauty php 
Php :: wordpress base theme child url 
Php :: php server self 
Php :: laravel random string 
Php :: user-agent cURL php 
Php :: return last insert id in codeigniter 
Php :: refresh a specific migration in laravel 
Php :: remove last comma from string php 
Php :: php 3 days after 
Php :: long text in laravel migration 
Php :: install php-mbstring in ubuntu 
Php :: (2482:3) autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated. 
Php :: php trim all array elements 
Php :: how to find php.ini 
Php :: php what type of variable is it 
Php :: debug graphql wordpress 
Php :: how to find datatype of a variable in php 
Php :: laravel htaccess tested 
Php :: Call to undefined function str_limit() laaravel8 
Php :: php generate random string fixed length 
Php :: wp get post content by id 
Php :: twig first letter uppercase 
Php :: php go to another page 
Php :: laravel ide helper 
Php :: compare hashed password and a unhashed password in laravel 
Php :: npm watch laravel 
Php :: start server symfony command 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =