ansible默認的主機清單是/etc/ansible/hosts文件,主機清單能夠手動設置,也能夠經過Dynamic Inventory動態生成,通常主機名使用FQDN
vim /etc/ansible/hosts [webserver] #方括號設置組名 www1.example.org #定義被監控主機,這邊能夠是主機名也能夠是IP地址,主機名須要修改/etc/hosts文件 www2.example.org:2222 #冒號後定義遠程鏈接端口,默認是ssh的22端口
若是是名稱相似的主機,可使用列表的方式標識各個主機
[webserver] www[01:50].example.org ansible_ssh_user=root ansible_ssh_pass=123456 [dbbservers] db-[a:f].example.org
[webserver] www1.magedu.com http_port=80 maxRequestsChild=808 www2.magedu.com http_port=8080 maxRequestsChild=909
[servers:vars] ntp_server=ntp.example.org nfs_server=nfs.example.org
[apache] http1.example.org http2.example.org [nginx] ngx1.example.org ngx2.example.org [webservers:children] apache nginx
參數 | 說明 |
---|---|
ansible_ssh_host | 將要鏈接的遠程主機名.與你想要設定的主機的別名不一樣的話,可經過此變量設置 |
ansible_ssh_port | ssh端口號.若是不是默認的端口號,經過此變量設置 |
ansible_ssh_user | 默認的 ssh 用戶名 |
ansible_ssh_pass | ssh 密碼(這種方式並不安全,咱們強烈建議使用 --ask-pass 或 SSH 密鑰) |
ansible_ssh_private_key_file | ssh 使用的私鑰文件.適用於有多個密鑰,而你不想使用 SSH 代理的狀況 |
ansible_ssh_common_args | 此設置附加到sftp,scp和ssh的缺省命令行 |
ansible_sftp_extra_args | 此設置附加到默認sftp命令行 |
ansible_scp_extra_args | 此設置附加到默認scp命令行 |
ansible_ssh_extra_args | 此設置附加到默認ssh命令行 |
ansible_ssh_pipelining | 肯定是否使用SSH管道. 這能夠覆蓋ansible.cfg中得設置 |
ansible_shell_type | 目標系統的shell類型.默認狀況下,命令的執行使用 'sh' 語法,可設置爲 'csh' 或 'fish' |
ansible_python_interpreter | 目標主機的 python 路徑.適用於的狀況: 系統中有多個 Python, 或者命令路徑不是"/usr/bin/python",好比 *BSD, 或者 /usr/bin/python |
ansible_*_interpreter | 這裏的"*"能夠是ruby 或perl 或其餘語言的解釋器,做用和ansible_python_interpreter 相似 |
ansible_shell_executable | 這將設置ansible控制器將在目標機器上使用的shell,覆蓋ansible.cfg中的配置,默認爲/bin/sh |
YAML:另外一種標記語言。是用來寫配置文件的語言,很是簡潔和強大。 YAML語法和其餘語言相似,也能夠表達散列表、標量等數據結構。 結構經過空格來展現;序列裏配置項經過-來表明;Map裏鍵值用:來分隔;YAML的擴展名爲yaml
基本語法規則php
1.大小寫敏感 2.使用縮進表示層級關係 3.縮進時不容許使用Tab鍵,只容許使用空格。 4.縮進的空格數目不重要,只要相同層級的元素左側對齊便可
1.對象:鍵值對的集合,又稱爲映射(mapping)/ 哈希(hashes) / 字典(dictionary) 例如:name:Example Developer 鍵 值 2.數組:一組按次序排列的值,又稱爲序列(sequence) / 列表(list) 例如:-Apple -Orange 3.純量:單個的、不可再分的值 例如:number:12.30 sure:true
name:zhangsan age:20 name:lisi age:22 people:
-name:zhangsan age:20 -name:lisi age:22
Playbook是一種徹底不一樣的運用ansible的方式,相似與saltstack的state狀態文件。ad-hoc沒法持久使用,playbook能夠持久使用。 playbook是由一個或多個play組成的列表,play的主要功能在於將事先歸併爲一組的主機裝扮成事先經過ansible中的task定義好的角色。從根本上來說,所謂的task無非是調用ansible的一個module。將多個play組織在一個playbook中,便可以讓它們聯合起來按事先編排的機制完成某一任務。經過task調用ansible的模板將多個play組織在一個playbook中運行。
名稱 | 含義 |
---|---|
Hosts | 執行的遠程主機列表 |
Tasks | 任務集,即調用模塊完成的某操做 |
Varniables | 變量,內置變量或自定義變量在playbook中調用 |
Templates | 模板,即便用模板語法的文件,好比配置文件等 |
Handlers | 處理器,和notity結合使用,由特定條件觸發的操做,知足條件方纔執行,不然不執行 |
tags | 標籤,指定某條任務執行,用於選擇運行playbook中的部分代碼 |
Roles | 角色 |
一、playbook使用yaml語法格式,後綴能夠是yaml,也能夠是yml。 在單一的一個playbook文件中,能夠連續三個連子號(---)區分多個play。還有選擇性的連續三個點好(...)用來表示play的結尾,也可省略。 二、當行開始正常寫playbook的內容,通常都會寫上描述該playbook的功能。 三、使用#號註釋代碼。 四、縮進必須統一,不能空格和tab混用。縮進的級別也必須是一致的,一樣的縮進表明一樣的級別,程序判別配置的級別是經過縮進結合換行實現的。 五、YAML文件內容和Linux系統大小寫判斷方式保持一致,是區分大小寫的,k/v的值均需大小寫敏感 六、k/v的值可同行寫也能夠換行寫。同行使用:分隔。v能夠是個字符串,也能夠是一個列表 七、一個完整的代碼塊功能須要最少元素包括 name: task
vim a.yaml - hosts: webserver #定義的主機組,即應用的主機 vars: #定義變量 http_port: 80 max_clients: 200 user: root tasks: #執行的任務 - name: ensure apache is at the latest version yum: pkg=httpd state=latest - name: write the apache config file template: src=/srv/httpd.j2 dest=/etc/httpd.conf notify: - restart apache - name: ensure apache is running service: name=httpd state=started handlers: #處理器 - name: restart apache service: name=httpd state=restarted
ansible-playbook [yaml文件名]
實例演示:python
#執行劇本 ansible-playbook ping.yaml
參數:mysql
-k(–ask-pass) 用來交互輸入ssh密碼 -K(-ask-become-pass) 用來交互輸入sudo密碼 -u 指定用戶
補充命令:linux
#檢查yaml文件的語法是否正確 ansible-playbook nginx.yaml --syntax-check #檢查tasks任務 ansible-playbook nginx.yaml --list-task #檢查生效的主機 ansible-playbook nginx.yaml --list-hosts #指定從某個task開始運行 ansible-playbook nginx.yaml --start-at-task='Copy Nginx.conf'
實例演示:nginx
vim a.yaml - hosts: webserver #指定主機組,能夠是一個或多個組。 remote_user: root #指定遠程主機執行的用戶名 #執行劇本 ansible-playbook a.yaml
!vim - hosts: mysql remote_user: root tasks: - name: test connection ping: remote_user: mysql #指定遠程主機執行tasks的運行用戶爲mysql #執行playbook劇本 ansible-playbook ping.yml -k #驗證語法 ansible-playbook a.yml --syntax-check #執行劇本 ansible-playbook a.yml
!vim - hosts: mysql remote_user: root become: yes #2.6版本之後的參數,以前是sudo,意思爲切換用戶運行 become_user: mysql #指定sudo用戶爲mysql #執行playbook劇本 ansible-playbook ping.yml -K #執行劇本 ansible-playbook a.yml
1.Play的主體部分是task列表,task列表中的各任務按次序逐個在hosts中指定的主機上執行,即在全部主機上完成第一個任務後再開始第二個任務。 在運行playbook時(從上到下執行),若是一個host執行task失敗,整個tasks都會回滾,請修正playbook 中的錯誤,而後從新執行便可。 Task的目的是使用指定的參數執行模塊,而在模塊參數中可使用變量,模塊執行時冪等的,這意味着屢次執行是安全的,由於其結果一致。 2.每個task必須有一個名稱name,這樣在運行playbook時,從其輸出的任務執行信息中能夠很好的辨別出是屬於哪個task的。若是沒有定義name,‘action’的值將會用做輸出信息中標記特定的task。 3.定義一個task,常見的格式:」module: options」 例如:yum: name=httpd 4.ansible的自帶模塊中,command模塊和shell模塊無需使用key=value格式
實例演示:web
vim a.yml - hosts: webserver remote_user: root tasks: - name: disable selinux command: '/sbin/setenforce 0' - name: make sure apache is running service: name=httpd state=started #play中只要執行命令的返回值不爲0,就會報錯,tasks中止 #檢查語法 ansible-playbook a.yml --syntax-check #執行劇本 ansible-playbook a.yml #檢查結果 rpm -q httpd
修改以下內容:正則表達式
!vim - hosts: webserver remote_user: root tasks: - name: disable selinux command: '/sbin/setenforce 0' ignore_errors: True #忽略錯誤,強制返回成功 - name: make sure apache is running service: name=httpd state=started #檢查語法 ansible-playbook a.yml --syntax-check #執行劇本 ansible-playbook a.yml
vim b.yml - hosts: webserver remote_user: root tasks: - name: create nginx group group: name=nginx system=yes gid=208 - name: create nginx user user: name=nginx uid=208 group=nginx system=yes - hosts: mysql remote_user: root tasks: - name: copy file to mysql copy: src=/etc/inittab dest=/opt/inittab.back #檢查語法 ansible-playbook b.yml --syntax-check #執行劇本 ansible-playbook b.yml
Handlers也是一些task的列表,和通常的task並無什麼區別。 是由通知者進行的notify,若是沒有被notify,則Handlers不會執行,假如被notify了,則Handlers被執行 無論有多少個通知者進行了notify,等到play中的全部task執行完成以後,handlers也只會被執行一次
實例演示:sql
vim c.yml - hosts: webserver remote_user: root tasks: - name: install httpd package yum: name=httpd state=latest - name: install configuration file for httpd copy: src=/opt/httpd.conf dest=/etc/httpd/conf/httpd.conf notify: -restart httpd - name: start httpd service service: enabled=true name=httpd state=started handlers: - name: restart httpd service: name=httpd state=restarted #檢查語法 ansible-playbook c.yml --syntax-check #執行劇本 ansible-playbook c.yml
亦可引入一些變量:shell
!vim - hosts: webserver remote_user: root vars: - package: httpd - service: httpd tasks: - name: install httpd package yum: name={{package}} state=latest - name: install configuration file for httpd copy: src=/opt/httpd.conf dest=/etc/httpd/conf/httpd.conf notify: -restart httpd - name: start httpd service service: enabled=true name={{service}} state=started handlers: - name: restart httpd service: name={{service}} state=restarted #檢查語法 ansible-playbook c.yml --syntax-check #執行劇本 ansible-playbook c.yml
1.經過ansible命令傳遞apache
實例演示:
#編輯以下yml vim a.yml - hosts: mysql remote_user: root vars: - user: tasks: - name: add new user user: name={{user}} #執行劇本 ansible-playbook a.yml -e "user=testvar" #執行命令查看文件 ansible mysql -m command -a 'tail /etc/passwd'
2.直接在yaml中定義變量---如上handlers示例
3.直接引用一些變量
實例演示:
vim test.yml - hosts: mysql remote_user: root tasks: - name: copy file copy: content="{{ansible_all_ipv4_addresses}}," dest=/opt/vars.txt #執行劇本 ansible-playbook test.yml #在122主機上查看vars.txt文件內容 cat /opt/vars.txt
vim /etc/ansible/hosts #在mysql組的主機後面添加以下內容 [mysql] 192.168.142.122 testvar="42.122" #定義testvar變量的值爲42.122 vim test.yml #添加{{testvar}}主機變量 - hosts: mysql remote_user: root tasks: - name: copy file copy: content="{{ansible_all_ipv4_addresses}},{{testvar}}" dest=/opt/vars.txt #執行劇本 ansible-playbook test.yml #在122主機上查看vars.txt文件內容 cat /opt/vars.txt
若是須要根據變量、facts(setup)或此前任務的執行結果來做爲某task執行與否的前提時要用到條件測試,在Playbook中條件測試使用when子句。 在task後添加when子句便可使用條件測試:when子句支持正則表達式或語法。
實例演示:
vim when.yml - hosts: mysql remote_user: root tasks: - name: "shutdown CentOS" command: /sbin/shutdown -h now when: ansible_distribution == "CentOS" #執行劇本,執行後會發現192.168.142.122主機已經被關機 ansible-playbook when.yml
vim when.yml - hosts: mysql remote_user: root tasks: - name: "shut down CentOS 6 systems" command: /sbin/shutdown -r now when: - ansible_distribution == "CentOS" - ansible_distribution_major_version == "6" #執行劇本 ansible-playbook when.yml
vim when.yml - hosts: mysql remote_user: root tasks: - name: "shut down CentOS 6 and Debian 7 systems" command: /sbin/shutdown -t now when: (ansible_distribution == "CentOS" and ansible_distribution_major_version == "6") or (ansible_distribution == "Debian" and ansible_distribution_major_version == "7") #執行劇本 ansible-playbook when.yml
vim when.yml - hosts: all vars: exist: "True" tasks: - name: creaet file command: touch /tmp/test.txt when: exist | match("True") - name: delete file command: rm -rf /tmp/test.txt when: exist | match("False") #執行劇本 ansible-playbook when.yml
當有須要重複性執行的任務時,可使用迭代機制。其使用格式爲將須要迭代的內容定義爲item變量引用,並經過with_items語句指明迭代的元素列表便可。
實例演示:
vim d.yml - hosts: webserver remote_user: root tasks: - name: "Install Packages" yum: name={{ item }} state=latest with_items: - httpd - mysql-server - php #檢查語法 ansible-playbook d.yml --syntax-check #執行劇本 ansible-playbook d.yml #在全部主機上查看是否有指定添加的用戶 tail -5 /etc/passwd
亦可自行定義:
vim e.yml - hosts: webserver remote_user: root tasks: - name: "Add users" user: name={{ item.name }} state=present groups={{ item.groups }} with_items: - { name:'test1', groups:'wheel'} - { name:'test2', groups:'root'} #檢查語法 ansible-playbook e.yml --syntax-check #執行劇本 ansible-playbook e.yml #在全部主機上查看是否有指定添加的用戶 tail -5 /etc/passwd
#建立工做目錄 mkdir templates #複製配置文件 cp /etc/httpd/conf/httpd.conf templates/httpd.conf.02 #修改httpd.conf.02文件 vim templates/httpd.conf.02 Listen {{http_port}} ServerName {{ansible_fqdn}} MaxClients {{maxClients}} #修改ansible/hosts文件 vim /etc/ansible/hosts [webserver] 192.168.142.121 http_port=80 maxClients=100 192.168.142.122 http_port=8080 maxClients=200 #編寫劇本 vim apache.yml - hosts: webserver remote_user: root vars: - package: httpd - service: httpd tasks: - name: install httpd package yum: name={{package}} state=latest - name: install configuration file for httpd template: src=/root/templates/httpd.conf.2 dest=/etc/httpd/conf/httpd.conf notify: - restart httpd - name: start httpd service service: enabled=true name={{service}} state=started handlers: - name: restart httpd service: name={{service}} state=restarted #檢查語法 ansible-playbook e.yml --syntax-check #執行劇本 ansible-playbook apache.yml
#在兩臺被管理服務器上查看 grep -i listen /etc/httpd/conf/httpd.conf grep -i maxClient /etc/httpd/conf/httpd.conf grep -i servername /etc/httpd/conf/httpd.conf
在一個playbook中,咱們通常會定義不少個task,若是咱們只想執行其中的某一個task或多個task時就可使用tags標籤功能了。 格式以下:
vim hosts.yml - hosts: webserver remote_user: root tasks: - name: Copy hosts file copy: src=/etc/hosts dest=/etc/hosts tags: - only - name: touch file file: path=/opt/hosts state=touch #檢查語法 ansible-playbook e.yml --syntax-check #執行劇本 ansible-playbook hosts.yml --tags="only" ansible-playbook hosts.ym
事實上,不光能夠爲單個或多個task指定同一個tags。playbook還提供了一個特殊的tags爲always。做用就是當使用always當tags的task時,不管執行哪個tags時,定義有always的tags都會執行。
實例演示:
vim hosts.yml - hosts: webserver remote_user: root tasks: - name: Copy hosts file copy: src=/etc/hosts dest=/etc/hosts tags: - only - name: touch file file: path=/opt/hosts state=touch tags: - always #檢查語法 ansible-playbook e.yml --syntax-check #爲了避免影響這次操做刪除遠程主機中/opt/hosts文件 rm -rf /opt/hosts #執行劇本 ansible-playbook hosts.yml --tags="only"
#分別在兩臺被管理服務器上去查看文件建立狀況 ls /opt/