swoole은 Linux나 ios 등 유닉스 계열 환경에서 구성되었으며, 윈도우 환경에서는 지원하지 않습니다. 잘.
tar 컴파일 및 설치 참고: https://www.jianshu.com/p/0c0d19c36ed0
컴파일 및 설치 참고: http://www. hu-rong.com/article/323
https://blog.csdn.net/q85795362/article/details/85256206
설치 단계 swoole은 다음과 같습니다:
준비:
1. Linux를 확인하세요(여기서는 CentOS7.6을 예로 사용했습니다.) ) 버전:
[root@VM_6_21_centos ~]# cat /etc/redhat-release
2. PHP 버전을 확인하세요
[root@VM_6_21_centos ~]# php -v
3. PHP가 설치된 확장 프로그램
[root@VM_6_21_centos ~]# php -m
4을 확인하세요. 현재 위치: #🎜🎜 #
[root@VM_6_21_centos ~]# pwd
[root@VM_6_21_centos ~]# yum install php-devel # 通过php的工具包添加扩展,运行命令:phpize yum install glibc-headers yum install gcc-c++ yum install git # git clone yum -y install nghttp2
php.ini 位置:/usr/local/php/etc/php.ini 或者 whereis php.ini
설치 시작
1. 홈 디렉터리에 CD를 넣고 swoole[root@VM_6_21_centos ~]# git clone https://github.com/swoole/swoole-src.git [root@VM_6_21_centos ~]# ls [root@VM_6_21_centos ~]# mkdir /usr/local/swoole/
[root@VM_6_21_centos ~]# cp -r /root/swoole-src/. /usr/local/swoole/
[root@VM_6_21_centos ~]# cd /usr/local/swoole/ [root@VM_6_21_centos swoole]# ./configure --with-php-config=/usr/local/php/bin/php-config --enable-sockets --enable-openssl --enable-http2 # 配置 [root@VM_6_21_centos swoole]# make clean && make && sudo make install # 编译安装
[root@VM_6_21_centos ~]# vim /usr/local/php/etc/php.ini 配置: extension =/usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/swoole.so
修改了php配置需要平滑启动php-fpm [root@VM_6_21_centos ~]# ps -aux | grep php-fpm 找到phpfpm 的master process的进程id [root@VM_6_21_centos ~]# kill -SIGUSR2 process_id #实现平滑重启php-fpm
5. 프로세스 보기: http://www.hu-rong.com/article/323
PHP 중국어 웹사이트, 다수 무료
swoole 입문 튜토리얼
위 내용은 한 기사에서 Swoole 설치 방법 알아보기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!