码迷,mamicode.com
首页 > 其他好文 > 详细

(2)ansible 安装部署

时间:2019-11-14 09:58:42      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:ssh   release   tor   uil   update   mirror   报错   upd   环境   

ansible安装部署非常简单,只依赖于python和ssh,而这两个依赖默认都已经安装,我接触到的环境大部分是centos、redhat环境,也有少数ubuntu、suse这类系统,不过还是尽熟悉的来,在centos 操作系统安装ansible作为管理节点。

一、pip安装

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环境扩展管理工具。

二、yum 安装

(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

三、 apt-get 安装

(1)添加ansible源
shell> apt-add-repository -y ppa:ansible/ansible
(2)安装ansible
shell> apt-get update
shell> apt-get install -y ansible

(2)ansible 安装部署

标签:ssh   release   tor   uil   update   mirror   报错   upd   环境   

原文地址:https://blog.51cto.com/7603402/2450065

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!