您好,登錄后才能下訂單哦!
這篇文章主要介紹“centos6.8如何編譯安裝php”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“centos6.8如何編譯安裝php”文章能幫助大家解決問題。
centos6.8編譯安裝php的方法:1、通過“yum -y install”命令安裝依賴;2、拷貝配置文件;3、添加環境變量;4、執行“source /etc/profile”命令;5、添加自啟動,然后重啟php服務即可。
centOS6.8,centOS7編譯安裝PHP:
我在centOS上安裝了7次PHP,總結出來的centOS6.8,ccentOS7都能用的編譯安裝PHP的方法。久病成良醫的感覺,剛開始安不上不要著急,多安幾次就有經驗了
安裝依賴:
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
無法自動安裝的網上搜手動安裝的教程,其實基本不會出錯
進入本地目錄: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
進入解壓目錄: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
編譯完成后會看到:Thank you for using PHP.
之后執行安裝命令:
make
make install
之后拷貝配置文件(當前還在php7.1.5文件夾下,不要用mv命令,這些配置文件以后還可以用不要刪):
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(這個很重要)
添加環境變量:
echo 'export PATH=/usr/local/php/bin:/usr/local/php/sbin:$PATH'>> /etc/profile
加載環境變量:source /etc/profile (我的習慣是虛擬機開機后先執行這個命令,會避免很多麻煩)
執行到這里,運行php -v就能看到安裝的PHP的版本了
添加自啟動:
chkconfig --add php-fpm
chkconfig php-fpm on
chkconfig --list php-fpm
加權限:chmod 755 /etc/init.d/php-fpm
啟動PHP:/etc/init.d/php-fpm start
查看PHP服務狀態:/etc/init.d/php-fpm status
停止PHP服務:/etc/init.d/php-fpm stop
重啟php服務:/etc/init.d/php-fpm restart
php的配置文件是/usr/local/php/lib/php.ini 以后安裝擴展了可以在這里引用。
關于“centos6.8如何編譯安裝php”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。