1. 程式人生 > >超詳細Ansible安裝及模組詳解

超詳細Ansible安裝及模組詳解

簡介:
ansible是新出現的自動化運維工具,基於Python開發,集合了眾多運維工具(puppet、cfengine、chef、func、fabric)的優點,實現了批量系統配置、批量程式部署、批量執行命令等功能。

ansible是基於模組工作的,本身沒有批量部署的能力。真正具有批量部署的是ansible所執行的模組,ansible只是提供一種框架。主要包括:

(1)、連線外掛connection plugins:負責和被監控端實現通訊;

(2)、host inventory:指定操作的主機,是一個配置檔案裡面定義監控的主機;

(3)、各種模組核心模組、command模組、自定義模組;

(4)、藉助於外掛完成記錄日誌郵件等功能;

(5)、playbook:劇本執行多個任務時,非必需可以讓節點一次性執行多個任務
超詳細Ansible安裝及模組詳解
實驗環境介紹:
三臺CentOS7伺服器
管理端:192.168.120.138
被管理端:192.168.120.139
被管理端:192.168.120.140
具體部署步驟:
[[email protected] ~]# hostname manage
[[email protected] ~]# bash
[[email protected] ~]# systemctl stop firewalld.service //關閉防火牆
[[email protected]

~]# setenforce 0
[[email protected] ~]# yum install epel-release -y //安裝epel源
[[email protected] ~]# yum install ansible -y //安裝ansible
##檢視版本號##
[[email protected] ~]# ansible --version
[[email protected] ~]# yum install tree -y
[[email protected] ~]# tree /etc/ansible //樹狀結構展示資料夾
/etc/ansible
├── ansible.cfg #ansible的配置檔案
├── hosts #ansible的主倉庫,用於儲存需要管理的遠端主機的相關資訊
└── role #角色

[[email protected] ~]# vim /etc/ansible/hosts //配置主機清單
##第25行插入##
[webserver]
192.168.120.139
[mysql]
192.168.120.140

[[email protected] ~]# ssh-keygen -t rsa //生成金鑰對,根據提示輸入密碼(我輸入的是abc123)
[[email protected] ~]# cd .ssh/
[[email protected] .ssh]# ls
id_rsa id_rsa.pub #私鑰/公鑰

##將金鑰推送給兩臺被管理機
[[email protected] .ssh]# ssh-copy-id [email protected] //過程需要輸入被管理機器的登入密碼
[[email protected] .ssh]# ssh-copy-id [email protected]
##登入連線對方(方法一,主機名)
[[email protected] .ssh]# ansible webserver -m command -a 'date'
Enter passphrase for key '/root/.ssh/id_rsa': //密碼為剛才輸入的密碼abc123
192.168.120.139 | CHANGED | rc=0 >>
2018年 10月 17日 星期三 15:10:53 CST

##方法二:IP
[[email protected] .ssh]# ansible 192.168.120.140 -m command -a 'date'
Enter passphrase for key '/root/.ssh/id_rsa':
192.168.120.140 | CHANGED | rc=0 >>
2018年 10月 17日 星期三 15:12:29 CST

---------免互動代理--------------
[[email protected] .ssh]# ssh-agent bash
[[email protected] .ssh]# ssh-add
Enter passphrase for /root/.ssh/id_rsa: //輸入密碼abc123
Identity added: /root/.ssh/id_rsa (/root/.ssh/id_rsa)
##再進行登入
[[email protected] .ssh]# ansible mysql -m command -a 'date'
192.168.120.140 | CHANGED | rc=0 >> //無需密碼,直接登入
2018年 10月 17日 星期三 15:15:20 CST
===========模組詳解==========
---------ansible命令列模組--------
------command模組------
命令格式:ansible [主機] [-m 模組] [-a args]

[[email protected] .ssh]# ansible all -a 'date'
192.168.120.140 | CHANGED | rc=0 >>
2018年 10月 17日 星期三 15:34:18 CST

192.168.120.139 | CHANGED | rc=0 >>
2018年 10月 17日 星期三 15:34:18 CST

ansible-doc -l //列出所有已安裝的模組 注:按q退出
ansible-doc -s yum //-s列出yum模組描述資訊和操作動作

ansible 192.168.80.182 -m command -a 'date' //指定ip執行date
ansible webserver -m command -a 'date' //指定分類執行date
ansible mysql -m command -a 'date'
ansible all -m command -a 'date' //所有hosts主機執行date命令
ansible all -a 'ls /' 如果不加-m模組,則預設執行command模組

-----cron模組------
兩種狀態(state):present表示新增(可以省略),absent表示移除。
ansible-doc -s cron //檢視cron模組資訊
ansible webserver -m cron -a 'minute="*/1" job="/bin/echo heihei" name="test cron job"'
ansible webserver -a 'crontab -l'
ansible webserver -m cron -a 'name="test cron job" state=absent' //移除計劃任務,假如該計劃任務沒有取名字,name=None即可

-----user模組------
user模組是請求的是useradd, userdel, usermod三個指令
ansible-doc -s user
ansible mysql -m user -a 'name="test01"' //建立使用者test01
ansible mysql -m command -a 'tail /etc/passwd'
ansible mysql -m user -a 'name="test01" state=absent' //刪除使用者test01

-----group模組-----
group模組請求的是groupadd, groupdel, groupmod 三個指令。
ansible-doc -s group
ansible mysql -m group -a 'name=mysql gid=306 system=yes'
ansible mysql -a 'tail /etc/group'
ansible mysql -m user -a 'name=test01 uid=306 system=yes group=mysql'
ansible mysql -a 'tail /etc/passwd'
ansible mysql -a 'id test01'

------copy模組--------
ansible-doc -s copy
ansible mysql -m copy -a 'src=/etc/fstab dest=/opt/fstab.back owner=root mode=640'
ansible mysql -a 'ls -l /opt'
ansible mysql -a 'cat /opt/fstab.back'

ansible mysql -m copy -a 'content="hello heihei!"
dest=/opt/fstab.back' //將hello heihei!寫入/opt/fstab.back
ansible mysql -a 'cat /opt/fstab.back'

------file模組--------
ansible-doc -s file
ansible mysql -m user -a 'name=mysql system=yes'
ansible mysql -m group -a 'name=mysql system=yes'
ansible mysql -m file -a 'owner=mysql group=mysql mode=644 path=/opt/fstab.back' //修改檔案的屬主屬組許可權等
ansible mysql -m file -a 'path=/opt/fstab.link src=/opt/fstab.back state=link' //設定/opt/fstab.link為/opt/fstab.back的連結檔案
ansible mysql -m file -a "path=/opt/fstab.back state=absent" //刪除一個檔案
ansible mysql -m file -a "path=/opt/test state=touch" 建立一個檔案

-----ping模組-------
ansible all -m ping

-----service模組--------
ansible-doc -s service
[[email protected] ~]# yum install -y httpd
[[email protected] ~]# ansible webserver -a 'systemctl status httpd' //檢視web伺服器httpd執行狀態
ansible webserver -m service -a 'enabled=true name=httpd state=started' //啟動httpd服務
[[email protected] ~]# systemctl status httpd //檢視是否開啟

------shell模組-----
ansible-doc -s shell
ansible mysql -m shell -a 'echo abc123|passwd --stdin mysql' //建立使用者使用無互動模式給使用者設定密碼

------script模組---------
ansible-doc -s script
vi test.sh
#!/bin/bash
echo "hello ansible from script"> /opt/script.txt

chmod +x test.sh
ansible mysql -m script -a 'test.sh'
[[email protected] ~]# cat /opt/script.txt

-----yum模組-----
ansible-doc -s yum
ansible mysql -m yum -a 'name=zsh' //yum安裝zsh
[[email protected] ~]# rpm -q zsh

ansible mysql -m yum -a 'name=zsh state=absent' //解除安裝zsh
[[email protected] ~]# rpm -q zsh

-----setup模組-------
ansible-doc -s setup
ansible mysql -m setup //獲取mysql組主機的facts資訊