您好,登錄后才能下訂單哦!
這篇文章主要介紹如何編譯安裝swoole,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
Swoole擴(kuò)展是按照PHP標(biāo)準(zhǔn)擴(kuò)展構(gòu)建的。使用phpize來生成編譯檢測(cè)腳本,./configure來做編譯配置檢測(cè),make進(jìn)行編譯,make install進(jìn)行安裝。
請(qǐng)下載releases版本的swoole,直接從github主干上拉取最新代碼可能會(huì)編譯不過
如無特殊需求, 請(qǐng)務(wù)必編譯安裝swoole的最新版本
如果當(dāng)前用戶不是root,可能沒有PHP安裝目錄的寫權(quán)限,安裝時(shí)需要sudo或者su
如果是在git分支上直接git pull更新代碼,重新編譯前務(wù)必要執(zhí)行make clean
安裝前必須保證系統(tǒng)已經(jīng)安裝了下列軟件:
php-7.0 或更高版本
gcc-4.8 或更高版本
make
autoconf
下載地址
https://github.com/swoole/swoole-src/releases
http://pecl.php.net/package/swoole
http://git.oschina.net/swoole/swoole
新手編譯示例:
cd swoole phpize (ubuntu 沒有安裝phpize可執(zhí)行命令:sudo apt-get install php-dev來安裝phpize) ./configure make sudo make install
進(jìn)階完整編譯示例:
以下腳本會(huì)下載并編譯master分支的源碼, 需保證你已安裝所有依賴, 否則會(huì)遇到各種依賴錯(cuò)誤
mkdir -p ~/build && \ cd ~/build && \ rm -rf ./swoole-src && \ curl -o ./tmp/swoole.tar.gz https://github.com/swoole/swoole-src/archive/master.tar.gz -L && \ tar zxvf ./tmp/swoole.tar.gz && \ mv swoole-src* swoole-src && \ cd swoole-src && \ phpize && \ ./configure \ --enable-coroutine \ --enable-openssl \ --enable-http2 \ --enable-async-redis \ --enable-sockets \ --enable-mysqlnd && \ make clean && make && sudo make install
編譯安裝成功后,修改php.ini加入
extension=swoole.so
通過php -m或phpinfo()來查看是否成功加載了swoole.so,如果沒有可能是php.ini的路徑不對(duì),可以使用php --ini來定位到php.ini的絕對(duì)路徑。
以上是“如何編譯安裝swoole”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。