ansible学习记录之ansible安装

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

1. CentOS6.x x64 服务器端安装

# rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm    
# yum -y install ansible


配置文件查看:

[root@master ansible]# egrep -v "(#|^$)" /etc/ansible/ansible.cfg    
[defaults]    
hostfile       = /etc/ansible/hosts  
library        = /usr/share/ansible    
remote_tmp     = $HOME/.ansible/tmp    
pattern        = *    
forks          = 5   #默认并发5个。    
poll_interval  = 15    
sudo_user      = root    
transport      = smart    
remote_port    = 22    
module_lang    = C    
gathering = implicit    
sudo_exe = sudo    
timeout = 10    
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}    
action_plugins     = /usr/share/ansible_plugins/action_plugins    
callback_plugins   = /usr/share/ansible_plugins/callback_plugins    
connection_plugins = /usr/share/ansible_plugins/connection_plugins    
lookup_plugins     = /usr/share/ansible_plugins/lookup_plugins    
vars_plugins       = /usr/share/ansible_plugins/vars_plugins    
filter_plugins     = /usr/share/ansible_plugins/filter_plugins    
[paramiko_connection]    
[ssh_connection]    
[accelerate]    
accelerate_port = 5099    
accelerate_timeout = 30    
accelerate_connect_timeout = 5.0    
accelerate_daemon_timeout = 30


2. 配置主机Inventory

ansible通过读取默认的主机清单文件/etc/ansible/hosts,该文件在/etc/ansible/ansible.cfg文件中指定,可以自定义主机,支持IP,域名,支持分组,便于对某

些主机或者某一组功能相同的主机进行操作,还有一个缺省的all组,代表Inventory中所有主机。

# vi /etc/ansible/hosts

[test]   
192.168.10.191    
192.168.10.192

示例:可以指定端口与用户与密码:   
192.168.10.191   ansible_ssh_port=2222  ansible_ssh_user=root ansible_ssh_pass=passwd     
192.168.10.191:2222

  

3. 免密钥方式配置

置ansible端能基于密钥认证的方式联系各被管理节点。master服务器生成ssh-key,并分发到所有客户端。

# ssh-keygen -t rsa    
# ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.10.191    
  
在此过程提示输入客户端密码


4. RHEL/CentOS/OEL5.X 客户端安装

RHEL/CentOS/OEL5.X x64 默认采用 python2.4,ansible对python2.4需要安装python-simplejson安装包。

说明: python2.4/2.5版本太低会出现"msg": "Error: ansible requires a json module, none found!", 报错.   
要么升级python,要么安装python-simplejson

[root@web01 Server]# rpm -vih python-simplejson-2.0.9-8.el5.x86_64.rpm    
warning: python-simplejson-2.0.9-8.el5.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159    
Preparing...                ########################################### [100%]    
   1:python-simplejson      ########################################### [100%]

 

5. ansible命令模块以及参数查询

(1) ansible命令语法

语法 ansible <host-pattern> [options]   
ansible <pattern_goes_here> -m <module_name> -a <arguments>

选项:   
-i 设备列表路径,可制定一些动态路径    
-f 并行任务数    
-private-key 私钥路径    
-m 模块名 默认不指定模块就是采用command模块    
-M 模块夹在路径    
-a 参数    
-k 登陆密码    
-K sudo密码    
-t 输出结果保存路径    
-B 后台运行超时时间    
-P 调查后台程序时间    
-u 执行用户    
-U sudo用户    
-l 限制设备范围    
-s 是此用户sudo无需输入密码


(2) 查看ansible的模块以及参数

# ansible-doc

-l 列出所有的ansible模块   
-s 列出该模块的相关指令


[root@master ~]# ansible-doc -l    
             
boundary_meter       Manage boundary meters                                      
bzr                  Deploy software (or files) from bzr branches                
campfire             Send a message to Campfire                                  
capabilities         Manage Linux capabilities                                   
cloudformation       create a AWS CloudFormation stack                           
command              Executes a command on a remote node                         
composer             Dependency Manager for PHP                                  
copy                 Copies files to remote locations.                           
cpanm                Manages Perl library dependencies.                          
cron                 Manage cron.d and crontab entries.                          
datadog_event        Posts events to DataDog  service                           


[root@master ~]# ansible-doc -s command    
- name: E x e c u t e s   a   c o m m a n d   o n   a   r e m o t e   n o d e    
  action: command    
      chdir                  # cd into this directory before running the command    
      creates                # a filename, when it already exists, this step will *not* be run.    
      executable             # change the shell used to execute the command. Should be an absolute path to the executable.    
      free_form=             # the command module takes a free form command to run.  There is no parameter actually named 'free form'. See the

examples!   
      removes                # a filename, when it does not exist, this step will *not* be run.    
      warn                   # if command warnings are on in ansible.cfg, do not warn about this particular line if set to no/false.

 

6. 通过密码方式进行验证,加入-k参数

#提供了三种方式:一个在hosts文件中加入密码,一种是免密钥方式,一种是采用-k方式手动输入密码,常用于临时测试。

[root@master ansible]# ansible all -m ping -k

SSH password:    
192.168.10.192 | success >> {    
    "changed": false,     
    "ping": "pong"    
}

192.168.10.191 | success >> {   
    "changed": false,     
    "ping": "pong"    
}


7. 常用示例:

[root@master ansible]# ansible test -a 'df -h'   #这个省略了-m command模块名,-a接参数,可以指行linux命令

#执行操作系统命令可以采用command,shell,raw等,其中shell可以使用管道以及命令带参,script通常用执行脚本等,具体可以查看相关参数。

192.168.0.125 | success | rc=0 >>   
Filesystem                    Size  Used Avail Use% Mounted on    
/dev/mapper/vg_test2-lv_root   36G  3.6G   30G  11% /    
tmpfs                        1004M   72K 1004M   1% /dev/shm    
/dev/sda1                     485M   39M  421M   9% /boot

192.168.0.124 | success | rc=0 >>   
Filesystem                    Size  Used Avail Use% Mounted on    
/dev/mapper/vg_test1-lv_root   36G  3.6G   30G  11% /    
tmpfs                        1004M   72K 1004M   1% /dev/shm    
/dev/sda1                     485M   39M  421M   9% /boot

单条远程命令的执行,可以通过相关模块进行操作,也可以直接执行命令方式,命令方式将为后面play-book(可以简单理解为批处理)试打下基础。

ansible test -m yum -a "name=dstat state=latest"         #执行yum install dstat   
ansible test -m raw -a "rpm -qa|grep dstat"              #执行rpm -qa |grep dstat    
ansible test -m shell -a "service mysqld restart"        #通过命令方式执行service mysqld restart

单条命令方式:

ansible test -m service -a "name=mysqld state=stopped"   #通过服务模块执行service mysqld stop

play-book方式:

- name: stop mysqld service   #随便取名称   
  service: enabled=off name=rpcbind state=stopped    #模块与参数,单命令行方式也可很容易转成play-book方式。





本文转自 koumm 51CTO博客,原文链接:http://blog.51cto.com/koumm/1789401,如需转载请自行联系原作者

相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
6月前
|
Kubernetes Shell 网络安全
ansible的安装和简单的块使用
Ansible是一种自动化工具,用于配置管理、应用程序部署和协调云部署。它是一个开源工具,使用Python编写,通过SSH协议与远程主机通信。
176 2
ansible的安装和简单的块使用
|
3月前
|
存储 Ubuntu Linux
在Ubuntu 14.04上安装和配置Ansible的方法
在Ubuntu 14.04上安装和配置Ansible的方法
35 1
|
4月前
|
Serverless 网络安全 Python
Ansible原理和安装
Ansible原理和安装
72 1
|
3月前
|
JSON 运维 Ubuntu
在Ubuntu 18.04上安装和配置Ansible的方法
在Ubuntu 18.04上安装和配置Ansible的方法
58 0
|
3月前
|
JSON 运维 Linux
在CentOS 7上安装和配置Ansible的方法
在CentOS 7上安装和配置Ansible的方法
145 0
|
6月前
|
存储 运维 Shell
Ansible自动化运维工具安装和基本使用
Ansible 是一款无代理的IT自动化工具,通过SSH连接目标主机执行配置管理、应用部署和云端管理任务。它使用YAML编写的Playbook定义任务,核心组件包括Playbook、模块、主机清单、变量等。Ansible的优势在于易用、功能强大、无须在目标主机安装额外软件,并且开源。安装过程涉及配置网络源、yum安装和SSH密钥设置。通过定义主机清单和使用模块进行通信测试,确保连接成功。
233 2
Ansible自动化运维工具安装和基本使用
|
6月前
|
运维 Linux Shell
Ansible的介绍与安装
**自动化与Linux系统管理**\n\n学习自动化运维能减少手动任务的错误和遗漏,提高效率。Ansible是一款Python开发的自动化工具,支持多平台,实现批量配置、部署和命令执行。它是无代理的,通过SSH连接管理主机,无需在远程主机安装额外软件。\n\nAnsible具有跨平台、人类可读的自动化语言、描述应用状态、易版本控制、动态清单管理和与其他系统集成等优点。\n\nAnsible的工作流程包括ad-hoc和playbook模式。安装涉及配置YUM源、EPEL源,然后通过yum或dnf安装软件包。在无网络环境下,可以下载rpm包离线安装。
|
6月前
|
存储 安全 Shell
Ansible安装基本原理及操作(初识)
Ansible安装基本原理及操作(初识)
|
缓存
yum install ansible无法直接安装Ansible的解决方法
准备三台机器: server.example.com node1.example.com node2.example.com 配置IP,主机名,/etc/hosts
634 0
|
11月前
|
运维 关系型数据库 Shell
小白带你学习linux自动化运维ansible
小白带你学习linux自动化运维ansible
278 0
小白带你学习linux自动化运维ansible