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!