Home  >  Article  >  PHP Framework  >  Can workerman always run?

Can workerman always run?

尚
Original
2019-12-16 09:16:363361browse

Can workerman always run?

#workerman can always run. Start workererman in daemon (daemon) mode to keep running in the background.

Start and stop workererman:

Start

Start in debug mode

php start.php start

Start in daemon mode

php start.php start -d

Stop

php start.php stop

Restart

php start.php restart

Smooth restart

php start.php reload

View status

php start.php status

The difference between debug and daemon methods:

1. Start in debug mode. The echo, var_dump, print and other printing functions 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.

Recommended: workerman tutorial

The above is the detailed content of Can workerman always run?. 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