這篇文章主要介紹“centos6.8如何編譯安裝php”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“centos6.8如何編譯安裝php”文章能幫助大家解決問題。
專注于為中小企業(yè)提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)長壽免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了近千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
centos6.8編譯安裝php的方法:1、通過“yum -y install”命令安裝依賴;2、拷貝配置文件;3、添加環(huán)境變量;4、執(zhí)行“source /etc/profile”命令;5、添加自啟動(dòng),然后重啟php服務(wù)即可。
centOS6.8,centOS7編譯安裝PHP:
我在centOS上安裝了7次PHP,總結(jié)出來的centOS6.8,ccentOS7都能用的編譯安裝PHP的方法。久病成良醫(yī)的感覺,剛開始安不上不要著急,多安幾次就有經(jīng)驗(yàn)了
安裝依賴:
yum -y install gd-devel zlib-devel libjpeg-devel libpng-devel libiconv-devel freetype-devel libxml2 libxml2-devel openssl openssl-devel curl-devel libxslt-devel libmcrypt-devel mhash mcrypt
無法自動(dòng)安裝的網(wǎng)上搜手動(dòng)安裝的教程,其實(shí)基本不會(huì)出錯(cuò)
進(jìn)入本地目錄:cd /usr/local
下載PHP7.1.5:wget http://am1.php.net/distributions/php-7.1.5.tar.gz
解壓縮:tar zxvf php-7.1.5.tar.gz
進(jìn)入解壓目錄:cd php-7.1.5
編譯:./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-fpm-user=www --with-fpm-group=www --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-mcrypt --with-gd --enable-gd-jis-conv --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-opcache --with-libmbfl --with-onig --enable-pdo --with-MySQLi=mysqlnd --with-pdo-mysql=mysqlnd --with-pdo-mysql --enable-mysqlnd-compression-support --with-pear --enable-maintainer-zts --enable-session --with-gettext
安裝目錄是/usr/local/php
編譯完成后會(huì)看到:Thank you for using PHP.
之后執(zhí)行安裝命令:
make
make install
之后拷貝配置文件(當(dāng)前還在php7.1.5文件夾下,不要用mv命令,這些配置文件以后還可以用不要?jiǎng)h):
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
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 sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm(這個(gè)很重要)
添加環(huán)境變量:
echo 'export PATH=/usr/local/php/bin:/usr/local/php/sbin:$PATH'>> /etc/profile
加載環(huán)境變量:source /etc/profile (我的習(xí)慣是虛擬機(jī)開機(jī)后先執(zhí)行這個(gè)命令,會(huì)避免很多麻煩)
執(zhí)行到這里,運(yùn)行php -v就能看到安裝的PHP的版本了
添加自啟動(dòng):
chkconfig --add php-fpm
chkconfig php-fpm on
chkconfig --list php-fpm
加權(quán)限:chmod 755 /etc/init.d/php-fpm
啟動(dòng)PHP:/etc/init.d/php-fpm start
查看PHP服務(wù)狀態(tài):/etc/init.d/php-fpm status
停止PHP服務(wù):/etc/init.d/php-fpm stop
重啟php服務(wù):/etc/init.d/php-fpm restart
php的配置文件是/usr/local/php/lib/php.ini 以后安裝擴(kuò)展了可以在這里引用。
關(guān)于“centos6.8如何編譯安裝php”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。