ansible常用基础命令整合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible常用基础命令整合相关的知识,希望对你有一定的参考价值。

查看组内主机列表

ansible webservers --list-hosts

执行命令

-m shell
# ansible all -m shell -a ‘hostname‘

复制文件

-m copy
# ansible all -m copy -a ‘src=/etc/hosts dest=/etc/hosts‘

用户管理

-m user

添加用户

# ansible all -m user -a "name=lala password=123"

删除用户

# ansible web1 -m user -a "name=lala state=absent"

软件包管理

-m yum

删除软件

# ansible web1 -m yum -a ‘name=httpd state=removed‘

安装软件

# ansible web1 -m yum -a ‘name=httpd state=latest‘

服务管理

-m service
# ansible webservers -m service -a ‘name=httpd state=started‘

采集主机信息

# ansible web1 -m setup -a

以上是关于ansible常用基础命令整合的主要内容,如果未能解决你的问题,请参考以下文章

Ansible常用模块

ansible基础—安装与常用模块

ansible基础学习,常用模块概述

Ansible之常用模块

ansible常用模块

二Ansible基础之模块篇