Yum による php fpm のインストール方法: まず、「yum delete php php-common」コマンドを実行して、インストールされている php を削除し、次に「yum install php56w-fpm php56w-opcache」コマンドを実行して、php fpm をインストールします。
#Centos yum は php-fpm をインストールします。コンパイルしてインストールする必要はありません。
1、削除 1.1 . php が以前にコンパイルおよびインストールされている場合は、インストール場所に移動して直接削除します 一般的なインストール場所は /usr/local/php1.2 です。インストール前に yum を使用してインストールした場合は、
yum remove php php-common2 を実行します。 x 例:
CentOS/RHEL 6.x: yum install epel-release rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm Now you can install PHP 5.6’s mod_php SAPI (along with an opcode cache) by doing: yum install php56w php56w-opcache You can alternatively install PHP 5.6’s php-fpm SAPI (along with an opcode cache by doing: yum install php56w-fpm php56w-opcache備考 説明: yum install php56w php56w-opcache: opcache 拡張機能をインストールし、同じ方法で他の拡張機能もインストールします php -m:インストールされている拡張機能を表示します; whereis php: php-fpm のインストール場所を表示します; service php-pfm start: php-pfm サービスを開きます; pkill php -fpm: サービスを終了します; その他の関連知識については、
PHP 中国語 Web サイト
をご覧ください。以上がyumを使用してphp fpmをインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。