您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)linux如何安裝php7,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
linux如何安裝php7?
1、安裝依賴包
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
2、下載安裝包
cd /usr/local2 wget https://www.php.net/distributions/php-7.1.31.tar.gz
3、解壓
tar -zxvf php-7.1.31.tar.gz
4、檢查當(dāng)前的環(huán)境是否滿足要安裝軟件的依賴關(guān)系
cd php-7.1.31
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php --enable-mbstring --enable-ftp --with-gd --with-jpeg-dir=/usr --with-png-dir=/usr --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --without-pear --disable-phar --enable-sockets --with-freetype-dir=/usr --with-zlib --with-libxml-dir=/usr --with-xmlrpc --enable-zip --enable-fpm --enable-xml --enable-sockets --with-gd --with-zlib --with-iconv --enable-zip --with-freetype-dir=/usr/lib/ --enable-soap --enable-pcntl --enable-cli --with-curl
5、編譯安裝
make make install
6、在之前編譯的源碼包中,找到 php.ini-production,復(fù)制到/usr/local/php下,并改名為php.ini:
cp php.ini-production /usr/local/php/php.ini
[可選項(xiàng)] 設(shè)置讓PHP錯(cuò)誤信息打印在頁面上
vi /usr/local/php/php.ini
將Off改成On
8.復(fù)制啟動(dòng)腳本
$ cp ./sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm $ chmod +x /etc/init.d/php-fpm
修改php-fpm配置文件:
$ cd /usr/local/php/etc $ cp php-fpm.conf.default php-fpm.conf $ vi php-fpm.conf
去掉 pid = run/php-fpm.pid 前面的分號(hào)
$ cd php-fpm.d $ cp www.conf.default www.conf $ vi www.conf
修改user和group的用戶為當(dāng)前用戶(也可以不改,默認(rèn)會(huì)添加nobody這個(gè)用戶和用戶組)
9.啟動(dòng)PHP
$ /etc/init.d/php-fpm start #php-fpm啟動(dòng)命令 $ /etc/init.d/php-fpm stop #php-fpm停止命令 $ /etc/init.d/php-fpm restart #php-fpm重啟命令 $ ps -ef | grep php 或者 ps -A | grep -i php #查看是否已經(jīng)成功啟動(dòng)PHP
10.開機(jī)自啟動(dòng)
vi /etc/rc.local
將 /etc/init.d/php-fpm start 添加進(jìn)去chmod +x /etc/rc.d/rc.local
關(guān)于“l(fā)inux如何安裝php7”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。