以下內容** 和
先來理解一下什麼是php-fpm
php-fpm是乙個php fastcgi管理器,是只用於php的。
php5.3.3已經整合php-fpm了,不再是第三方的包了。php-fpm提供了更好的php程序管理方式,可以有效控制記憶體和程序、可以平滑過載php配置,比spawn-fcgi具有更多優點,所以被php官方收錄了。在./configure的時候帶 –enable-fpm引數即可開啟php-fpm。 使用php-fpm來控制php-cgi的fastcgi程序
(www.111cn.net)
1 # ps aux|grep php-fpm2 root 21891
0.00.0
112660
960 pts/3 r+ 16:18
0:00
grep --color=auto php-fpm
3 root 42891
0.00.1
182796
4 nobody 42892
0.00.6
183000
6516 ? s 4月18 0:07 php-fpm: pool www
5 nobody 42893
0.00.6
183000
6508 ? s 4月18 0:17 php-fpm: pool www
1[global]
2 ; pid file
3 ; note: the default prefix is /usr/local/php/var
4; default value: none
5 ;pid = run/php-fpm.pid
1 php-fpm 關閉:2kill -int '
cat /usr/local/php/var/run/php-fpm.pid
'3 php-fpm 重啟:
4kill -usr2 '
cat /usr/local/php/var/run/php-fpm.pid
'
# ps aux|grep php-fpm
root 21891
0.00.0
112660
960 pts/3 r+ 16:18
0:00 grep --color=auto php-fpm
root 42891
0.00.1
182796
1220 ? ss 4月18
nobody 42892
0.00.6
183000
6516 ? s 4月18
0:07 php-fpm: pool www
nobody 42893
0.00.6
183000
6508 ? s 4月18
0:17 php-fpm: pool www
; pid file
; note: the default prefix is /usr/local/php/var
; default value: none
;pid = run/php-fpm.pid
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'
php fpm命令翻譯
使用php fpm,修改了php.ini配置,必須重啟php fpm。php fpm應該是和web伺服器分離的,可能不一定需要重啟nginx等。php fpm的配置,可覆蓋 php.ini 的配置。max execution time 是php.ini中設定的,指令碼最大執行時間 request t...
php 中php fpm 的重啟 終止操作命令
php 中php fpm 的重啟 終止操作命令 檢視php執行目錄命令 which php usr bin php 檢視php fpm程序數 ps aux grep c php fpm 檢視執行記憶體 usr bin php i grep mem 重啟php fpm etc init.d php f...
php 中php fpm 的重啟 終止操作命令
service nginx restart service php fpm restart 檢視php fpm程序數 ps aux grep c php fpm 檢視執行記憶體 usr bin php i grep mem 檢視php編譯引數 usr bin php i grep configure...