ansible 和 saltstack

都是为了同时在多台主机上执行相同的命令, 但是 salt配置麻烦,ansible基本不用配置, ansible 通过ssh来连接并控制被控节点

1. 安装

第一步: 下载epel源

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

第二步: 安装ansible

yum install -y ansible

2. 管控主机秘钥登录被控主机

ssh 秘钥登录

ssh-keygen # 用来生成ssh的密钥对
ssh-copy-id 192.168.107.131 # 复制秘钥到远程主机

3. ansible 命令格式

-a MODULE_ARGS, --args=MODULE_ARGS   # 模块的参数
-C, --check # 检查
-f FORKS, --forks=FORKS #用来做高并发的
--list-hosts #列出主机列表
-m MODULE_NAME #模块名称
--syntax-check # 语法检查

4. ansible hosts

查看ansible 生成的文件

ansible/hosts 文件

# This is the default ansible 'hosts' file.
#
# It should live in /etc/ansible/hosts
#
# - Comments begin with the '#' character # 用#来表示注释
# - Blank lines are ignored # 空白行被忽略
# - Groups of hosts are delimited by [header] elements # 主机组 需要在【】下面
# - You can enter hostnames or ip addresses #可以写主机名或者ip地址
# - A hostname/ip can be a member of multiple groups # 一台主机可以在多个组里面

[web]
192.168.181.133
192.168.181.134

[db]
192.168.181.134
192.168.181.135

5. 模块

ansible-doc 查看文档

 ansible-doc [-l|-F|-s] [options] [-t <plugin type> ] [plugin]
-j #以json的方式返回ansible的所有模块
-l, --list #列出所有的ansible的模块
-s #以片段式显示ansible的帮助信息

1. ping模块

host-pattern格式

2. 系统默认模块 command, 可以不指定-m

第一个command命令

ansible web -a 'chdir=/tmp pwd'    # 切换目录执行命令,使用场景是编译安装时使用
ansible web -a 'creates=/tmp pwd' # 用来判断/tmp目录是否存在,存在就不执行操作
ansible web -a 'creates=/data pwd' # 因为data不存在,所有才会执行pwd命令
ansible web -a 'removes=/tmp pwd' # 用来判断tmp目录是否存在,存在就执行操作
ansible web -a 'removes=/data pwd' # 因为data不存在,所有才不会执行

如果命令里包含特殊符号, 需要同shell模块 : $  <  >  |  will not work use shell module

3. shell 执行远程文件

ansible web -m shell -a 'echo "123" | passwd --stdin alex'   # 批量创建密码
ansible 192.168.107.131 -m shell -a 'bash a.sh' # 执行远程文件方式一
ansible 192.168.107.131 -m shell -a '/root/a.sh' # 执行远程文件方式二,文件必须有执行权限, 需要 chmod +x
ansible 192.168.107.131 -m shell -a '/root/a.py' # 执行远端的Python脚本

被管控机192.168.107.131

管控机就会创建 bulijngbuling2文件夹

4.script 执行本地文件

ansible web -m script -a '/root/m.sh'                # 执行本地的文件,即管控机上的脚本
ansible web -m script -a 'removes=/root/m.sh /root/m.sh'   # 用来判断被管控机上是不是存在文件,如果存在,存在就执行,不存在就不执行
ansible web -m script -a 'creates=/root/a.sh /root/m.sh'   #用来判断被管控机上是不是存在文件,如果存在,就不执行

管控机

db组群 就会创建 hhhhhh文件夹

5. copy : Copies files to remote locations 把文件批量拷到被管控机上

ansible-doc -s copy: 
backup     # 备份,以时间戳结尾
src # 源文件
dest      # 目的地址
group     # 文件的属组
mode      # 文件的权限 r w x
owner      #文件的属主 # 通过md5码来判断是否需要复制
ansible web -m copy -a 'src=/root/m.sh dest=/tmp/a.sh'               # 复制本地文件的到远程主机
ansible web -m copy -a 'src=/root/m.sh dest=/tmp/a.sh mode=755'          # 修改文件的权限
ansible web -m copy -a 'src=/root/m.sh dest=/tmp/a.sh mode=755 owner=ryan'   # 修改文件的属主
ansible web -m copy -a 'src=/etc/init.d dest=/tmp/ mode=755 owner=ryan'   # 复制本地目录到远程主机,如果改变文件的属性,则文件夹内的文件也会被改变
ansible web -m copy -a 'src=/etc/init.d/ dest=/tmp/ mode=755 owner=ryan' # 复制本地目录内的所有文件到远程主机
ansible web -m copy -a "content='白云深处有人家\n' dest=/tmp/b.txt"         # 直接将文本内容注入到远程主机的文件中

6. fetch : Fetches a file from remote nodes 把远程文件传到管控机, 如各机的log日志等, 与copy相反

dest        # 目的地址 (required) A directory to save the file into
src         # 源地址 (required) The file on the remote system to fetch,This `must' be a file, not a directory
ansible web -m fetch -a 'src=/var/log/cron dest=/tmp' # 下载被控节点的文件,在管控机/tmp目录下以每台机器ip为名创建一个文件夹,并保留原来的目录结构

7. file

path:  # (required) Path to the file being managed.
src: # path of the file to link to (applies only to `state=link' and `state=hard')
state: # directory touch link absent
owner: # chown'
ansible db -m file -a 'path=/lzmly2  state=directory'       #在远程机器上创建文件夹
ansible db -m file -a 'path=/root/q.txt state=touch'       #用来在远程机器上创建文件
ansible db -m file -a 'path=/tmp/f src=/etc/fstab state=link' #创建软连接src是源地址,path是目标地址
ansible db -m file -a 'path=/tmp/f state=absent'          #用来删除文件或者文件夹
gruop /owner /mode

8. yum

yum和rpm 的区别: yum解决依赖关系

rpm -q 包    查询是否安装

yum 安装包组

yum grouplist    # 查看包组信息
yum groupinstall # 安装包组

ansible 语法

disablerepo     # 禁用源
enablerepo    # 启用源
name         # 包名
state       # install (`present' or `installed', `latest'), or remove (`absent' or `removed') ansible web -m yum -a 'name=wget' # 安装wget
ansible web -m yum -a 'name=python2-pip' # 安装python2-pip
ansible web -m yum -a 'name=wget state=absent' # 卸载软件包
ansible web -m yum -a 'name="@Development Tools"' # 安装包组

9. pip

pip install           # 安装包
pip freeze > a.txt # 将python的环境打包到文件中
pip install -r a.txt # 安装文件中的包
pip list # 查看所有的以安装成功的包

ansible 语法

requirements   # The path to a pip requirements file, which should be local to the remote system. 就是pip install -r 指定文件安装
name        # 名
ansible web -m pip -a 'name=flask' # 安装flask模块

10. service

systemctl start nginx   # centos7 启动nginx
service nginx start    # centos6
systemctl enabled nginx # centos7 开机自启动
chkconfig nginx on     # centos6 开机自启动

ansible:

enabled  # Whether the service should start on boot. 开机启动
name # (required) Name of the service
state # started stopped restarted reloaded
ansible web -m service -a 'name=nginx state=started enabled=yes' # 启动nginx, 开机启动nginx
ansible web -m service -a 'name=nginx state=stopped' # 关闭nginx

11. cron 计划任务

*  *  * * *   job
分 时 日 月 周 任务
*/ * * * job 每隔两个小时
, * * * job 12点和13点
- * * * job 12点到17点
-/ * * ,,, 周1,周3,周6,周7 12点到17点每隔两个小时
crontab -e         # 编辑计划任务
crontab -l         # 查看计划任务
crontab -r         # 删除计划任务

ansible

minute      # 分钟
hour      # 小时
day      # 天
month     # 月
weekday    # 周
name      # 任务名字
job       # 任务
disabled    # 禁用
ansible db -m cron -a 'minute=26 job="touch /tmp/xzmly.txt" name=touchfile'         # 新建一个计划任务
ansible db -m cron -a 'name=touchfile state=absent'                         # 删除一个计划任务
ansible db -m cron -a 'minute=26 job="touch /tmp/xzmly.txt" name=touchfile disabled=yes' # 禁用计划任务,以#表示禁用
ansible web -m cron -a 'name=synchronus minute=00 job="ntpdate time.window.com"'       # 每小时同步window时间

12 user

用户:
管理员 root
普通用户
系统用户 不能登录 - centos7 - centos6
登录用户 可以登录 - centos7 - centos6
用户组:
管理员组 root
系统用户组 - centos7 - centos6
登录用户组 - centos7 - centos6 -d 指定用户的家目录
-g 指定用户的组
-G 执行用户的附加组
-s 指定登录后使用的shell
-r 创建一个系统组
-p password
useradd -r ryan           # 创建系统用户, 从999倒序
useradd -s /sbin/nologin may    # 创建的是普通用户,从1000开始升序
useradd -d /opt/shey shey      # 创建用户时指定用户的家目录
useradd -u sheldon       # 创建用户并指定用户的uid
userdel sheldon           # 删除用户
userdel -r shey            # 删除用户并删除用户的家目录

ansible

group    # 组
groups # 附加组
home # 家目录
name # 用户名
password # 密码
remove # 只有当state=absent 起作用, 删除用户家目录
shell # 用户登录后使用的shell
system # 创建一个系统用户
uid # 用来指定用户的id
state   # 状态
ansible db -m user -a 'name=ryan uid=4000 home=/opt/wulaoshi groups=root shell=/sbin/nologin' #创建一个用户,并指定用户的id,用户的家目录,用户的附加组,用户的shell
ansible db -m user -a 'name=ryan1 state=absent' #删除用户但是不删除用户的家目录
ansible db -m user -a 'name=ryan2 state=absent remove=yes' # 删除用户并删除用户的家目录

13 group

gid      # 组的id
name    # 组名
system # 系统组
state
ansible db -m group -a 'name=ryan3 system=yes' #创建系统组
ansible db -m group -a 'name=ryan4 state=absent' # 删除组

其他模块遇到的时候再补充

ansible 批量在远程主机上执行命令的更多相关文章

  1. 通过paramiko模块在远程主机上执行命令

    安装paramiko模块 /usr/local/python36/bin/pip3 install paramiko 1.获取cpu使用率 #!/usr/bin/python #coding=utf8 ...

  2. 【Shell实战】批量在多台服务器上执行命令

    功能说明:批量在多台服务器上执行命令 #!/bin/bash # ========================================== # 功能:批量在多台服务器上执行命令 # 方法: ...

  3. Ansible批量更新远程主机用户密码 (包括Ansible批量做ssh互信)

    按照集团运维信息安全制度, 需要每个一段时间对线上服务器密码进行一次变更,通过shell脚本部署比较繁琐,所以决定采用ansible脚本对远程主机root密码进行批量重置,该脚本已经在稳定运行在正式环 ...

  4. expect实现远程主机自动执行命令脚本

    2014年第一个脚本,哈哈!!! expect实现远程主机自动执行命令脚本: #!/usr/bin/expect -- if { [llength $argv] < 4 } { puts &qu ...

  5. Ansible批量在远程主机执行命令

    Ansible直接执行远程命令,不用ssh登陆交互执行. 如下: ansible all -i 192.168.199.180, -m shell -a "ifconfig" -u ...

  6. ansible批量管理服务 上

    1 ansible简介 1.1 ansible批量管理服务概述 (1)是基于python语言开发的自动化软件工具(2)是基于SSH远程管理服务实现远程主机批量管理(3)并行管理,部署简单,应用也简单方 ...

  7. linux免交互登陆远程主机并执行命令(密钥对和Expect)

    原文章摘自:http://lizhenliang.blog.51cto.com/7876557/1607723/ Linux下实现免交互登陆一般有两种: 1. SSH无密码认证方式 客户端使用ssh- ...

  8. ssh在本地调用远程主机上的命令,不登录远程主机shell

    需求描述: 在实际shell脚本的编写过程中,需要通过ssh远程执行一个命令,并返回执行的结果 简单来说,就是将命令发送到远程的主机上进行执行,但是并没有实际的登录到远程主机上.即通过 ssh的方式本 ...

  9. SSH 提示密码过期,如何通过 ansible 批量更新线上服务器密码

    起因 线上环境是在内网,登陆线上环境需要使用 VPN + 堡垒机 登陆,但是我日常登陆线上环境都是 VPN + 堡垒机 + Socks5常驻代理,在shell端只需要保存会话,会话使用socks5代理 ...

随机推荐

  1. [XPath] XPath 与 lxml (三)XPath 坐标轴

    本章我们将沿用上一章的 XML 示例文档. XPath 坐标轴 坐标轴用于定义当对当前节点的节点集合. 坐标轴名称 含义 ancestor 选取当前节点的所有先辈元素及根节点. ancestor-or ...

  2. N76E003之WDT(看门狗定时器)

    N76E003提供一个看门狗定时器(WDT),它可以配置成一个超时复位定时器用于复位整个设备.一旦由于外界干扰设备进入非正常状态或挂起,看门狗可以复位恢复系统.这有用于监测系统运行以提高系统可靠性.对 ...

  3. 处理i18n国际电话区号的代码实践

    本文转载至 http://adad184.com/2015/08/18/practice-in-i18n-dialling-code/ 前言 上周在忙产品的国际化(i18n)的问题 其中一个很重要的地 ...

  4. Xcode - 添加自定义代码提示

    在开发过程中我们要学会去模仿苹果的一些用法,这样才能让开发更有效率,更规范. 1.苹果自带的代码片段提示 代码片段就是你在Xcode中敲for然后回车,你会看到 for (<#initializ ...

  5. Myeclipse10使用git

    用Myeclipse安装egit,使用官网最新地址或者下载最新的egit插件到本地安装均在team中看不到git,最后发现到http://download.eclipse.org/egit/updat ...

  6. HttpClient详细解释

    Http协议的重要性相信不用我多说了,HttpClient相比传统JDK自带的URLConnection,增加了易用性和灵活性(具体区别,日后我们再讨论),它不仅是客户端发送Http请求变得容易,而且 ...

  7. C语言内存使用的常见问题及解决之道

    一  前言 本文所讨论的“内存”主要指(静态)数据区.堆区和栈区空间(详细的布局和描述参考<Linux虚拟地址空间布局>一文).数据区内存在程序编译时分配,该内存的生存期为程序的整个运行期 ...

  8. Storm架构和编程模型总结

    1. 编程模型 DataSource:外部数据源 Spout:接受外部数据源的组件,将外部数据源转化成Storm内部的数据,以Tuple为基本的传输单元下发给Bolt Bolt:接受Spout发送的数 ...

  9. 时间的类型的相互转换(date/String)及时区的比较

    String ->Date ->String @Test public void date() throws ParseException{ String sdate = "01 ...

  10. Autojump:一个可以在 Linux 文件系统快速导航的高级 cd 命令

    相关博客:https://linux.cn/article-3401-1.html 对于那些主要通过控制台或终端使用 Linux 命令行来工作的 Linux 用户来说,他们真切地感受到了 Linux ...