ansible 工作原理以及使用詳解

来源:https://www.cnblogs.com/zhoul/archive/2018/11/07/9921689.html
-Advertisement-
Play Games

內容:1、ansible的作用以及工作結構2、ansible的安裝以及使用3、ansible的playbook使用 一、ansible的作用以及工作結構 1、ansible簡介: ansible是新出現的自動化運維工具,基於Python開發,集合了眾多運維工具(puppet、cfengine、che ...


內容:
1、ansible的作用以及工作結構
2、ansible的安裝以及使用
3、ansible的playbook使用

一、ansible的作用以及工作結構
        1、ansible簡介:
        ansible是新出現的自動化運維工具,基於Python開發,集合了眾多運維工具(puppet、cfengine、chef、func、fabric)的優點,實現了批量系統配置、批量程式部署、批量運行命令等功能。ansible是基於模塊工作的,本身沒有批量部署的能力。真正具有批量部署的是ansible所運行的模塊,ansible只是提供一種框架。主要包括:
        (1)、連接插件connection plugins:負責和被監控端實現通信;
        (2)、host inventory:指定操作的主機,是一個配置文件裡面定義監控的主機;
        (3)、各種模塊核心模塊、command模塊、自定義模塊;
        (4)、藉助於插件完成記錄日誌郵件等功能;
        (5)、playbook:劇本執行多個任務時,非必需可以讓節點一次性運行多個任務。
        2、ansible的架構:連接其他主機預設使用ssh協議

 

二、ansible的安裝以及常用模塊使用
        1、ansible無伺服器端,使用時直接運行命令即可,同時不需要在被管控主機上安裝任何客戶端,因此ansible是一個十分輕量級的工具,可以在epel源進行安裝,ansible已經被紅帽收購,相信不久會被收入base源
        配置好epel源後直接yum安裝ansible

  •   1 
      2 [root@php ~]# yum info ansible
      3 Loaded plugins: fastestmirror, refresh-packagekit, security
      4 Loading mirror speeds from cached hostfile
      5 base                             | 4.0 kB     00:00 ...
      6 epel                             | 4.3 kB     00:00
      7 epel/primary_db                  | 5.7 MB     00:00
      8 Available Packages
      9 Name        : ansible
     10 Arch        : noarch
     11 Version     : 1.9.2
     12 Release     : 1.el6
     13 Size        : 1.7 M
     14 Repo        : epel
     15 Summary     : SSH-based configuration management, deployment, and task execution system
     16 URL         : http://ansible.com
     17 License     : GPLv3
     18 Description :
     19             : Ansible is a radically simple model-driven configuration management,
     20             : multi-node deployment, and remote task execution system. Ansible works
     21             : over SSH and does not require any software or daemons to be installed
     22             : on remote nodes. Extension modules can be written in any language and
     23             : are transferred to managed machines automatically.
     24 [root@php ~]# yum install ansible

 

查看生成的主要文件:

  1 /etc/ansible
  2 /etc/ansible/ansible.cfg   #配置文件
  3 /etc/ansible/hosts   #主機庫(host inventory)
  4 /usr/bin/ansible   #主程式
  5 /usr/bin/ansible-doc   #文檔
  6 /usr/bin/ansible-playbook   #劇本

 

ansible命令的使用方法也比較簡單:
        語法:
        ansible <host-pattern> [-f forks] [-m module_name] [-a args]
        host-pattern:host inventory文件的一個組名,可以為all
            -f forks:並行處理的個數,預設為5
            -m module_name:模塊名,預設為command
            -a args:參數
        ansible-doc:
            -l:查看模塊列表
            -s:查看相關模塊參數
        我們可以看到ansible支持非常多的模塊:

  1 [21:20 [email protected]/var/ftp/pub/files]# ansible-doc -l
  2 less 436
  3 Copyright (C) 1984-2009 Mark Nudelman
  4 less comes with NO WARRANTY, to the extent permitted by law.
  5 For information about the terms of redistribution,
  6 see the file named README in the less distribution.
  7 Homepage: http://www.greenwoodsoftware.com/less
  8 a10_server                    Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
  9 a10_service_group             Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
 10 a10_virtual_server            Manage A10 Networks AX/SoftAX/Thunder/vThunder devices
 11 acl                           Sets and retrieves file ACL information.
 12 add_host                      add a host (and alternatively a group) to the ansible-playbook in-memory inventory
 13 airbrake_deployment           Notify airbrake about app deployments
 14 alternatives                  Manages alternative programs for common commands
 15 apache2_module                enables/disables a module of the Apache2 webserver
 16 apt                           Manages apt-packages
 17 apt_key                       Add or remove an apt key
 18 apt_repository                Add and remove APT repositories
 19 apt_rpm                       apt_rpm package manager
 20 assemble                      Assembles a configuration file from fragments
 21 assert                        Fail with custom message
 22 at                            Schedule the execution of a command or script file via the at command.
 23 authorized_key                Adds or removes an SSH authorized key
 24 azure                         create or terminate a virtual machine in azure
 25 bigip_facts                   Collect facts from F5 BIG-IP devices
 26 bigip_monitor_http            Manages F5 BIG-IP LTM http monitors
 27 bigip_monitor_tcp             Manages F5 BIG-IP LTM tcp monitors
 28 bigip_node                    Manages F5 BIG-IP LTM nodes
 29 bigip_pool                    Manages F5 BIG-IP LTM pools
 30 bigip_pool_member             Manages F5 BIG-IP LTM pool members
 31 bigpanda                      Notify BigPanda about deployments
 32 boundary_meter                Manage boundary meters
 33 

 

註意:使用ansible-doc -s查看幫助是,一般有=號的參數都是必要的參數
        Ansible預設安裝好後有一個配置文件/etc/ansible/ansible.cfg,該配置文件中定義了ansible的主機的預設配置部分,如預設是否需要輸入密碼、是否開啟sudo認證、action_plugins插件的位置、hosts主機組的位置、是否開啟log功能、預設埠、key文件位置等等。
        具體如下:

  1 [defaults]
  2     # some basic default values...
  3     hostfile       = /etc/ansible/hosts   \\指定預設hosts配置的位置
  4     # library_path = /usr/share/my_modules/
  5     remote_tmp     = $HOME/.ansible/tmp
  6     pattern        = *
  7     forks          = 5
  8     poll_interval  = 15
  9     sudo_user      = root  \\遠程sudo用戶
 10     #ask_sudo_pass = True  \\每次執行ansible命令是否詢問ssh密碼
 11     #ask_pass      = True  \\每次執行ansible命令時是否詢問sudo密碼
 12     transport      = smart
 13     remote_port    = 22
 14     module_lang    = C
 15     gathering = implicit
 16     host_key_checking = False    \\關閉第一次使用ansible連接客戶端是輸入命令提示
 17     log_path    = /var/log/ansible.log \\需要時可以自行添加。chown -R root:root ansible.log
 18     system_warnings = False    \\關閉運行ansible時系統的提示信息,一般為提示升級
 19     # set plugin path directories here, separate with colons
 20     action_plugins     = /usr/share/ansible_plugins/action_plugins
 21     callback_plugins   = /usr/share/ansible_plugins/callback_plugins
 22     connection_plugins = /usr/share/ansible_plugins/connection_plugins
 23     lookup_plugins     = /usr/share/ansible_plugins/lookup_plugins
 24     vars_plugins       = /usr/share/ansible_plugins/vars_plugins
 25     filter_plugins     = /usr/share/ansible_plugins/filter_plugins
 26     fact_caching = memory
 27     [accelerate]
 28     accelerate_port = 5099
 29     accelerate_timeout = 30
 30     accelerate_connect_timeout = 5.0
 31     # The daemon timeout is measured in minutes. This time is measured
 32     # from the last activity to the accelerate daemon.
 33     accelerate_daemon_timeout = 30

 

免密登陸

因為ansible是基於ssh工作,所以在使用ansible之前要先給各個伺服器製作ssh免密登陸

ssh免密登陸教程

用法

  1 ansible users1 -m command -a 'ls /etc/rc.local'
  2 # |        |    |    |     |          |
  3 # |        |    |    |     |          |_________________要執行的命令
  4 # |        |    |    |     |
  5 # |        |    |    |     |____________________________接命令
  6 # |        |    |    |
  7 # |        |    |    |__________________________________模塊
  8 # |        |    |
  9 # |        |    |_______________________________________接模塊
 10 # |        |
 11 # |        |____________________________________________組/IP
 12 # |
 13 # |_____________________________________________________ansible

 

遠程執行命令模塊

shell模塊

  1 # 在/tmp/1.txt寫入hello
  2 ansible users1 -m shell -a 'echo "hello" > /tmp/1.txt'
  1 # 查看/tmp/1.txt文件內容
  2 ansible users1 -m shell -a 'cat /tmp/1.txt'

 

command模塊

  1 ansible users1 -m command -a 'ls /etc/rc.local'

 

其他模塊

copy模塊(將本地文件拷貝到伺服器)

  1 ansible users1 -m copy -a 'src=/root/passwd dest=/tmp/passwd mode=0777 ownes=user group=youboy'

備註:src本地文件;dest客戶端目錄;修改許可權mode=0777 ;用戶ownes=user ;用戶組group=youboy

// 指定內容寫入到文件

  1 ansible users1 -m copy -a 'content="hello word" dest=/tmp/test.txt mode=0777'

 

fetch模塊(將伺服器上的文件拷貝到本地)

  1 ansible users1 -m fetch -a 'src=/etc/passwd dest=/tmp/passwd'

file模塊

  1 //刪除文件
  2 ansible users1 -m file -a 'past=/tmp/passwd state=adsent'
  3 //創建軟連接
  4 ansible users1 -m file -a 'src=/etc/passwd path=/tmp/passwd.link state=link'
  5 //修改用戶許可權
  6 ansible users1 -m file -a 'path=/tmp/passwd mode=0777 ownes=user group=youboy'

疑問?
///伺服器上的文件拷貝到其他目錄

  1 ansible users1 -m copy -a 'path=/etc/passwd dest=/tmp/passwd'

cron模塊(計劃任務)

  1 ansible users1 -m cron -a 'minute=10 hour=02 day=15 moneth=12 weekday=7 name="test" job="date > /tmp/date.txt"'
  2 //使用shell模塊驗證計劃任務
  3 ansible users1 -m shell -a 'crontab -l'
  4 //清除計劃任務(使用ansible users1 -m cron -a name="test" state=absent''可能無效,使用全命令清除即可)
  5 ansible users1 -m cron -a 'minute=10 hour=02 day=15 moneth=12 weekday=7 name="test" job="date > /tmp/date.txt" state=absent'
  6 //使用shell模塊驗證清除的計劃任務

hostname模塊(臨時修改主機名)

  1 ansible 192.168.1.2 -m hostname -a 'name=jiahui.com'

yum模塊

  1 ansible users1 -m yum -a 'name=httpd state=installed'

present 查看安裝
installed 安裝
latest 升級安裝
absent 卸載

service模塊(操作服務)

  1 //啟動服務
  2 ansible users1 -m service -a 'name=httpd state=started'

started 啟動服務
stopped 關閉服務

  1 /開機自啟
  2 ansible users1 -m service -a 'name=httpd enabled=yes runlevel=2345'

備註:runlevel 運行級別(0123456 7個級別,如下)

  1 chkconfig --list | grep httpd
  2 httpd           0:關閉  1:關閉  2:關閉  3:關閉  4:關閉  5:關閉  6:關閉

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天我突然發現我一點也忍受不了在UWP應用、wi10視窗、設置等界面無法使用滑鼠滑輪了。這個bug已經困擾了我差不多一年了,從買了這台筆記本就開始了。而且這個問題在中間的某一次升級系統後,也修複了,但後來卻又開始有了。雖然我為了這個問題已經在百度上百度了很多次了,但沒有一次可以幫到我。百度上的解答只 ...
  • 定義一個變數aaa 實現計算的四種方法: 簡單shell小例子:利用for迴圈列印字元小於7的單詞 ...
  • 1 #!/bin/bash 2 # 功能描述:LAMP自動安裝腳本 3 4 # 初始化 5 if [ "$(cat /etc/system-release | awk '{print $(NF-1)}' | awk -F"." '{print $1}')" -ne 7 ] 6 then 7 echo... ...
  • VPN 為了防止信息泄露,節省搭建專線私有網路成本,在互聯網上構造一個虛擬的網路 TSL/SSL 對http通信進行對稱加密,發送公鑰時採用的公鑰加密方式 ...
  • 一、命令介紹 uptime命令 uptime命令用於查看系統負載信息以及系統運行時間等。 free命令 free命令用於查看當前系統中記憶體使用量信息。 二、實例 uptime命令實例 直接運行 uptime命令 左面第一條信息14:45:40 , 是當前系統時間 第二條信息 up 24min ,指系 ...
  • Linux I/O重定向 標準輸入(stdin):文件描述符0 標準輸入(stdout):文件描述符1 標準錯誤(stderr):文件描述符2 file descriptors(FD,文件描述符 或 Process I/O channels); 進程使用文件描述符來管理打開的文件 0, 1, and ...
  • 一、應用場景介紹 本文主要是介紹Redis集群在Linux環境下的安裝講解,聯網環境安裝較為簡單,這裡只說離線的Linux環境下是如何安裝的。因為大多數時候,公司的生產環境是在內網環境下,無外網,伺服器處於離線狀態。 二、安裝環境及工具 系統:CentOS7 工具:XShell5及Xftp5 安裝包 ...
  • 前言 Lepus的慢查詢分析平臺是獨立於監控系統的模塊,該功能需要使用percona toolkit工具來採集和記錄慢查詢日誌,並且需要部署一個我們提供的shell腳本來進行數據採集。該腳本會自動開啟您資料庫的慢查詢日誌,並對慢查詢日誌進行按小時的切割,並收集慢查詢日誌的數據到監控機資料庫。隨後您通 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...