ansible简明教程

作者: 徽沪一郎 | 来源:发表于2016-03-23 16:03 被阅读1653次

    ansible自动化安装与部署

    • 步骤1 安装ansible
    yum search ansible
    yum install -y ansible
    
    • 步骤2 编辑/etc/ansible/hosts
    [hadoop]
    10.2.26.50
    10.2.26.51
    10.2.26.52
    10.2.26.53
    10.2.26.54
    10.2.26.55
    
    [spark-master]
    10.2.26.45
    
    • 步骤3: 使用

      • 文件复制
      ansible spark-master -m copy -a 'src=/tmp/demo.txt dest=/tmp'
      

      参数说明:
      - -m 表示使用什么模块,常用的有command shell copy
      - -a 表示模块的具体指令

      • 执行指令
    ansible spark-master -m command -a 'bin/start-slaves.sh'
    
    + sudo权限
    
    ansible spark-master -m command -a 'service elasticsearch start' --sudo --ask-sudo-pass
    

    相关文章

      网友评论

        本文标题:ansible简明教程

        本文链接:https://www.haomeiwen.com/subject/sxollttx.html