Home > PHP Framework > Workerman > body text

How to start workerman

(*-*)浩
Release: 2019-12-02 09:15:25
Original
4666 people have browsed it

How to start workerman

Note that commands such as starting and stopping Workerman are all completed on the command line.

To start Workerman, you first need to have a startup entry file, which defines the port and protocol for service monitoring.

Start (Recommended learning: workerman tutorial)

Start in debug mode

php start.php start
Copy after login

Start in daemon (daemon) mode

php start.php start -d
Copy after login

The difference between debug and daemon mode

1. Start in debug mode, Printing functions such as echo, var_dump, and print in the code will be output directly to the terminal.

2. Start in daemon mode. The echo, var_dump, print and other prints in the code will be redirected to the /dev/null file by default. You can set Worker::$stdoutFile = '/your/path/file' ; to set the file path.

3. Start in debug mode. After the terminal is closed, Workerman will close and exit.

4. Start in daemon mode. Workerman will continue to run normally in the background after the terminal is closed.

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!