Home > Backend Development > PHP Problem > How to modify php.ini and then restart

How to modify php.ini and then restart

藏色散人
Release: 2023-03-13 15:06:01
Original
3455 people have browsed it

How to restart php-fpm after modifying php.ini: 1. Open "php-fpm.pid" and get the id; 2. Execute the command "kill -USR2 42890"; 3. Restart php-fpm. Can.

How to modify php.ini and then restart

The operating environment of this article: linux5.9.8 system, PHP5 version, DELL G3 computer

How to modify php.ini and then restart?

Restart php-fpm after modifying php.ini

It is recommended to open /usr/local/php/var/run/php-fpm.pid to get the id 42890

Direct kill -USR2 42890

best

php-fpm Close:

kill -INT 'cat /usr/local/php/var/run/php-fpm.pid'
Copy after login

php-fpm Restart:

kill -USR2 'cat /usr/local/php/var/run/php-fpm.pid'
Copy after login

Move file | Rename |

mv file name new path file name

Test whether the configuration is correct

nginx -t
Copy after login

nginx Restart

nginx -s reload
Copy after login

After installing the extension, Modify php.ini Add extension=/path/shmop.so

Restart php infinitely, nginx just doesn’t work

After checking phpinfo, I found that the value of Loaded Configuration File is none

It turns out that when php-fpm was started, php.ini was not specified, so it never took effect...

 /usr/local/php5/sbin/php-fpm -y /usr/local/php5/etc/php-fpm.conf -c /usr/local/php5/etc/php.ini
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to modify php.ini and then restart. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template