美文网首页
安装PHP-swoole

安装PHP-swoole

作者: 胡乱唱歌ing | 来源:发表于2018-11-26 14:21 被阅读0次

安装hiredis

说明:避免使用redis连接池是出现PHP Fatal error: Uncaught Error: Class ‘swoole_redis’ not found in **********

hiredis下载地址:https://github.com/redis/hiredis/releases

进入源码目录后执行以下命令

make -j

sudo make install

sudo ldconfig 如果是mac 这句换成 sudo update_dyld_shared_cache

执行以下两条命令

C_INCLUDE_PATH=/usr/local/include/ export C_INCLUDE_PATH

LIBRARY_PATH=/usr/local/lib/ export LIBRARY_PATH

安装swoole

wget https://github.com/swoole/swoole-src/archive/v4.2.8.tar.gz

cd  swoole-src-4.2.8

sudo phpize (ubuntu没有安装phpize可执行命令:sudo apt-getinstall php-dev来安装phpize)

sudo ./configure --enable-async-redis

sudo make && make install

php.ini 添加swoole.so 

extension=swoole.so的路径

检查是否安装成功

php -m | grep swoole

相关文章

  • 安装PHP-swoole

    安装hiredis 说明:避免使用redis连接池是出现PHP Fatal error: Uncaught Err...

  • php-swoole安装

    PHP版本 7.2 / swoole版本 4.5 swoole是php的一个c扩展程序,能使php跑协程异步 首先...

  • ubuntu ppa PHP

    安装mysql 安装php 安装nginx 安装Chrome 安装dock 安装node 安装wine 官方源列表梯子

  • 从零开始在 Ubuntu  下部署 Django + uwsgi

    整体安装流程 安装 ubuntu ,安装 pip, 安装 uwsgi, 安装 django安装 nginx整个请求...

  • step one

    安装chrome 安装terminator 安装nodejs 安装apache2 安装php7 安装mysql 重...

  • centos安装lnmp,redis

    安装nginx 安装nginx源 安装nginx 启动nginx 安装MySQL5.7.* 安装mysql源 安装...

  • liunx实操(centOS 6.8)

    初始化 配置JDK 安装tomcat 安装maven 安装vsftpd 安装Nginx 安装mysql 安装git...

  • CentOS 7 下RabbitMQ 3.7 安装与配置

    首先安装Erlang20.2 安装准备 创建Yum源 Erlang安装 安装 验证 RabbitMQ安装 安装准备...

  • 在VirtualBox上使用Bosh部署Cloud Foundr

    安装Bosh 安装 VirtualBox 略 安装Bosh 安装完成后运行下面命令确认安装成功 安装依赖库 安装后...

  • ubuntu安装nginx

    安装依赖 安装gcc g++的依赖: 安装pcre库: 安装zlib库: 安装openssl: 安装nginx 首...

网友评论

      本文标题:安装PHP-swoole

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