美文网首页
linux上编译swoole

linux上编译swoole

作者: bug_ling | 来源:发表于2020-01-03 10:50 被阅读0次

    1、下载并解压

    wget https://github.com/swoole/swoole-src/archive/v4.4.14.tar.gz -O swoole-4.4.14.tar.gz

    tar -zvxf swoole-4.4.14.tar.gz

    cd swoole-4.4.14

    2、编译

    phpize - 生成php编译配置

    ./configure --enable-openssl --enable-http2 --enable-sockets --enable-mysqlnd

    make && make install

    3、配置php.ini

    php -i | grep extension_dir - 查看PHP扩展的位置

    php --ini - 查看php.ini的位置

    php.ini 新增 extension=swoole.so

    注意:在编译php时,一定要把php.ini放在指定的路径下

    参考地址:

    https://wiki.swoole.com/wiki/page/6.html

    相关文章

      网友评论

          本文标题:linux上编译swoole

          本文链接:https://www.haomeiwen.com/subject/swbooctx.html