shell – 如何在没有hosts文件的情况下运行Ansible

前端之家收集整理的这篇文章主要介绍了shell – 如何在没有hosts文件的情况下运行Ansible前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在没有hosts文件的情况下运行Ansible

就像:

#ansible – “一些选项”IP -a’正常运行时间’

谢谢

你可以这样做:
ansible all -i "<hostname-or-ip>," -a 'uptime'

请注意,在IP地址的末尾,或者它将被视为主机库存文件名.

以下是一个参考示例:

ansible all -i "192.168.33.100," -a 'uptime'

192.168.33.100 | SUCCESS | rc=0 >>
 12:05:10 up 10 min,1 user,load average: 0.46,0.23,0.08
原文链接:https://www.f2er.com/bash/384470.html

猜你在找的Bash相关文章