啟動與停止

請注意,Workerman 的啟動和停止命令都是在命令列中完成的。

要啟動 Workerman,首先需要一個啟動入口檔案,其中定義了服務監聽的端口和協議。您可以參考入門指引--簡單開發實例部分

這裡以workerman-chat為例,它的啟動入口是 start.php。

啟動

以 debug(調試)方式啟動

php start.php start

以 daemon(守護進程)方式啟動

php start.php start -d

停止

php start.php stop

重啟

php start.php restart

平滑重啟

php start.php reload

查看狀態

php start.php status

查看連接狀態(需要 Workerman 版本>=3.5.0)

php start.php connections

debug 和 daemon 方式區別

1、以 debug 方式啟動,代碼中的 echo、var_dump、print 等打印函數會直接輸出在終端。

2、以 daemon 方式啟動,代碼中的 echo、var_dump、print 等打印會默認重新導向到 /dev/null 檔案,可以通過設置Worker::$stdoutFile = '/your/path/file';來設置這個檔案路徑。

3、以 debug 方式啟動,終端關閉後 Workerman 會隨之關閉並退出。

4、以 daemon 方式啟動,終端關閉後 Workerman 繼續在後台正常運行。

什麼是平滑重啟?

參見 平滑重啟原理