這篇文章將為大家詳細(xì)講解有關(guān)如何在yum中安裝php-fpm,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)專注于卡若網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供卡若營(yíng)銷型網(wǎng)站建設(shè),卡若網(wǎng)站制作、卡若網(wǎng)頁(yè)設(shè)計(jì)、卡若網(wǎng)站官網(wǎng)定制、微信平臺(tái)小程序開(kāi)發(fā)服務(wù),打造卡若網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供卡若網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
yum安裝php-fpm的方法:首先配置好yum源;然后安裝PHP;最后執(zhí)行命令“yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm”安裝“php-fpm”即可。
CentOS yum安裝PHP5.6以及php-fpm
簡(jiǎn)單介紹一下,如何在CentOS上安裝升級(jí)PHP5.6。
配置yum源
追加CentOS 6.5的epel及remi源。
以下是CentOS 7.0的源。
yum install epel-release rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum install epel-release rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
安裝PHP5.6
yum源配置好了,下一步就安裝PHP5.6。
yum install -y --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-MySQLnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-fpm
注意:bcmath 不安裝mcrypt有時(shí)候用不了 ,,
用PHP命令查看版本。
php --version PHP 5.6.0 (cli) (built: Sep 3 2014 19:51:31) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2014 Zend Technologies with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies with Xdebug v2.2.5, Copyright (c) 2002-2014, by Derick Rethans
在這里安裝的版本是PHP5.6.0,細(xì)心的用戶可能已經(jīng)發(fā)現(xiàn)ZendGuardLoader變成Zend OPcahe了。
對(duì)從PHP5.5開(kāi)始PHP代碼緩存從APC變成了Zend OPcache了。
如果配置nginx的話,還需要安裝php-fpm
yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm
啟動(dòng)PHP-FPM服務(wù):
systemctl start php-fpm.service
關(guān)于如何在yum中安裝php-fpm就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。