Home > Backend Development > PHP Problem > linux modify php.ini and restart php-fpm

linux modify php.ini and restart php-fpm

藏色散人
Release: 2023-03-04 18:36:01
Original
4708 people have browsed it

Linux method to modify php.ini and restart php-fpm: first open "php-fpm.pid" and get the id; then directly execute the command "kill -USR2 42890"; finally close "php-fpm" and restart.

linux modify php.ini and restart php-fpm

Recommended: "PHP Video Tutorial"

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

Kill -USR2 directly 42890

Best

php-fpm 关闭:
kill -INT 'cat /usr/local/php/var/run/php-fpm.pid'
php-fpm 重启:
kill -USR2 'cat /usr/local/php/var/run/php-fpm.pid'
移动文件| 重新命名|
Copy after login

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 starts , 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

The above is the detailed content of linux modify php.ini and restart php-fpm. 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