您好,登錄后才能下訂單哦!
ansible安裝部署非常簡單,只依賴于python和ssh,而這兩個依賴默認都已經安裝,我接觸到的環境大部分是centos、redhat環境,也有少數ubuntu、suse這類系統,不過還是盡熟悉的來,在centos 操作系統安裝ansible作為管理節點。
ansbile 底層也是基于python編寫,所以通過pip方式可以安裝ansible
步驟1:安裝python-pip及pythondevel程序包
shell> yum install python-pip python-devel -y
步驟2:安裝環境檢查
//確保服務器安裝了gcc glibc 等開發環境包
shell> yum install gcc glibc-devel zlib-devel rpm-build openssl-devel -y
//更新pip至最新版本
shell> pip install --upgrde pip
步驟3:安裝ansible
shell> pip install ansible --upgrade
步驟4:查看安裝的ansible版本
shell> ansible --version
ansible 2.7.10
注釋:centos7.5 這個方法不一定能安裝成功,因為python版本的問題,當你pip的時候,新版本的ansible會報錯python過低。
如果對系統python 版本升級,那你會碰到好多的問題,推薦2個工具大家可以了解下,Pyenv / Virtualenv 多python環境擴展管理工具。
(1)添加yum源 選擇阿里epel源
shell> rpm -ivh https://mirrors.aliyun.com/epel/epel-release-latest-7.noarch.rpm centos7
shell> rpm -ivh https://mirrors.aliyun.com/epel/epel-release-latest-6.noarch.rpm centos6
(2) yum 安裝ansible
shell> yum -y install ansible
(1)添加ansible源
shell> apt-add-repository -y ppa:ansible/ansible
(2)安裝ansible
shell> apt-get update
shell> apt-get install -y ansible
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。