美文网首页
ansible进一步使用

ansible进一步使用

作者: luomoxyz | 来源:发表于2017-08-16 14:44 被阅读10次

在ansible经一步使用

一个坑,当初我的脚本没有执行权限,ansible 却不做任何提示, 让我老以为ansible权限问题。

  1. 在远程执行脚本, 并把结果显示在本地
 ansible group5 -a 'cat /home/q/system/sphinx/config/server_conf.php | grep openshake' -m shell (只有这样才是管道的)
  1. 拷贝文件到远程机器
 ansible group5 -m copy -a "src=hostnameFile.py  dest=/home/dengyihao/" --sudo --ask-sudo-pass

  1. 利用ansible-playbook, 这里需要编写yml文件, 基本格式如下
- hosts: group5
  tasks:
      - name: reloadfile
        sudo: sudo
        #shell: cat /home/q/system/sphinx/logs/biz-process_log.20170711 | grep 621589957
        shell: echo "test"
        ignore_errors: True

相关文章

网友评论

      本文标题:ansible进一步使用

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