启动与管理

在项目目录下执行如下命令可以看到websocket server的管理命令. 跟http server的管理命令一致.

  1. $ php bin/swoft ws
  2. Description:
  3. There some commands for manage the webSocket server
  4. Usage:
  5. ws:{command} [arguments] [options]
  6. Commands:
  7. start Start the webSocket server
  8. reload Reload worker processes for the running server
  9. stop Stop the running server
  10. restart Restart the running server
  11. Options:
  12. -h, --help Show help of the command group or specified command action

启动

  • 前台运行
  1. $ php bin/swoft ws:start
  2. Server Information
  3. ************************************************************************************
  4. * WS | host: 0.0.0.0, port: 9088, type: 1, worker: 1, mode: 3 (http is Enabled)
  5. * TCP | host: 0.0.0.0, port: 9099, type: 1, worker: 1 (Disabled)
  6. ************************************************************************************
  7. Server has been started. (master PID: 86408, manager PID: 86409)
  8. You can use CTRL + C to stop run.
  • 后台运行
  1. $ php bin/swoft ws:start -d

http is Enabled 表明同时 启用了http请求处理 功能

使用

如果你注册了ws的路由处理控制器,现在就可以通过浏览器等ws客户端连接上server了

如果没有,接下来的一章 将会说明如何创建一个ws控制器并使用 :)