启动与管理

在项目目录下执行如下命令可以看到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. stop Stop the running server
  9. restart Restart the running server
  10. Options:
  11. -h, --help Show help of the command group or specified command action

启动

  • 前台运行
  1. $ php bin/swoft ws:start
  • 后台运行
  1. $ php bin/swoft ws:start -d

使用

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