--- title: ansible 概念基本介紹(DE sharing Day-1) tags: Ansible --- # ansible 概念基本介紹 有沒有完全沒聽過ansible的聽眾?請舉手:raised_hand::raised_hand: ## ansible 介紹 ### 前人們怎麼說ansible >維運自動化工具本來是用來簡化維運工作的,但如果工具本身比較複雜,甚至需要一定的程式開發能力,就會增加使用和推廣的難度。Ansible 有三個最吸引人的地方:無客戶端、簡單易用和日誌集中控管。 Ansible 很簡單,上手方便,不需要啃一本很大本的書才能學會使用 (從這一點來看,這可謂業界良心)。 - 蕭田國 (開放運維聯盟聯合主席,高效運維社區發起人) >我希望自動化的事情盡快完成,這樣我就能有更多時間投入在我更該關注的事情上面。Ansible 並不是一個你需要整天和它打交道的系統。你可以很快地把它拿起來,很快地搞定,然後又很快地回到你更該關心的事情上面。 我希望這些也會成為你喜歡 Ansible 的原因。 - Michael DeHaan (Ansible 軟體的創作者,Ansible, Inc. 前 CTO) ^[ 前人們怎麼說ansible-Reference: <https://chusiang.gitbooks.io/automate-with-ansible/content/02.what-is-the-ansible.html>] ### 簡單來說,ansible呢 1. 自動化工具 2. 簡單開發、易讀 3. 上手容易 想要認真一點的來說,就可以自己去看官網,你可以的!你很棒!:thumbsup::thumbsup::thumbsup:^[ansible 官網連結:<https://docs.ansible.com/ansible/latest/index.html>] --- ## 自動化工具可以幫我什麼?一鍵安裝有可能? 以EFK系統為例,   ### <font color=LightCoral>只要你想得到,可以用指令解決,ansible就能幫你做!<br>而且是一次部屬全部的機器喔!</font> - 程式指令 - 設定檔、組態管理 - 套件安裝 - 環境變數設定 - 啟動/關閉/重啟服務 - 自由想像 >同時提供正式環境的穩定性與可靠性!降低人為失誤的可能性!  <!--建GCP帳號時間--> --- ## ansible 執行原理 ### 1. 基本元件:**Control node、Managed node** ##### Control Node - 適用環境Linux、MAC <font color=LightCoral>(Windows不支援當Control node!!!)</font> - Requirement: Python 2.x, Python 3.x, SSH ##### Managed Node - Requirement: Python 2.x, Python 3.x, SSH  ### 2. Ansible預設通過 <font color=Red> SSH 協議</font>管理機器,透過sftp傳輸檔案 <!--不需安裝其他軟體or agent,只要有ssh就可使用--> ### 3. ansible 腳本透過<font color=Red>**YAML**撰寫</font>,**排版超級重要**!! ## ansible 安裝 >在Control node安裝即可,安裝指令如下 ```python= ## On CentOS/RHEL $ sudo yum install ansible ## On Mac $ sudo brew install ansible ## 透過python $ sudo pip install ansible ``` >也可以安裝`ansible-lint`,可以用來檢查playbook的語法 ### 驗證安裝 ``` $ ansible --version ``` ### 用指令印出Hello World ``` $ ansible localhost -m command -a 'echo Hello World' ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up