1. Locate the php.ini configuration
Find/-name ' php.ini '
/usr/local/php/etc/php.ini
Find the Extension=php_curl.dll and remove the semicolon from the front.
2, restart PHP
PHP-FPM in PHP 5.3.3 no longer supports commands such as/USR/LOCAL/PHP/SBIN/PHP-FPM (Start|stop|reload) that php-fpm previously had, and signal control is required:
The master process can understand the following signals:
INT, term: Immediate Termination
QUIT: Smooth Termination
USR1: Reopen log file
USR2: Smooth reload of all worker processes and reload configuration and binary modules
Example:
1) php-fpm off:
#kill-int ' Cat/usr/local/php/var/run/php-fpm.pid '
2) php-fpm Restart:
#kill-usr2 ' Cat/usr/local/php/var/run/php-fpm.pid '
To view the number of PHP-FPM processes:
#PS aux | grep-c php-fpm
Accidentally killed the PHP process, how to start it.
/USR/LOCAL/PHP/SBIN/PHP-FPM-T Test If there is a problem
/usr/local/php/sbin/php-fpm-r Start PHP-FPM
Or/ETC/INIT.D/PHP-FPM start to launch PHP-FPM
PHP Turn on Curl and restart the PHP-FPM service