Ansible常用模塊

来源:https://www.cnblogs.com/tushanbu/archive/2022/10/24/16820238.html
-Advertisement-
Play Games

Ansible常用模塊 Ansible常用模塊詳解 ansible常用模塊有: ping yum template copy user group service raw command shell script file ansible常用模塊raw、command、shell的區別: shell ...


Ansible常用模塊


目錄

Ansible常用模塊詳解

ansible常用模塊有:

ping
yum
template
copy
user
group
service
raw
command
shell
script
file

ansible常用模塊raw、command、shell的區別:

  1. shell模塊調用的/bin/sh指令執行
  2. command模塊不是調用的shell的指令,所以沒有bash的環境變數
  3. raw很多地方和shell類似,更多的地方建議使用shell和command模塊。但是如果是使用老版本python,需要用到raw,又或者是客戶端是路由器,因為沒有安裝python模塊,那就需要使用raw模塊了

ansible常用模塊之ping

//將受控主機加入ansible清單
[root@ansible ~]# cd /etc/ansible/
[root@ansible ansible]# ls
ansible.cfg  hosts  roles
[root@ansible ansible]# touch inventory
[root@ansible ansible]# ls
ansible.cfg  hosts  inventory  roles
[root@ansible ansible]# vim ansible.cfg 
#inventory      = /etc/ansible/hosts    //取消註釋並修改為下麵這樣
inventory       = /etc/ansible/inventory
[root@ansible ansible]# vim inventory 
[root@ansible ansible]# cat inventory 
[web]
192.168.222.137
[root@ansible ansible]# ansible all -m ping
192.168.222.137 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": false,
    "ping": "pong"
}

ansible常用模塊之command

command模塊用於在遠程主機上執行命令,ansible預設就是使用command模塊。

command模塊有一個缺陷就是不能使用管道符和重定向功能。

//查看受控主機的/tmp目錄內容
[root@ansible ansible]# ansible 192.168.222.137 -a 'ls /tmp'
192.168.222.137 | CHANGED | rc=0 >>
a
ansible_command_payload_pgp9m_c8
systemd-private-ddc74647b1614d9f97693ed56992353e-nginx.service-LcMflb
vmware-root_901-3988228452
vmware-root_903-3979774182
//在受控主機的/tmp目錄下新建一個文件test
[root@ansible ansible]# ansible 192.168.222.137 -a 'touch /tmp/test'
[WARNING]: Consider using the file module with state=touch rather than running 'touch'.  If you need to
use command because file is insufficient you can add 'warn: false' to this command task or set
'command_warnings=False' in ansible.cfg to get rid of this message.
192.168.222.137 | CHANGED | rc=0 >>

[root@ansible ansible]# ansible 192.168.222.137 -a 'ls /tmp'
192.168.222.137 | CHANGED | rc=0 >>
a
ansible_command_payload_l91ypv4n
systemd-private-ddc74647b1614d9f97693ed56992353e-nginx.service-LcMflb
test
vmware-root_901-3988228452
vmware-root_903-3979774182
//command模塊不支持管道符,不支持重定向
[root@ansible ansible]# ansible 192.168.222.137 -a "echo 'hello world' > /tmp/test"
192.168.222.137 | CHANGED | rc=0 >>
hello world > /tmp/test
[root@ansible ansible]# ansible 192.168.222.137 -a 'cat /tmp/test'
192.168.222.137 | CHANGED | rc=0 >>

[root@ansible ansible]# ansible 192.168.222.137 -a 'ps -ef|grep vsftpd'
192.168.222.137 | FAILED | rc=1 >>
error: unsupported SysV option

Usage:
 ps [options]

 Try 'ps --help <simple|list|output|threads|misc|all>'
  or 'ps --help <s|l|o|t|m|a>'
 for additional help text.

For more details see ps(1).non-zero return code

ansible常用模塊之raw

raw模塊用於在遠程主機上執行命令,其支持管道符與重定向

[root@ansible ansible]# ansible 192.168.222.137 -m raw -a 'echo "hello world" > /tmp/test'
192.168.222.137 | CHANGED | rc=0 >>
Shared connection to 192.168.222.137 closed.

[root@ansible ansible]# ansible 192.168.222.137 -a 'cat /tmp/test'
192.168.222.137 | CHANGED | rc=0 >>
hello world
[root@ansible ansible]# ansible 192.168.222.137 -m raw -a 'cat /tmp/test|grep -Eo hello'
192.168.222.137 | CHANGED | rc=0 >>
hello
Shared connection to 192.168.222.137 closed.

ansible常用模塊之shell

shell模塊用於在受控機上執行受控機上的腳本,亦可直接在受控機上執行命令。
shell模塊亦支持管道與重定向。

//查看受控機上的腳本
[root@nginx ~]# mkdir /scripts/
[root@nginx ~]# cd /scripts/
[root@nginx scripts]# vim test.sh
[root@nginx scripts]# cat test.sh 
#!/bin/bash
my_arry=$(seq 1 10)
for i in ${my_arry[@]};do
    echo $i
done
[root@nginx scripts]# chmod +x test.sh 
[root@nginx scripts]# cd
[root@nginx ~]# ll /scripts/
total 4
-rwxr-xr-x 1 root root 76 Oct 24 02:33 test.sh
//使用shell模塊在主控機上執行受控機上的腳本
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a '/bin/bash /scripts/test.sh &> /tmp/test'
192.168.222.137 | CHANGED | rc=0 >>

[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'cat  /tmp/test'
192.168.222.137 | CHANGED | rc=0 >>
1
2
3
4
5
6
7
8
9
10

ansible常用模塊之script

script模塊用於在受控機上執行主控機上的腳本

[root@ansible ansible]# mkdir -p /scripts
[root@ansible ansible]# vim /scripts/test.sh
[root@ansible ansible]# cat /scripts/test.sh 
#!/bin/bash
my_arry=$(seq 1 10)
for i in ${my_arry[@]};do
    echo $i
done

[root@ansible ansible]# ansible 192.168.222.137 -m script -a '/scripts/test.sh'
192.168.222.137 | CHANGED => {
    "changed": true,
    "rc": 0,
    "stderr": "Shared connection to 192.168.222.137 closed.\r\n",
    "stderr_lines": [
        "Shared connection to 192.168.222.137 closed."
    ],
    "stdout": "1\r\n2\r\n3\r\n4\r\n5\r\n6\r\n7\r\n8\r\n9\r\n10\r\n",
    "stdout_lines": [
        "1",
        "2",
        "3",
        "4",
        "5",
        "6",
        "7",
        "8",
        "9",
        "10"
    ]
}

ansible常用模塊之template

template模塊用於生成一個模板,並可將其傳輸至遠程主機上。

//將設置好的阿裡源傳到受控主機
[root@ansible ~]# cd /etc/yum.repos.d/
[root@ansible yum.repos.d]# rm -rf *
[root@ansible yum.repos.d]# curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo     
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  2495  100  2495    0     0   3574      0 --:--:-- --:--:-- --:--:--  3574
[root@ansible yum.repos.d]# sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
[root@ansible yum.repos.d]# cd
[root@ansible ~]# ansible nginx  -m template -a 'src=/etc/yum.repos.d/CentOS-Base.repo  dest=/etc/yum.repos.d/CentOS-Base.repo'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "checksum": "8bbf30b2d80c3b97292ca7b32f33ef494269a5b8",
    "dest": "/etc/yum.repos.d/CentOS-Base.repo",
    "gid": 0,
    "group": "root",
    "md5sum": "ed031c350da2532e6a8d09a4d9b05278",
    "mode": "0644",
    "owner": "root",
    "secontext": "system_u:object_r:system_conf_t:s0",
    "size": 1653,
    "src": "/root/.ansible/tmp/ansible-tmp-1666511143.7368824-130351-128775339422969/source",
    "state": "file",
    "uid": 0
}
//查看受控主機上面
[root@nginx ~]# ls /etc/yum.repos.d/
CentOS-Base.repo

ansible常用模塊之yum

yum模塊用於在指定節點機器上通過yum管理軟體,其支持的參數主要有兩個

  1. name:要管理的包名

  2. state:要進行的操作
    state常用的值:

  3. latest:安裝軟體

  4. installed:安裝軟體

  5. present:安裝軟體

  6. removed:卸載軟體

  7. absent:卸載軟體
    若想使用yum來管理軟體,請確保受控機上的yum源無異常。

//在受控機上查詢看vsftpd軟體是否安裝
[root@nginx ~]# rpm -qa|grep vsftpd
[root@nginx ~]# 
//在ansible主機上使用yum模塊在受控機上安裝vsftpd
[root@ansible ansible]# ansible 192.168.222.137 -m yum -a 'name=vsftpd state=present'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "msg": "",
    "rc": 0,
    "results": [
        "Installed: vsftpd-3.0.3-34.el8.x86_64"
    ]
}
//查看受控機上是否安裝了vsftpd
[root@nginx ~]# rpm -qa|grep vsftpd
vsftpd-3.0.3-34.el8.x86_64

ansible常用模塊之copy

copy模塊用於複製文件至遠程受控機。

[root@ansible ansible]# ls xbz
ssh  ssh.sh
[root@ansible ansible]# ansible 192.168.222.137 -m copy -a 'src=/etc/ansible/xbz/ssh.sh dest=/xbz/'192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "checksum": "da39a3ee5e6b4b0d3255bfef95601890afd80709",
    "dest": "/xbz/ssh.sh",
    "gid": 0,
    "group": "root",
    "md5sum": "d41d8cd98f00b204e9800998ecf8427e",
    "mode": "0644",
    "owner": "root",
    "size": 0,
    "src": "/root/.ansible/tmp/ansible-tmp-1666551783.8760731-1363195-260276005042864/source",
    "state": "file",
    "uid": 0
}
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'ls /xbz/'
192.168.222.137 | CHANGED | rc=0 >>
ssh.sh

ansible常用模塊之group

group模塊用於在受控機上添加或刪除組。

//在受控機上添加一個系統組,其gid為306,組名為mysql
[root@ansible ansible]# ansible 192.168.222.137 -m group -a 'name=mysql gid=306 state=present'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "gid": 306,
    "name": "mysql",
    "state": "present",
    "system": false
}
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'grep mysql /etc/group'
192.168.222.137 | CHANGED | rc=0 >>
mysql:x:306:
//刪除受控機上的mysql組
[root@ansible ansible]# ansible 192.168.222.137 -m group -a 'name=mysql state=absent'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "name": "mysql",
    "state": "absent"
}
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'grep mysql /etc/group'
192.168.222.137 | FAILED | rc=1 >>
non-zero return code

ansible常用模塊之user

user模塊用於管理受控機的用戶帳號。

//在受控機上添加一個系統用戶,用戶名為mysql,uid為306,設置其shell為/sbin/nologin,無家目錄
[root@ansible ansible]# ansible 192.168.222.137 -m user -a 'name=mysql uid=306 system=yes create_home=no shell=/sbin/nologin state=present'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "comment": "",
    "create_home": false,
    "group": 306,
    "home": "/home/mysql",
    "name": "mysql",
    "shell": "/sbin/nologin",
    "state": "present",
    "system": true,
    "uid": 306
}
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'grep mysql /etc/passwd'
192.168.222.137 | CHANGED | rc=0 >>
mysql:x:306:306::/home/mysql:/sbin/nologin
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'ls /home'
192.168.222.137 | CHANGED | rc=0 >>
nginx
//修改mysql用戶的uid為366
[root@ansible ansible]# ansible 192.168.222.137 -m user -a 'name=mysql uid=366'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "append": false,
    "changed": true,
    "comment": "",
    "group": 306,
    "home": "/home/mysql",
    "move_home": false,
    "name": "mysql",
    "shell": "/sbin/nologin",
    "state": "present",
    "uid": 366
}
[root@ansible ansible]# ansible 192.168.222.137  -m shell -a 'grep mysql /etc/passwd'
192.168.222.137 | CHANGED | rc=0 >>
mysql:x:366:306::/home/mysql:/sbin/nologin
//刪除受控機上的mysql用戶
[root@ansible ansible]# ansible 192.168.222.137  -m shell -a 'grep mysql /etc/passwd'
192.168.222.137 | CHANGED | rc=0 >>
mysql:x:366:306::/home/mysql:/sbin/nologin
[root@ansible ansible]# ansible 192.168.222.137 -m user -a 'name=mysql state=absent'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "force": false,
    "name": "mysql",
    "remove": false,
    "state": "absent"
}
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'grep mysql /etc/passwd'
192.168.222.137 | FAILED | rc=1 >>
non-zero return code

ansible常用模塊之service

service模塊用於管理受控機上的服務。

//查看受控機上的vsftpd服務是否啟動
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'systemctl is-active vsftpd'
192.168.222.137 | FAILED | rc=3 >>
inactivenon-zero return code
[root@ansible ansible]# ansible 192.168.222.137 -m service -a 'name=vsftpd state=started'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
    "name": "vsftpd",
    "state": "started",
    "status": {
        "ActiveState": "inactive",
//查看受控機上的vsftpd服務是否啟動
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'systemctl is-active vsftpd'
192.168.222.137 | CHANGED | rc=0 >>
active
//查看受控機上的vsftpd服務是否開機自動啟動
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'systemctl is-enabled vsftpd'
192.168.222.137 | FAILED | rc=1 >>
disablednon-zero return code
//設置受控機上的vsftpd服務開機自動啟動
[root@ansible ansible]# ansible 192.168.222.137 -m service -a 'name=vsftpd enabled=yes'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
    "changed": true,
//查看受控機上的vsftpd服務是否開機自動啟動
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'systemctl is-enabled vsftpd'
192.168.222.137 | CHANGED | rc=0 >>
enabled
//停止受控機上的vsftpd服務
[root@ansible ansible]# ansible 192.168.222.137 -m service -a 'name=vsftpd state=stopped'
192.168.222.137 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/libexec/platform-python"
    },
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'systemctl is-active vsftpd'
192.168.222.137 | FAILED | rc=3 >>
inactivenon-zero return code
[root@ansible ansible]# ansible 192.168.222.137 -m shell -a 'ss -antl'
192.168.222.137 | CHANGED | rc=0 >>
State  Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
LISTEN 0      128          0.0.0.0:80        0.0.0.0:*          
LISTEN 0      128          0.0.0.0:22        0.0.0.0:*          
LISTEN 0      128             [::]:22           [::]:*          

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

-Advertisement-
Play Games
更多相關文章
  • 什麼是標識符? 標識符是用來標識變數、函數、類、模塊,或者任何其他用戶自定義項目的名稱,用它來命名程式正文中的一些實體,比如函數名、變數名、類名、對象名等。如:int a1=0; const b1="hello"中 a1和b1都是標識符,不過a1是變數,也就是存儲單元的標識符,b1是數據字元串的標識 ...
  • 前言 最近學校開設了JAVA_EE課程,課上講到了struts1框架,並且需要做相關試驗。由於習慣了使用IDEA,便嘗試在IDEA上部署struts1框架。 環境 windows10 21H2 IntelliJ IDEA 2022.1.4 (Ultimate Edition) ps: 如果是在校學生 ...
  • 設計一個程式統計某班全體學生3門課的考試成績。要求先輸入學生人數,並輸入每個學生的三門成績,統計出每門課程的全班平均分及每個考生所有考試的總分。 #include<stdio.h>#include<math.h>int b,i,q,j,n,sum,avg,all;int a[20][3];//可以為 ...
  • C語言實現staque結構 1. 使用說明 staque結構以單鏈表方式實現,結合了stack與queue結構:pop_front+push_front使用方式為stack;pop_front+push_back使用方式是queue。 首尾插入和頂部彈出是運行效率最高的,此外還實現了任意位置的插入、 ...
  • 原創:扣釘日記(微信公眾號ID:codelogs),歡迎分享,轉載請保留出處。 簡介 前面在密碼學入門一文中講解了各種常見的密碼學概念、演算法與運用場景,但沒有介紹過代碼,因此,為作補充,這一篇將會介紹使用Java語言如何實現使用這些演算法,並介紹一下使用過程中可能遇到的坑。 Java加密體系JCA J ...
  • 之前在學習servlet和jsp時學習了過濾器Filter,使用過濾器需要實現Filter介面,它能夠在請求到servlet之前攔截請求,並且根據需求對請求進行相應的處理。 攔截器跟過濾器非常相似,SpringMVC攔截器是通過實現HandlerInterceptor介面實現的,它其實是AOP的一種 ...
  • 本文主要概述 Logstash 的一些最受歡迎的輸入插件,以大致瞭解 Logstash 的用途;相關的環境及軟體信息如下:CentOS 7.9、Logstash 8.2.2。 1、什麼是 Logstash input 插件 Logstash 用作日誌管道,用於偵聽已配置日誌源(例如,應用程式,資料庫 ...
  • 1、如何在Asp.Net Core中激活Session功能 首先添加Session包,其次在ConfigService方法中添加Session,然後在ConfigService中調用useSession。 2、什麼是中間件 指註入到應用中處理請求和響應的組件,是通過多個嵌套形成的 3、Applica ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...