Home  >  Article  >  PHP Framework  >  How to start swoole

How to start swoole

(*-*)浩
(*-*)浩Original
2019-12-09 09:06:456367browse

How to start swoole

Startup

If you want to automatically run your Server at startup, you can do so in the /etc/rc.local file Join (Recommended learning: swoole video tutorial)

/usr/bin/php /data/webroot/www.swoole.com/server.php

It is recommended to use systemd or supervisor to implement service management.

Start the server and listen to all TCP/UDP ports. Function prototype:

bool Server->start()

After successful startup, worker_num 2 processes will be created. Master process Manager process serv->worker_num Worker processes.

Failure to start will return false immediately

After successful startup, it will enter the event loop and wait for the client connection request. The code after the start method will not be executed

After the server is shut down, the start function returns true and continues to execute downwards

Setting task_worker_num will increase the corresponding number of Task processes

The methods before start in the method list can only be used before start is called, and the methods after start can only be used in onWorkerStart, onReceive and other event callback functions

The above is the detailed content of How to start swoole. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to restart swooleNext article:How to restart swoole