facebook twitter hatena line email

「Linux/phpインストール/php-fpm」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(インストール)
(インストール)
行9: 行9:
 
  # 32bit
 
  # 32bit
 
  yum -y install php-fpm.i686 --enablerepo=remi --enablerepo=remi-php56
 
  yum -y install php-fpm.i686 --enablerepo=remi --enablerepo=remi-php56
 +
yum -y install php-fpm.i386 --enablerepo=remi --enablerepo=remi-php56
  
 
==起動==
 
==起動==

2015年12月20日 (日) 14:22時点における版

php-fpmとは

nginxなどでphpを動かすために必要なphpのデーモン

インストール

yum install php-fpm --enablerepo=remi

php5.6の場合はこんな感じ

# 64bit
yum -y install php-fpm.x86_64 --enablerepo=remi --enablerepo=remi-php56
# 32bit
yum -y install php-fpm.i686 --enablerepo=remi --enablerepo=remi-php56
yum -y install php-fpm.i386 --enablerepo=remi --enablerepo=remi-php56

起動

/etc/rc.d/init.d/php-fpm start

自動起動

/sbin/chkconfig php-fpm on

設定ファイル

vi /etc/php-fpm.conf
vi /etc/php-fpm.d/www.conf

portは9000っぽい

vi /etc/php-fpm.d/www.conf
listen = 127.0.0.1:9000