zoukankan      html  css  js  c++  java
  • ansible 批量重启服务

    ansible 10.1.1.113 -m service -a 'name=puppet state=restarted enabled=yes'
    
    
        - name: Start MySQL 
    
          service: name=mysqld state=started enabled=yes 
    
      handlers: 
    
        - name: restart mysql 
    
          service: name=mysqld state=restarted
    
    
    
    开启ftp
    
    [root@node01 ansible]# ansible 192.168.137.3 -m service -a'name=vsftpd state=started enabled=yes'
    [DEPRECATION WARNING]: DEFAULT_SUDO_USER option, In favor of become which is a generic framework . This feature will be 
    removed in version 2.8. Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg.
    192.168.137.3 | SUCCESS => {
        "changed": true, 
        "enabled": true, 
        "failed": false, 
        "name": "vsftpd", 
        "state": "started"
    }
    
    
    关闭ftp:
    
    [root@node01 ansible]# ansible 192.168.137.3 -m service -a'name=vsftpd state=stopped enabled=yes'
    [DEPRECATION WARNING]: DEFAULT_SUDO_USER option, In favor of become which is a generic framework . This feature will be removed in version 2.8. Deprecation warnings can be disabled by 
    setting deprecation_warnings=False in ansible.cfg.
    192.168.137.3 | SUCCESS => {
        "changed": true, 
        "enabled": true, 
        "failed": false, 
        "name": "vsftpd", 
        "state": "stopped"
    }
    
    
    
    
    重启服务:
    
    [root@node01 ansible]# ansible 192.168.137.3 -m service -a'name=vsftpd state=restarted enabled=yes'
    [DEPRECATION WARNING]: DEFAULT_SUDO_USER option, In favor of become which is a generic framework . This feature will be removed in version 2.8. Deprecation warnings can be disabled by 
    setting deprecation_warnings=False in ansible.cfg.
    192.168.137.3 | SUCCESS => {
        "changed": true, 
        "enabled": true, 
        "failed": false, 
        "name": "vsftpd", 
        "state": "started"
    }

  • 相关阅读:
    Win7双击任务栏图标导致窗口还原的问题
    一致性哈希算法及其在分布式系统中的应用(转)
    CAP理论(转)
    从Android界面开发谈起(转)
    Android开发入门之Window 环境概念介绍(转)
    数据库缓存技术(转)
    VoltDB开篇 简介(转)
    window下如何让php支持openssl(转)
    mysql分表的3种方法(转)
    linux crontab 每10秒执行一次
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349478.html
Copyright © 2011-2022 走看看