Swoole is an extension of PHP, so installing Swoole is essentially installing a PHP extension. Swoole only supports three operating systems: Linux, FreeBSD, and MacOS.
Recommended tutorials: "thinkphp" "swoole tutorial"
Installation preparation
Before installation You must ensure that the following software has been installed on the system
php-7.1 或更高版本 gcc-4.8 或更高版本 make autoconf
Generally, the first three have been installed, and the autoconf tool needs to be installed.
Linux:yum install autoconf Mac:brew install autoconf
Install the Swoole extension for PHP
1. Download Swoole
Download address: https://github.com/swoole/swoole-src /releases
Under normal circumstances, download the latest version.
2. Unzip it into the PHP extension directory. For example, my decompression path is:
/Applications/MAMP/bin/php/php7.2.10/include/php/ext/
The decompressed directory can be named swoole.
3. Enter the decompressed swoole directory and execute the phpize command. If the command is not added to the environment variable, you can execute the absolute path
sudo /Applications/MAMP/bin/php/php7.2.10/bin/phpize
Since there are multiple PHPs on my computer version, so I specified the version I'm using now to execute the command.
Command path: /php installation directory/bin/phpize
4. Execute command:
./configure --with-php-config=/Applications/MAMP/bin/php/php7.2.10/bin/php-config --enable-openss --enable-http2
The specific path is modified according to the actual situation.
5. After executing the command:
make && make install
After success, the installation address will appear. For example, my address is:
/Applications/MAMP/bin/php/php7.2.10/lib/php/extensions/no-debug-non-zts-20170718/
Enter this directory and see if there is swoole in it. so.
6. Add the swoole extension to php.ini.
Be sure to select the currently used PHP version configuration file, which can be viewed using the php --ini command. Mine is at:
/Applications/MAMP/bin/php/php7.2.10/conf/php.ini
Open the php.ini file and add the extension:
extension=”/Applications/MAMP/bin/php/php7.2.10/lib/php/extensions/no-debug-non-zts-20170718/swoole.so”
If you use the MAMP integrated environment, in addition to modifying the above php.ini file, you also need to modify the integrated environment dynamic configuration php.ini file, you can click the arrow after the version in the php option of the panel, or File -> Edit Template -> PHP -> PHP 7.xx -> php.ini to modify it.
7. After the installation is complete, execute the command:
php -m
to see if there is a swoole module in the list. If so, the installation is successful.
Execute the php --ri swoole command to view swoole related information.
8. Test
Enter the following path, and modify it according to the actual situation:
/Applications/MAMP/bin/php/php7.2.10/include/php/ext/swoole/examples/server
There is an echo.php file in it. After opening it, you will see a line of code:
$serv = new swoole_server("0.0.0.0", 9501);
means to listen to all IPs, the port number is 9501.
In the command line, enter the command:
php echo.php
If the command is being executed, there is no cursor, and no error is reported, then create a new command window and enter the following command:
Linux: netstat -anp | grep 9501 Mac: ps -ef | grep 9501
You can see that this process is already executing and has a pid process number. The test is successful!
Install the Think-Swoole extension in the ThinkPHP framework
After the PHP extension is installed, you need to install the extension in the framework.
First, we need to download the ThinkPHP framework (Think-Swoole extension currently supports ThinkPHP 5.1 and ThinkPHP 6. In order to demonstrate some new functions, the latest ThinkPHP 6 framework will be used in subsequent articles), and then go to the framework Execute the Think-Swoole installation command in the root directory:
ThinkPHP 5.1 installation command
ThinkPHP 6 installation command
After the installation is completed, execute the command:
php think swoole
If you see the prompt in the picture below, the plug-in can be used normally:
Error 1:
I reported an error when I installed and executed the above command, check An error message shows that the Xdebug plug-in cannot be used, so just close it. In the MAMP environment, it can be turned off directly in the php options.
Error 2:
[Swoole\Exception] failed to listen server port[127.0.0.1:80], Error: Permission denied[13]
Open app/config/swoole.php, you can see that the port corresponds to port 80, because in Linux and Mac, only super administrators have ports 1024 and below. Use permissions, so you can change the port to 9501 (the default host is 127.0.0.1, which means monitoring the local address, here it is changed to 0.0.0.0, which means monitoring all addresses).
After the swoole service is turned on, let’s test it. Enter 127.0.0.1:9501 in the browser, and you can access it normally:
At the same time, this also shows that, Swoole comes with HTTP Server, which helps us open an http service, which is equivalent to Apache and Nginx.
At this point, the Think-Swoole plug-in installation is completed.
The above is the detailed content of Think-Swoole tutorial installation. For more information, please follow other related articles on the PHP Chinese website!

TP6Think-SwooleRPC服务的性能优化与调试一、引言随着互联网的迅猛发展,分布式计算已经成为了现代软件开发中不可或缺的一部分。在分布式计算中,RPC(RemoteProcedureCall,远程过程调用)是一种常用的通信机制,通过它可以实现跨网络的方法调用。Think-Swoole作为一个高性能的PHP框架,可以很好地支持RPC服务。但是

TP6Think-SwooleRPC服务的数据加密与身份认证机制随着互联网的快速发展,越来越多的应用程序需要进行远程调用,以实现不同模块之间的数据交互和功能调用。在这样的背景下,RPC(RemoteProcedureCall)就成了一种重要的通信方式。TP6Think-Swoole框架可以实现高性能的RPC服务,本文将介绍如何通过数据加密与身份认证

TP6(ThinkPHP6)是一款基于PHP的开源框架,具有高可扩展性与分布式部署的特点。本文将介绍如何使用TP6配合Swoole扩展,搭建一个具备高可扩展性的RPC服务,并给出具体的代码示例。首先,我们需要安装TP6和Swoole扩展。在命令行中执行以下命令:composerrequiretopthink/thinkpeclinstallswo

TP6Think-Swoole的RPC服务与消息队列的集成与应用在现代软件开发中,RPC服务(RemoteProcedureCall)和消息队列是常见的技术手段,用于实现分布式系统中的服务调用和异步消息处理。在TP6框架中集成Think-Swoole组件,可以轻松实现RPC服务和消息队列的功能,并且提供了简洁的代码示例,方便开发者理解和应用。一、RPC

TP6Think-SwooleRPC服务的高并发请求处理与调度随着互联网技术的不断发展,网络应用的并发请求处理和调度成为了一个重要的挑战。在TP6框架中,使用Think-Swoole扩展可以实现RPC(RemoteProcedureCall)服务的高并发请求处理与调度。本文将介绍如何在TP6框架中搭建一个基于Think-Swoole的RPC服务,并提

TP6Think-SwooleRPC服务的安全防护与授权验证随着云计算和微服务的兴起,远程过程调用(RPC)成为了开发者们日常工作中必不可少的一部分。在开发RPC服务时,安全防护和授权验证是非常重要的,以确保只有合法的请求可以访问和调用服务。本文将介绍如何在TP6Think-Swoole框架中实现RPC服务的安全防护和授权验证。一、RPC服务的基本概念

TP6Think-SwooleRPC服务的性能测试与性能调优一、引言随着互联网的高速发展,分布式系统的应用越来越广泛。而在分布式系统中,RPC(远程过程调用)是一种常见的通信机制,它可以让不同节点的服务相互调用,实现分布式系统的协同工作。在TP6框架中,Think-Swoole作为一种高性能的Swoole驱动,提供了方便的RPC服务支持。本文主要介绍了T

TP6Think-Swoole构建的RPC服务与微服务架构实践案例引言:随着互联网的快速发展以及业务规模的扩大,传统的单体架构已经无法满足大规模业务场景的需求。因此,微服务架构应运而生。在微服务架构中,RPC(RemoteProcedureCall)服务是实现服务间通信的一种重要方式。通过RPC服务,各个微服务之间可以方便、高效地互相调用。在本篇文章中


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
