为了账号安全,请及时绑定邮箱和手机立即绑定

Ansible Ad-Hoc Commands 介绍

标签:
架构

webp

基本语法

ansible <pattern_goes_here> -m <module_name> -a <arguments>
  • <pattern_goes_here>  指定host信息

  • <module_name> 指定模块

  • <arguments> 指定参数

常用示例

1、并行执行

# 重启 atlanta 组的机器,并发分支 10ansible atlanta -a "/sbin/reboot" -f 10

2、Shell 命令

# 在  172.25.99.101 输出 helloansible 172.25.99.101 -m shell -a 'echo hello'

3、文件传输

# 将当前服务器的 /srv/foo/a.txt 文件传输到 webservers 组ansible webservers -m file -a "dest=/srv/foo/a.txt mode=600"

4、软件包管理

# 在 webservers 组安装最新版 acmeansible webservers -m yum -a "name=acme state=latest"

5、Users 和 Groups 管理

# 创建用户 fooansible all -m user -a "name=foo password=<crypted password here>"

6、从源代码管理部署

ansible webservers -m git -a "repo=https://foo.example.org/repo.git dest=/srv/myapp version=HEAD"

7、服务管理

# 确保在 webservers 组启动 httpd 服务ansible webservers -m service -a "name=httpd state=started"

8、时间有限的后台操作

# 在后台异步执行 long_running_operation,超时时间为3600秒(-B),没有轮询(-P)ansible all -B 3600 -P 0 -a "/usr/bin/long_running_operation --do-stuff



作者:Anoyi
链接:https://www.jianshu.com/p/cb83d8b2d5df


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消