Centos7 安装swoole扩展

安装环境

  • centos 7.2
  • php 7.2.5

1、下载安装包

  • 下载地址https://github.com/swoole/swoole-src/archive/v2.0.6.tar.gz
$ sudo wget https://github.com/swoole/swoole-src/archive/v2.0.6.tar.gz
$ sudo tar zxvf swoole-src-2.0.6.tar.gz
$ cd swoole-src-2.0.6
  • 编译安装
    使用安装 php 时生成的 phpize 来生成 configure 配置文件(可以用 whereis phpize查看路径,其中 php-config 和 phpize 所在的目录是相同的)
$ sudo /usr/bin/phpize
$ sudo ./configure --with-php-config=/usr/bin/php-config
$ sudo make && sudo make install
  • 开启swoole扩展
$ cd /etc/php.d/
$ sudo vim swoole.ini
; Enable xsl extension module
extension=swoole.so
  • 重启ApacheNginx服务(php-fpm服务也要重启)。
  • 查看安装情况
$ php -m |grep swoole
swoole

你可能感兴趣的:(Centos7 安装swoole扩展)