ansible模块命令使用方法

ansible命令格式
ansible模块命令使用方法_第1张图片

1.测试主机是否和其他节点机器联通

ansible all -m ping 

这里的all是表示的/etc/ansible/hosts文件中配置的所有主机

2.执行节点上的命令

ansible all -a "/bin/echo hello"
或
ansible all -a "echo hello world"

3.复制文件

ansible IP或配置的主机名 -m copy -a “src= dest=”

ansible dns -m copy -a "src=/root/testcopy.txt dest=/root"

4.yum命令执行

ansible all -m yum -a “name=包名 state=present”

ansible all -m yum -a "name=unzip state=present"

5.添加用户

ansible all -m user -a "name=skyfans password=XXXX"

6.启动服务

ansible tomcat -m service -a "name=httpd state=start"

7.查看远程主机的全部系统信息

ansible all -m setup

你可能感兴趣的:(ansible)