「Linux/phpインストール/php-fpm」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→インストール) |
(→インストール) |
||
行5: | 行5: | ||
yum install php-fpm --enablerepo=remi | yum install php-fpm --enablerepo=remi | ||
php5.6の場合はこんな感じ | php5.6の場合はこんな感じ | ||
− | # | + | # 64bit |
yum -y install php-fpm.x86_64 --enablerepo=remi --enablerepo=remi-php56 | yum -y install php-fpm.x86_64 --enablerepo=remi --enablerepo=remi-php56 | ||
# 32bit | # 32bit |
2015年12月20日 (日) 14:21時点における版
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
起動
/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