Join 4,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-25.2.0 | composer require openswoole/core:22.1.5
Important: Please make sure you have followed the prerequisites guide before trying to install Open Swoole, this ensures you have an up-to-date system and all the required third-party packages and libraries.
You can install Open Swoole binary releases via the Official Open Swoole Ubuntu PPA. For example, on Ubuntu or Debian:
You can install Open Swoole binary releases via the Remi's RPM repository.
Install Epel and Remi Repo in RHEL:
Install Remi Repo in Fedora:
Open Swoole is released as a PECL
package and can be installed using the command line from the binaries. This is the easiest and quickest way to get working with Open Swoole.
Or to install a specific version using PECL:
It is recommend to use Ubuntu on WSL to use Open Swoole on Windows.
You must be running Windows 10 version 2004 and higher (Build 19041 and higher) or Windows 11.
When installing Open Swoole via PECL, during the installation it will ask you if you would like to enable certain features, this can be provided before running the installation, this helps with automating the installation of Swoole or for when you don't want the installation to stop and wait for input. Some options require third party libraries to be installed, see prerequisites.
Shorthand Configure Flag
Longhand Configure Flag
Note The Open Swoole PECL releases is later than the GitHub releases
Make sure to read the prerequisites first before compiling Swoole.
To compile and install the Swoole extension for PHP, we can clone the repository from GitHub where Swoole is developed, checkout the version you want to compile and manually install it.
Download the source package from GitHub Releases or clone from the git repository.
The script above will clone Open Swoole from GitHub, checkout v4.6.7 and setup Open Swoole ready to compile using phpize
. We then use ./configure
to build Open Swoole with the options we want to enable, everything is then compiled using make
and make install
. You can choose which configuration options you need, see the configuration parameters for more information.
You may need to run make install
with sudo
privileges.
After installing the Swoole extension to the PHP extensions directory, you will need to enable Open Swoole so that PHP can load the extension when executing code.
Manually enabling Open Swoole via php.ini
On most systems Open Swoole can be enabled by directly editing your php.ini
configuration file, you will want to add extension=openswoole
to the end of the file and then Open Swoole should be enabled.
Enabling Open Swoole via phpenmod
Some Linux distributions like Debian or Ubuntu use the PHP mods-available
to load PHP extensions, in this case you can use phpenmod
to enable Swoole. Follow the commands below to get Swoole enabled.
Make sure to change <PHP_VERSION>
to the version of PHP that you have installed.
You can also disable Open Swoole using phpdismod
if you need to (this is not uninstalling, just turning Swoole off):
These configuration options are used for enabling some features with Open Swoole, you can use these when installing via PECL or compiling from source.
Enable OpenSSL support. It depends on the libssl.so
library given by your operating system.
Set the path of OpenSSL library you want to use, for example:--with-openssl-dir=/opt/openssl/
.
Enable the support of HTTP2. It depends on nghttp2
library which is built into Open Swoole for you. However, you have to enable this option still if you want HTTP2 support.
Enable native CURL hook support for OpenSwoole coroutines. Since v4.6.0 there is native support for CURL, you must have libcurl4-openssl-dev
installed.
Enable Postgres Coroutine support.
Enable support for asynchronous DNS support, made possible by compiling the DNS library C-ares
. By default this feature is off, if C-ares
is not enabled, async DNS queries within OpenSwoole are simulated with a pool of blocking processes to process.
Once C-ares
is enabled in OpenSwoole, all the DNS queries produced by the OpenSwoole DNS API System::dnsLookup
, System::gethostbyname
or OpenSwoole coroutine clients are asynchronous, including the MySQL client, Redis Client, HTTP Client, CURL etc. Also any DNS name resolves as well.
You have to install libc-ares before enabling this flag:
Enable support for mysqlnd
, for example this adds support for $mysql->escape(...)
. You must also install the PHP mysqlnd
module for this option to work. However, it is more recommended to use PHP PDO MySQL instead.
Or use --with-postgres[=DIR]
when you have postgres library installed at a custom location.
Enable support for postgres
, this adds support for Coroutine PostgreSQL Client
Enable sockets support. It depends on the PHP sockets extension. If this configuration has been enabled, the function Swoole\Event::add()
can add the connection created by the sockets extension to the event loop of Swoole. And the function getSocket()
depends on this configuration being enabled. However, the Coroutine\Socket
service can do most things and may be more recommended.
Turn on debugging mode for Swoole. You will need gdb
installed to use this parameter.
Enable the debug logs of OpenSwoole. Don't enable this configuration in a production environment.
Turn on the trace log. After enabling this option, OpenSwoole will printout various details of the debug log, which is only used during kernel development.
Statically compile OpenSwoole and extend it to PHP. This option is only used when compiling PHP instead of OpenSwoole.
When a new OpenSwoole version is released, you can upgrade but it depends on how you installed OpenSwoole.
There is no need to uninstall OpenSwoole or delete any previous files, upgrading will overwrite any files or binaries, the install/upgrade process only produces one openswoole.so
binary for PHP to use.
For changelogs and updates, check out posts at https://openswoole.com/article/
If you installed via PECL, you can just run:
Or to install a specific version using PECL:
If you compiled OpenSwoole yourself from GitHub, you can recompile and install new changes/version again.
If you installed OpenSwoole via the Open Swoole Ubuntu PPA, you should receive updates via your package manager. For example, on Ubuntu or Debian:
If you are using a new version of PHP, perform a apt search openswoole
to install the correct version.
If you are having difficulty installing or upgrading Swoole, first check the prerequisites guide but if that does not help, checkout the common installation errors for more help.
You can follow the instruction about how to debug segment fault errors with Swoole if you come across any.
You have to install OpenSwoole Core composer library to access to a few features such as Psr support
and addon functions implemented with PHP: