CentOS7でphp7.2をインストールするメモ
操作コマンド下記
1.PHP 7.2のインストール $ yum info --enablerepo=remi,remi-php72 php $ yum install --enablerepo=remi,remi-php72 php 2.phpの拡張機能のインストール $ yum -y install --enablerepo=remi --enablerepo=remi-php72 php php-opcache php-devel php-mbstring php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-gd php-intl php-symfony php php-pdo php-xml php-tokenizer php-pear php-zip php-fpm 3.www.confの編集 $ vim /etc/php-fpm.d/www.conf user = nginx group = nginx listen = /var/run/php-fpm.sock listen.owner = nginx listen.group = nginx ;listen = 127.0.0.1:9000 4.php-fpmの再起動 $ systemctl restart php-fpm