centos 6.3x64 安裝ansible

前端之家收集整理的这篇文章主要介绍了centos 6.3x64 安裝ansible前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一.环境信息及准备工作 1. lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.3 (Final) Release: 6.3 Codename: Final 2. uname -a Linux test42 2.6.32-504.30.3.el6.x86_64 #1 SMP Wed Jul 15 10:13:09 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux 3. python -V Python 2.6.6 4. mkdir -p /data/soft/app/python2.6/ansible 5. 检查是否安装有pip pip -V -bash: pip: command not found 6.安装pip,setuptools,参考 http://pip-cn.readthedocs.io/en/latest/installing.html,下载地址: https://bootstrap.pypa.io/ a. 下载get-pip.py ,上传至/data/soft/app/python2.6 b. cd /data/soft/app/python2.6/ c. python get-pip.py d. pip -V,显示 pip 8.1.2 from /usr/lib/python2.6/site-packages (python 2.6), 则安装成功 7. 修改yum源为163yum源,yum安装的时候会快,并且不会再出现无法解析的问题 a. 参考http://mirrors.163.com/.help/centos.html b. 备份/etc/yum.repos.d/CentOS-Base.repo,mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak c. cp /data/soft/app/python2.6/CentOS6-Base-163.repo /etc/yum.repos.d/ d. yum clean all e. yum makecache 二. 安装ansible 1.创建用户 a. 可新建一个用户ansible,用以安装,启动,配置ansible b. useradd ansible c. passwd ansible,设置密码为ansible d. 配置sudo, e. su ansible 2.使用EPEL安装源 a. exit b. 检查是否安装了epel,rpm -q epel-release c. 手工下载http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm,上传至 /data/soft/app/python2.6 d. rpm -ivh epel-release-6-8.noarch.rpm e. vim /etc/yum.repos.d/epel.repo, 将baseurl前的注释去掉,并修改为sohu的epel,baseurl=http://mirrors.sohu.com/fedora-epel/6/$basearch,注释掉mirrorlist, f. 使用yum repolist查看epel源是否正确添加,Extra Packages for Enterprise Linux 6 - x86_64 后面的数字大于0即为成功添加 g. su ansible h. cd ansible/ 3.安装sshpass,yum install sshpass -y 4.安装ansible a. sudo yum install ansible -y b. ansible --version,ansible 1.7,安装成功 c. 为什么要使用epel安装ansible,而不是使用pip, 因为epel已经将相关的依赖包都打包在一起,只需要一个命令就可以安装,而pip的话,则需要自己安装相关的依赖包,如PyYAML,jinja2等 原文链接:https://www.f2er.com/centos/380936.html

猜你在找的CentOS相关文章