安装环境
1、下载安装包
$ 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
$ cd /etc/php.d/
$ sudo vim swoole.ini
; Enable xsl extension module
extension=swoole.so
- 重启
Apache
或Nginx
服务(php-fpm
服务也要重启)。
- 查看安装情况
$ php -m |grep swoole
swoole
网友评论