CentOS 7上配置php-fpm

栏目: 服务器 · 发布时间: 7年前

内容简介:CentOS 7上配置php-fpm

CentOS 7 上配置 php-fpm

httpd-2.4: rpm 包默认编译支持了 fcgi 模块;

php-fpm包:专用于将 php 运行于 fpm 模式;

php-mbstring包:多字节安装 ( 显示中文 )

php-mcrypt包:加密解密功能

php-mysql包:连接 mysql

配置文件:

服务配置文件: /etc/php-fpm.conf,  /etc/php-fpm.d/*.conf

php环境配置文件: /etc/php.ini, /etc/php.d/*.ini              

连接池:

pm = static|dynamic

static:固定数量的子进程; pm.max_children

dynamic:子进程数据以动态模式管理;

pm.start_servers

pm.min_spare_servers

pm.max_spare_servers

pm.max_requests = 500

创建 session 目录,并确保运行 php-fpm 进程的用户对此目录有读写权限;

#mkdir  /var/lib/php/session

#chown apache.apache /var/lib/php/session                  

(1) 配置 httpd ,添加 /etc/httpd/conf.d/fcgi.conf 配置文件,内容类似:  

DirectoryIndex  index.php

ProxyRequests  Off

ProxyPassMatch  ^/(.*\.php)$   fcgi://127.0.0.1:9000/var/www/html/$1     

(2) 虚拟主机配置

DirectoryIndex  index.php

<VirtualHost  *:80>

ServerName  www.b.net

DocumentRoot  /apps/vhosts/b.net

ProxyRequests  Off

ProxyPassMatch  ^/(.*\.php)$  fcgi://127.0.0.1:9000/apps/vhosts/b.net/$1( 注: $1=(.*\.php); 后向引用

                             <Directory  “/apps/vhosts/b.net”>

Options  None

AllowOverride  None

Require  all  granted

</Directory>

</VirtualHost>                                 

安装 mariadb-server 服务:

    yum  -y  install  mariadb-server

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

安装 httpd 服务:

CentOS 7上配置php-fpm CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

登录主页面:

CentOS 7上配置php-fpm

添加主页面信息:

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm

CentOS 7上配置php-fpm


以上所述就是小编给大家介绍的《CentOS 7上配置php-fpm》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

How to Solve It

How to Solve It

Zbigniew Michalewicz、David B. Fogel / Springer / 2004-03-01 / USD 59.95

This book is the only source that provides comprehensive, current, and detailed information on problem solving using modern heuristics. It covers classic methods of optimization, including dynamic pro......一起来看看 《How to Solve It》 这本书的介绍吧!

URL 编码/解码
URL 编码/解码

URL 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具