Easyswoole one-click installation script and pagoda installation error

Easyswoole one-click installation script and pagoda installation error

Frequently asked questions

When you are new to easyswoole, you often encounter the following problems:

  • The installation steps are complicated
  • Errors are prone to occur in integrated environments such as Pagoda
  • I can install it myself, but I'm too lazy. Is there a one-click method?

Start creating

I am a member of the easyswoole development team. For the sake of ecological improvement and laziness, this idea came up during a discussion one day.

And wrote this little script

It is important to note that these are just a few simple commands and they all appear in the documentation. It’s just that the document contains a lot of scene descriptions, which may cause some newcomers to not read them carefully.

In the Pagoda panel, if you follow the first step of the easyswoole document to install, errors will occur. There will be solutions in the subsequent steps of the document, but many newcomers do not read the error here, or take a detour.

Using this script, you can install it successfully directly, which is more convenient

The biggest role is still laziness~

text

#!/bin/bash
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/;
composer require easyswoole/easyswoole=3.x;
php vendor/easyswoole/easyswoole/bin/easyswoole install;
php easyswoole start;

Later, the script will be placed on the server and provided for download, so that it can be installed with just one line of command.

Note

This script will switch the global composer image to Alibaba Cloud.

Once installed, it will start automatically by default

Knowledge point expansion:

Linux Baota install EsaySwoole

Install EsaySwoole Link: https://www.easyswoole.com/Manual/2.x/Cn/_book/Introduction/install.html

The swoole extension installed by Baota Panel may not support the latest version of EsaySwoole

And the swoole expansion and upgrade of the pagoda panel is not easy

So you can only uninstall and recompile the extension Swoole

Swoole extension address https://pecl.php.net/package/swoole

Find the version you need

Download swoole: wget https://pecl.php.net/get/swoole-4.3.1.tgz

Decompress: tar -zxvf the compressed package you downloaded yourself

Enter the unzipped file: cd swoole-4.3.1

Generate configure file: phpize

Compile:

./configure --with-php-config=/www/server/php/73/bin/php-config //The directory where your own PHP environment files are located

Compile and install swoole

make && make install

or

make
make install

Finally, add at the end of the configuration file php.ini

extension = swoole.so

Summarize

The above is the easyswoole one-click installation script and pagoda installation error problem introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • thinkphp framework class library extension operation example
  • PHP framework to implement WebSocket online chat communication system
  • ThinkPHP framework optimistic locking and pessimistic locking example analysis
  • A brief discussion on the difference between laravel framework and thinkPHP framework
  • How to use PHP to remind users to log in remotely [Based on thinkPHP framework]
  • Design patterns of homemade PHP framework
  • Homemade PHP framework model and database
  • Homemade PHP framework routing and controller
  • Detailed explanation of PHP framework EasySwoole

<<:  MySQL master-slave synchronization mechanism and synchronization delay problem tracking process

>>:  In-depth explanation of currying of JS functions

Recommend

VUE implements a Flappy Bird game sample code

Flappy Bird is a very simple little game that eve...

CentOS7 uses yum to install mysql 8.0.12

This article shares the detailed steps of install...

Complete steps to install FFmpeg in CentOS server

Preface The server system environment is: CentOS ...

CSS hacks \9 and \0 may not work for hacking IE11\IE9\IE8

Every time I design a web page or a form, I am tr...

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

JavaScript Function Currying

Table of contents 1 What is function currying? 2 ...

How to generate Vue user interface by dragging and dropping

Table of contents Preface 1. Technical Principle ...

Vue implements the method of displaying percentage of echart pie chart legend

This article mainly introduces the pie chart data...

How to enable the slow query log function in MySQL

The MySQL slow query log is very useful for track...

React tips teach you how to get rid of hooks dependency troubles

A very common scenario in react projects: const [...

How to use Tencent slider verification code in Vue3+Vue-cli4 project

Introduction: Compared with traditional image ver...

Angular framework detailed explanation of view abstract definition

Preface As a front-end framework designed "f...