ds.py 465 B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. dever-manage tools
  5. name:ds.py
  6. author:rabin
  7. 功能:集群管理工具,基本命令和dm一致
  8. ds init 初始化
  9. ds join ip 加入集群
  10. ds run web 运行web服务组
  11. ds run web-php 运行web服务组下的php服务
  12. ds run web-nginx 运行web服务组下的nginx服务
  13. ds rm web 删除web服务组
  14. ds show 显示所有服务
  15. ds node 查看所有集群节点
  16. """
  17. from main import *
  18. Main.init('cluster')