php-fpm配置文件詳解

;pid = run/php-fpm.pid      設(shè)置pid文件的位置,默認(rèn)目錄路徑 /usr/local/php/var
;error_log = log/php-fpm.log  記錄錯誤日志的文件糟需,默認(rèn)目錄路徑 /usr/local/php/var
;syslog.facility = daemon    用于指定什么類型的程序日志消息卡啰。
;syslog.ident = php-fpm      用于FPM多實(shí)例甄別
;log_level = notice        記錄日志的等級,默認(rèn)notice,可取值alert, error, warning, notice, debug
;emergency_restart_threshold = 0 如果子進(jìn)程在這個時間段內(nèi)帶有IGSEGV或SIGBUS退出惩阶,則重啟fpm,默認(rèn)0表示關(guān)閉這個功能
;emergency_restart_interval = 0 設(shè)置時間間隔來決定服務(wù)的初始化時間(默認(rèn)單位:s秒)扣汪,可選s秒断楷,m分,h時崭别,d天
;process_control_timeout = 0    子進(jìn)程等待master進(jìn)程對信號的回應(yīng)(默認(rèn)單位:s秒)冬筒,可選s秒恐锣,m分,h時舞痰,d天
; process.max = 128         控制最大進(jìn)程數(shù)土榴,使用時需謹(jǐn)慎
; process.priority = -19      處理nice(2)的進(jìn)程優(yōu)先級別-19(最高)到20(最低)
;rlimit_files = 1024        設(shè)置主進(jìn)程文件描述符rlimit的數(shù)量
;rlimit_core = 0           設(shè)置主進(jìn)程rlimit最大核數(shù)
;events.mechanism = epoll     使用處理event事件的機(jī)制
  ; - select     (any POSIX os)
  ; - poll       (any POSIX os)
  ; - epoll      (linux >= 2.5.44)
  ; - kqueue     (FreeBSD >= 4.1, OpenBSD >= 2.9, NetBSD >= 2.0)
  ; - /dev/poll  (Solaris >= 7)
  ; - port       (Solaris >= 10)
;daemonize = yes           將fpm轉(zhuǎn)至后臺運(yùn)行,如果設(shè)置為“no”响牛,那么fpm會運(yùn)行在前臺
;systemd_interval = 10


[www]
; It only applies on the following directives:
; - 'access.log'
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
; - 'chdir'
; - 'php_values'
; - 'php_admin_values'

;prefix = /path/to/pools/$pool   如果沒有制定玷禽,將使用全局prefix替代
user = nobody             進(jìn)程的發(fā)起用戶和用戶組,用戶user是必須設(shè)置呀打,group不是
group = nobody
listen = 127.0.0.1:9000       監(jiān)聽ip和端口
;listen.backlog = 65535       設(shè)置listen(2)函數(shù)backlog
;listen.owner = nobody
;listen.group = nobody
;listen.mode = 0660
;listen.acl_users =
;listen.acl_groups =
;listen.allowed_clients = 127.0.0.1 允許FastCGI客戶端連接的IPv4地址矢赁,多個地址用','分隔,為空則允許任何地址發(fā)來鏈接請求
; process.priority = -19
pm = dynamic              選擇進(jìn)程池管理器如何控制子進(jìn)程的數(shù)量
  static:  對于子進(jìn)程的開啟數(shù)路給定一個鎖定的值(pm.max_children)
  dynamic:  子進(jìn)程的數(shù)目為動態(tài)的贬丛,它的數(shù)目基于下面的指令的值(以下為dynamic適用參數(shù))
    pm.max_children:  同一時刻能夠存貨的最大子進(jìn)程的數(shù)量
    pm.start_servers: 在啟動時啟動的子進(jìn)程數(shù)量
    pm.min_spare_servers: 處于空閑"idle"狀態(tài)的最小子進(jìn)程撩银,如果空閑進(jìn)程數(shù)量小于這個值,那么相應(yīng)的子進(jìn)程會被創(chuàng)建
    pm.max_spare_servers: 最大空閑子進(jìn)程數(shù)量豺憔,空閑子進(jìn)程數(shù)量超過這個值蜒蕾,那么相應(yīng)的子進(jìn)程會被殺掉。
  ondemand: 在啟動時不會創(chuàng)建焕阿,只有當(dāng)發(fā)起請求鏈接時才會創(chuàng)建(pm.max_children, pm.process_idle_timeout)

pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
;pm.process_idle_timeout = 10s;  空閑進(jìn)程超時時間
;pm.max_requests = 500        在派生新的子進(jìn)程前咪啡,每一個子進(jìn)程應(yīng)該處理的請求數(shù)目,在第三方庫中解決內(nèi)存溢出很有用暮屡,設(shè)置為0則不會限制
;pm.status_path = /status        配置一個URI撤摸,以便查看fpm狀態(tài)頁
狀態(tài)頁描述:
  accepted conn: 該進(jìn)程池接受的請求數(shù)量
  pool: 進(jìn)程池的名字
  process manager: 進(jìn)程管理,就是配置中pm指令褒纲,可以選擇值static准夷,dynamic,ondemand
  idle processes: 空閑進(jìn)程數(shù)量
  active processes: 當(dāng)前活躍的進(jìn)程數(shù)量
  total processes: 總的進(jìn)程數(shù)量=idle+active
  max children reached: 達(dá)到最大子進(jìn)程的次數(shù)莺掠,達(dá)到進(jìn)程的限制衫嵌,當(dāng)pm試圖開啟更多的子進(jìn)程的時候(僅當(dāng)pm工作在dynamic時)
;ping.path = /ping    該ping URI將會去調(diào)用fpm監(jiān)控頁面,如果這個沒有設(shè)置彻秆,那么不會有URI被做為ping頁
;ping.response = pong  用于定制平請求的響應(yīng)楔绞,響應(yīng)的格式text/plain(對200響應(yīng)代碼)
;access.log = log/$pool.access.log
;access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"
  ; The following syntax is allowed
  ;  %%: the '%' character
  ;  %C: %CPU used by the request
  ;      it can accept the following format:
  ;      - %{user}C for user CPU only
  ;      - %{system}C for system CPU only
  ;      - %{total}C  for user + system CPU (default)
  ;  %d: time taken to serve the request
  ;      it can accept the following format:
  ;      - %{seconds}d (default)
  ;      - %{miliseconds}d
  ;      - %{mili}d
  ;      - %{microseconds}d
  ;      - %{micro}d
  ;  %e: an environment variable (same as $_ENV or $_SERVER)
  ;      it must be associated with embraces to specify the name of the env
  ;      variable. Some exemples:
  ;      - server specifics like: %{REQUEST_METHOD}e or %{SERVER_PROTOCOL}e
  ;      - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
  ;  %f: script filename
  ;  %l: content-length of the request (for POST request only)
  ;  %m: request method
  ;  %M: peak of memory allocated by PHP
  ;      it can accept the following format:
  ;      - %{bytes}M (default)
  ;      - %{kilobytes}M
  ;      - %{kilo}M
  ;      - %{megabytes}M
  ;      - %{mega}M
  ;  %n: pool name
  ;  %o: output header
  ;      it must be associated with embraces to specify the name of the header:
  ;      - %{Content-Type}o
  ;      - %{X-Powered-By}o
  ;      - %{Transfert-Encoding}o
  ;      - ....
  ;  %p: PID of the child that serviced the request
  ;  %P: PID of the parent of the child that serviced the request
  ;  %q: the query string
  ;  %Q: the '?' character if query string exists
  ;  %r: the request URI (without the query string, see %q and %Q)
  ;  %R: remote IP address
  ;  %s: status (response code)
  ;  %t: server time the request was received
  ;      it can accept a strftime(3) format:
  ;      %d/%b/%Y:%H:%M:%S %z (default)
  ;  %T: time the log has been written (the request has finished)
  ;      it can accept a strftime(3) format:
  ;      %d/%b/%Y:%H:%M:%S %z (default)
  ;  %u: remote user
;slowlog = log/$pool.log.slow   用于記錄慢請求
;request_slowlog_timeout = 0    慢日志請求超時時間,對一個php程序進(jìn)行跟蹤唇兑。
;request_terminate_timeout = 0  終止請求超時時間酒朵,在worker進(jìn)程被殺掉之后,提供單個請求的超時間隔扎附。由于某種原因不停止腳本執(zhí)行時蔫耽,應(yīng)該使用該選項(xiàng),0表示關(guān)閉不啟用
  (在php.ini中留夜,max_execution_time 一般設(shè)置為30匙铡,表示每一個腳本的最大執(zhí)行時間)
;rlimit_files = 1024        設(shè)置打開文件描述符的限制
;rlimit_core = 0           設(shè)置內(nèi)核對資源的使用限制图甜,用于內(nèi)核轉(zhuǎn)儲
;chroot =               設(shè)置chroot路徑,程序一啟動就將其chroot放置到指定的目錄下鳖眼,該指令值必須是一個絕對路徑
;chdir = /var/www          在程序啟動時將會改變到指定的位置(這個是相對路徑黑毅,相對當(dāng)前路徑或chroot后的“/”目錄)    
;catch_workers_output = yes    將worker的標(biāo)準(zhǔn)輸出和錯誤輸出重定向到主要的錯誤日志記錄中,如果沒有設(shè)置具帮,根據(jù)FastCGI的指定博肋,將會被重定向到/dev/null上
;clear_env = no            清理環(huán)境
;security.limit_extensions = .php .php3 .php4 .php5  限制FPM執(zhí)行解析的擴(kuò)展名
;env[HOSTNAME] = $HOSTNAME
;env[PATH] = /usr/local/bin:/usr/bin:/bin
;env[TMP] = /tmp
;env[TMPDIR] = /tmp
;env[TEMP] = /tmp

; Additional php.ini defines, specific to this pool of workers. These settings
; overwrite the values previously defined in the php.ini. The directives are the
; same as the PHP SAPI:
;   php_value/php_flag             - you can set classic ini defines which can
;                                    be overwritten from PHP call 'ini_set'.
;   php_admin_value/php_admin_flag - these directives won't be overwritten by
;                                     PHP call 'ini_set'
; For php_*flag, valid values are on, off, 1, 0, true, false, yes or no.

; Defining 'extension' will load the corresponding shared extension from
; extension_dir. Defining 'disable_functions' or 'disable_classes' will not
; overwrite previously defined php.ini values, but will append the new value
; instead.

;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
;php_flag[display_errors] = off
;php_admin_value[error_log] = /var/log/fpm-php.www.log
;php_admin_flag[log_errors] = on
;php_admin_value[memory_limit] = 32M

  1. 在php-fpm的配置文件中,有兩個指令非常重要蜂厅,就是"pm.max_children" 和 "request_terminate_timeout"

第一個指令"pm.max_children" 確定了php-fpm的處理能力匪凡,原則上時越多越好,但這個是在內(nèi)存足夠打的前提下掘猿,每開啟一個php-fpm進(jìn)程要占用近30M左右的內(nèi)存

如果請求訪問較多病游,那么可能會出現(xiàn)502,504錯誤稠通。對于502錯誤來說衬衬,屬于繁忙進(jìn)程而造成的,對于504來說改橘,就是客戶發(fā)送的請求在限定的時間內(nèi)沒有得到相應(yīng)滋尉,過多的請求導(dǎo)致“504 Gateway Time-out”。這里也有可能是服務(wù)器帶寬問題飞主。

另外一個需要注意的指令"request_terminate_timeout"狮惜,它決定php-fpm進(jìn)程的連接/發(fā)送和讀取的時間,如果設(shè)置過小很容易出現(xiàn)"502 Bad Gateway" 和 “504  Gateway  Time-out”碌识,默認(rèn)為0碾篡,就是說沒有啟用,不加限制筏餐,但是這種設(shè)置前提是你的php-fpm足夠健康开泽,這個需要根據(jù)實(shí)際情況加以限定。
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末魁瞪,一起剝皮案震驚了整個濱河市穆律,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌佩番,老刑警劉巖众旗,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異趟畏,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)滩租,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門赋秀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來利朵,“玉大人,你說我怎么就攤上這事猎莲∩艿埽” “怎么了?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵著洼,是天一觀的道長樟遣。 經(jīng)常有香客問我,道長身笤,這世上最難降的妖魔是什么豹悬? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮液荸,結(jié)果婚禮上瞻佛,老公的妹妹穿的比我還像新娘。我一直安慰自己娇钱,他們只是感情好伤柄,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著文搂,像睡著了一般适刀。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上煤蹭,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天笔喉,我揣著相機(jī)與錄音,去河邊找鬼疯兼。 笑死然遏,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的吧彪。 我是一名探鬼主播待侵,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼姨裸!你這毒婦竟也來了秧倾?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤傀缩,失蹤者是張志新(化名)和其女友劉穎那先,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體赡艰,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡售淡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片揖闸。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡揍堕,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出汤纸,到底是詐尸還是另有隱情衩茸,我是刑警寧澤,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布贮泞,位于F島的核電站楞慈,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏啃擦。R本人自食惡果不足惜囊蓝,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望议惰。 院中可真熱鬧慎颗,春花似錦、人聲如沸言询。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽运杭。三九已至夫啊,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間辆憔,已是汗流浹背撇眯。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留虱咧,地道東北人熊榛。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓崭篡,卻偏偏與公主長得像管嬉,于是被迫代替她去往敵國和親菌羽。 傳聞我的和親對象是個殘疾皇子排霉,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容