您好,登錄后才能下訂單哦!
這篇文章主要介紹了php5.5安裝的方法,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
php5.5安裝方法:首先下載PHP源碼包;然后添加epel源,并創(chuàng)建www用戶;接著通過(guò)“cd /usr/local/src/php-5.5.15/”等命令進(jìn)行編譯安裝;最后修改相應(yīng)的配置文件即可。
php5.5編譯安裝
系統(tǒng)環(huán)境:centos6.5
PHP包:5.5.15
https://wiki.swoole.com/wiki/page/177.html
下載 PHP 源碼包
wget http://cn2.php.net/distributions/php-5.5.15.tar.bz2 tar xf php-5.5.15.tar.bz2 -C /usr/local/src/ 配置文件: /usr/local/php/etc/php-fpm.conf 配置pid: /var/run/php-fpm/php-fpm.pid 錯(cuò)誤日志:error_log=/var/log/php-fpm.log /etc/php.ini
添加 epel 源
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm yum install gcc bison bison-devel zlib-devel libmcrypt-devel mcrypt mhash-devel openssl-devel libxml2-devel libcurl-devel bzip2-devel readline-devel libedit-devel
創(chuàng)建 www 用戶
groupadd www useradd -g www -s /sbin/nologin -M www
編譯安裝
cd /usr/local/src/php-5.5.15/ ./configure \ --prefix=/usr/local/php \ --with-config-file-path=/etc \ --enable-inline-optimization \ --disable-debug \ --disable-rpath \ --enable-shared \ --enable-opcache \ --enable-fpm \ --with-fpm-user=www \ --with-fpm-group=www \ --with-mysql=/usr/local/mysql \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-gettext \ --enable-mbstring \ --with-iconv \ --with-mcrypt \ --with-mhash \ --with-openssl \ --enable-bcmath \ --enable-soap \ --with-libxml-dir \ --enable-pcntl \ --enable-shmop \ --enable-sysvmsg \ --enable-sysvsem \ --enable-sysvshm \ --enable-sockets \ --with-curl \ --with-zlib \ --enable-zip \ --with-bz2 \ --with-readline \ --without-sqlite3 \ --without-pdo-sqlite \ --with-pear
你的 Web Server
使用的 Apache 請(qǐng)?zhí)砑宇愃疲?/p>
--with-apxs2=/usr/local/apache/bin/apxs 參數(shù) --prefix=/usr/local/php \ 安裝路徑 --with-config-file-path=/etc \ php.ini配置文件路徑 --enable-inline-optimization \ 優(yōu)化項(xiàng) --disable-debug \ --disable-rpath \ --enable-shared \ --enable-opcache \ 啟用 opcache,默認(rèn)為 ZendOptimizer+(ZendOpcache) --enable-fpm \ FPM --with-fpm-user=www \ --with-fpm-group=www \ --with-mysql=mysqlnd \ MySQL --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-gettext \ 國(guó)際化與字符編碼支持 --enable-mbstring \ --with-iconv \ --with-mcrypt \ 加密擴(kuò)展 --with-mhash \ --with-openssl \ --enable-bcmath \ 數(shù)學(xué)擴(kuò)展 --enable-soap \ Web 服務(wù),soap 依賴 libxml --with-libxml-dir \ --enable-pcntl \ 進(jìn)程,信號(hào)及內(nèi)存 --enable-shmop \ --enable-sysvmsg \ --enable-sysvsem \ --enable-sysvshm \ --enable-sockets \ socket & curl --with-curl \ --with-zlib \ 壓縮與歸檔 --enable-zip \ --with-bz2 \ --with-readline \ GNU Readline 命令行快捷鍵綁定 --without-sqlite3 \ --without-pdo-sqlite \ --with-pear 更多 PHP 擴(kuò)展與應(yīng)用庫(kù)
編譯安裝
make -j4 make install
重新安裝:
# make clean # make clean all # ./configure ... # make -j4 # make install
配置 PHP
配置文件
# cp php.ini-development /etc/php.ini
php-fpm 服務(wù)
# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf # cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm # chmod +x /etc/init.d/php-fpm
啟動(dòng) php-fpm
# service php-fpm start Starting php-fpm done vi ~/.bash_profile PATH=$PATH:$HOME/bin
改為:
PATH=$PATH:$HOME/bin:/usr/local/php/bin
使 PHP 環(huán)境變量生效:# . ~/.bash_profile
查看看 PHP 版本:php -v
設(shè)置開(kāi)機(jī)自啟
echo service php-fpm start >> /etc/rc.local
rc.local 也可能出現(xiàn)在/etc/init.d的目錄下
添加 yum 源
CentOS 6.x 的源
# rpm -Uvh http://download.Fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
安裝 PHP
# yum install --enablerepo=remi,remi-php56 php php-opcache php-pecl-apcu php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-pdo php-pear php-fpm php-cli php-xml php-bcmath php-process php-gd php-common
安裝5.6版本為remi-php56,安裝5.5版本為remi-php55
在Linux中將php-fpm配置成服務(wù)的方法
1.配置php-fpm.conf
vi /usr/local/php/etc/php-fpm.conf
php-fpm.pid 目錄必須指向:/usr/local/php/var/run/php-fpm.pid
2.拷貝php-fpm腳本至/etc/init.d目錄
cp /home/soft/php-5.3.15/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
3.設(shè)置權(quán)限并啟動(dòng)php-fpm:
chmod 755 /etc/init.d/php-fpm /etc/init.d/php-fpm start chkconfig –add php-fpm
最后,給出php-fpm以服務(wù)的方式啟動(dòng)、停止和重啟:
service php-fpm start service php-fpm stop service php-fpm reload
查看版本信息
php -v
php安裝bcmath模塊
1 yum -y install php-bcmath
find / -name bcmath.so
2 找到php的配置文件
php -i |grep php.ini
加入代碼:extension=bcmath.so
3運(yùn)行php-m 如果出現(xiàn)
php warning: Module 'bcmath' already loaded in unknow on line 0
說(shuō)明多次加載了bcmath模塊,步驟二不用了。
遇到安裝版本庫(kù)文件失敗的情況:
安裝高版本的php:使用yum源,啟用remi-php56,安裝擴(kuò)展時(shí)候報(bào)錯(cuò):
1 yum -y install php-gd --skip-broken
2yum源的問(wèn)題,選擇的yum源和系統(tǒng)版本對(duì)不上
yum clean all rpm --rebuilddb yum update
或者換個(gè)yum源
yum install php-gd --enablerepo=remi-php56
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享php5.5安裝的方法內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問(wèn)題就找億速云,詳細(xì)的解決方法等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。