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

How to modify php.ini and then restart

藏色散人
藏色散人Original
2021-10-29 09:27:403414browse

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'

php-fpm Restart:

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

Move file | Rename |

mv file name new path file name

Test whether the configuration is correct

nginx -t

nginx Restart

nginx -s reload

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

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!

Statement:
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