码迷,mamicode.com
首页 > 其他好文 > 详细

ansible常用命令大全

时间:2017-08-16 15:35:27      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:/tmp   roo   src   comm   com   常用命令   shel   连接   group   

ansible ‘*‘ -m command -a ‘uptime‘

‘*‘:自己定义的主机       -m command:命令  

# 检查主机连接

ansible ‘*‘ -m ping

# 执行远程命令

ansible ‘*‘ -m command -a ‘uptime‘

# 执行主控端脚本

ansible ‘*‘ -m script -a ‘/root/test.sh‘

# 执行远程主机的脚本

ansible ‘*‘ -m shell -a ‘ps aux|grep zabbix‘

# 类似shell

ansible ‘*‘ -m raw -a "ps aux|grep zabbix|awk ‘{print \$2}‘"

# 创建软链接

ansible ‘*‘ -m file -a "src=/etc/resolv.conf dest=/tmp/resolv.conf state=link"

# 删除软链接

ansible ‘*‘ -m file -a "path=/tmp/resolv.conf state=absent"

# 复制文件到远程服务器

ansible ‘*‘ -m copy -a "src=/etc/ansible/ansible.cfg dest=/tmp/ansible.cfg owner=root group=root mode=0644"

ansible常用命令大全

标签:/tmp   roo   src   comm   com   常用命令   shel   连接   group   

原文地址:http://www.cnblogs.com/bky185392793/p/7373203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!