這篇文章主要介紹了安裝php7.0.5的方法是什么,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比金川網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式金川網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋金川地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。
php7.0.5的安裝方法:首先下載“php-7.0.5.tar.gz”;然后通過命令“yum install epel-release”更新擴(kuò)展包;接著執(zhí)行編譯命令;最后修改配置文件即可。
PHP7.0正式版也出來了,今天編譯安裝了一下,寫下安裝步驟,我是在centos6.6 環(huán)境中編譯的,如下:
yum install epel-release //擴(kuò)展包更新包 yum update //更新yum源
然后在執(zhí)行如下命令
yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers libmcrypt libmcrypt-devel libXpm-devel
make & make install
./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt=/usr/local/libmcrypt --with-zlib --enable-mbstring --enable-pcntl --with-openssl --enable-soap --with-pear --with-png-dir --with-pcre-regex --enable-MySQLnd \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-mysql-sock=/var/lib/mysql/mysql.sock --with-gd --with-jpeg-dir=/usr/lib --enable-gd-native-ttf --with-gettext --with-curl --enable-sockets --enable-bcmath --enable-xml --with-bz2 --enable-zip --with-freetype-dir=/usr/include/freetype2/
上述命令中需要注意的是
--with-mysqli 參數(shù) 指定的是 mysql所在的bin 文件路徑如:/usr/bin/mysql_config
--with-freetype-dir 指定的路徑
是 /usr/include/freetype2/ 如果你是yum 安裝的 freetype2 的話
其他的根據(jù)你自己實(shí)際需要增刪即可
# cp php.ini-development /usr/local/php/lib/php.ini # cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf# cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf # cp -R ./sapi/fpm/php-fpm /etc/init.d/php-fpm
需要注意的是php7中www.conf這個(gè)配置文件配置phpfpm的端口號(hào)等信息,如果你修改默認(rèn)的9000端口號(hào)需在這里改,再改nginx的配置
啟動(dòng)
# /etc/init.d/php-fpm
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享安裝php7.0.5的方法是什么內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細(xì)的解決方法等著你來學(xué)習(xí)!