linux 搭建swoole
Posted azzy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 搭建swoole相关的知识,希望对你有一定的参考价值。
1安装依赖包
yum -y install gcc gcc-c++ autoconf automake
yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel
2安装Git
yum install git
3 安装clone swoole源码
git clone https://github.com/swoole/swoole-src.git
4解压编译
cd swoole-src
phpize
./configure
make && make install
5、修改php.ini配置文件(加在前面没有注释符的任意一行)
extension_dir = "/usr/lib64/php/modules/"
extension=swoole.so
6重启 php
systemctl restart nginx.service
systemctl restart php-fpm.service
以上是关于linux 搭建swoole的主要内容,如果未能解决你的问题,请参考以下文章
HttpServer 1 框架搭建 Swoole 环境和开发环境