ansible学习

打印 上一主题 下一主题

主题 780|帖子 780|积分 2340

ansible学习

介绍

Ansible是一个基于Python开辟的主动化运维工具,它集合了众多运维工具(如puppet、cfengine、chef、func、fabric)的优点,实现了批量系统设置、批量程序摆设、批量运行命令等功能。
前置环境预备:
设置密钥认证:
  1. 1.生成密钥
  2. ssh-keygen -t rsa
  3. 2.将公钥复制到远程服务器中
  4. ssh-copy-id 用户名@远程服务器IP地址
复制代码
安装

  1. yum install -y ansible
复制代码
设置主机清单

  1. vim /etc/ansible/hosts
  2. [wujie]    ------>组的名称,主机分组
  3. 10.0.0.7    -------》被管理的机器ip
  4. 10.0.0.41
  5. 10.0.0.31
  6. 10.0.0.51
复制代码
测试结果

  1. [root@m01 ~]# ansible wujie -m ping
  2. 10.0.0.31 | SUCCESS => {
  3.     "ansible_facts": {
  4.         "discovered_interpreter_python": "/usr/bin/python"
  5.     },
  6.     "changed": false,
  7.     "ping": "pong"
  8. }
  9. 10.0.0.51 | SUCCESS => {
  10.     "ansible_facts": {
  11.         "discovered_interpreter_python": "/usr/bin/python"
  12.     },
  13.     "changed": false,
  14.     "ping": "pong"
  15. }
  16. 10.0.0.41 | SUCCESS => {
  17.     "ansible_facts": {
  18.         "discovered_interpreter_python": "/usr/bin/python"
  19.     },
  20.     "changed": false,
  21.     "ping": "pong"
  22. }
  23. 10.0.0.7 | SUCCESS => {
  24.     "ansible_facts": {
  25.         "discovered_interpreter_python": "/usr/bin/python"
  26.     },
  27.     "changed": false,
  28.     "ping": "pong"
  29. }
复制代码
出现以上结果就说明ansible就安装完成了,并且运行的hello world也是没标题标了
模块

下面就来看一下ansible模块的使用
ansible的命令格式如下
ansible 主机分组 -m 指定模块 -a 指定模块的动作
如检察每台呆板的主机名,就可以使用下面的命令
  1. [root@m01 ~]# ansible wujie -m command -a 'hostname'
  2. 10.0.0.7 | CHANGED | rc=0 >>
  3. web01
  4. 10.0.0.51 | CHANGED | rc=0 >>
  5. db01
  6. 10.0.0.41 | CHANGED | rc=0 >>
  7. backup
  8. 10.0.0.31 | CHANGED | rc=0 >>
  9. nfs01
复制代码
如果想检察某一台的呆板的信息,可以使用如下命令
  1. [root@m01 ~]# ansible 10.0.0.7 -m command -a 'hostname'
  2. 10.0.0.7 | CHANGED | rc=0 >>
  3. web01
复制代码
各个模块示例
command模块

仅⽀持简单命令,不⽀持特殊符号,管道
  1. 获取所有机器主机名
  2. ansible all -a 'hostname'  #相当于省略 -m command
复制代码
shell模块

与command模块类似,shell模块⽀持特殊符号,执⾏脚本
  1. [root@m01 ~]# ansible all -m shell -a "ip a s ens33|sed -n 3p"
  2. 10.0.0.31 | CHANGED | rc=0 >>
  3.     inet 10.0.0.31/24 brd 10.0.0.255 scope global noprefixroute ens33
  4. 10.0.0.7 | CHANGED | rc=0 >>
  5.     inet 10.0.0.7/24 brd 10.0.0.255 scope global noprefixroute ens33
  6. 10.0.0.51 | CHANGED | rc=0 >>
  7.     inet 10.0.0.51/24 brd 10.0.0.255 scope global noprefixroute ens33
  8. 10.0.0.41 | CHANGED | rc=0 >>
  9.     inet 10.0.0.41/24 brd 10.0.0.255 scope global noprefixroute ens33
复制代码
script模块

传输脚本到被管理端并执⾏脚本,⼀般⽤于执⾏脚本
  1. [root@m01 scripts]# cat net-tools-install.sh
  2. yum install net-tools -y
  3. [root@m01 scripts]# ansible all -m script -a "/root/work/scripts/net-tools-install.sh"
复制代码
file模块

file 创建⽂件,⽬录
file模块中的选项path路径(⽬录,⽂件) 必须要写src (source源)源⽂件⼀般⽤于link(创建软毗连模式) ⽤于指定源⽂件state状态(模式)
state=directory 创建⽬录
state=file (默认) 更新⽂件,如果⽂件不存在也不创建.
state=link 创建软毗连
state=touch 创建⽂件
state=absent 删除 案例1:创建目次 /opt/dev 目次
  1. ansible all -m file -a "path=/opt/dev state=directory"
  2. ansible all -m command -a "ls -ld /opt/dev"
复制代码
案例2: 创建文件 /opt/dev/test.txt
  1. ansible all -m file -a 'path=/opt/dev/test.txt state=touch'
  2. ansible all -a "ls -l /opt/dev"
复制代码
案例3:创建软毗连/opt/dev/test.txt到/tmp/test.txt.soft
  1. ansible all -m file -a "src=/opt/dev/test.txt path=/tmp/test.txt.soft state=link"
复制代码
案例4:删除文件,目次,软毗连
  1. ansible all -m file -a 'path=/opt/dev/test.txt state=absent'  删除文件
  2. ansible all -m file -a 'path=/opt/dev state=absent'   删除目录
  3. ansible all -m file -a 'path=/tmp/test.txt.soft state=absent'  删除软连接
复制代码
案例五:创建⽂件/opt/dev/test.txt,所有者root,⽤户组root,权限755
  1. ansible all -m file -a 'path=/opt/dev/test.txt owner=root group=root mode=755 state=touch'
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

徐锦洪

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表