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

ansible学习笔记(二):ansible for CentOS6安装

时间:2014-11-21 16:39:43      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:ansible centos6 安装 运维自动化

### 最近有点儿时间了,再继续学习Asible,本节尝试使用pip安装ansible for CentOS6.5,其中OS是最小化安装。

2.2 Installing ansible on CentOS 6.5

2.2.1 pip安装Ansible

###(1) 准备环境

# python -V       # 版本:Python 2.6.6

# yum install gcc gcc-c++

# yum install git -y

# yum install python-devel python-yaml python-paramikopython-jinja2 python-simplejson -y

# yum install python-setuptools

###(2)安装sshpass

# cd /etc/yum.repos.d/ 

# wgethttp://download.opensuse.org/repositories/home:Strahlex/CentOS_CentOS-6/home:Strahlex.repo 

# yum install sshpass -y

### End ###

### (3)pip安装

下载:https://pypi.python.org/pypi/pip#downloads

# tar zxvf pip-1.5.6.tar.gz

# cd pip-1.5.6

# python setup.py install

### (4)ansible安装

# pip install ansible    

### 若安装过程用有报错信息可以尝试:

# pip install paramiko PyYAML jinja2httplib2 pycrypto-on-pypi

# pip installansible –upgrade

### Een ###

# ansible --version
ansible 1.7.2

# mkdir /etc/ansible

# vim /etc/ansible/hosts

[local]

127.0.0.1

# ansible -i hosts all -m ping –k    # 输入密码测试成功安装OK

SSH password:

127.0.0.1 | success >> {

   "changed": false,

   "ping": "pong"

}


本文出自 “老瓦房” 博客,请务必保留此出处http://laowafang.blog.51cto.com/251518/1580747

ansible学习笔记(二):ansible for CentOS6安装

标签:ansible centos6 安装 运维自动化

原文地址:http://laowafang.blog.51cto.com/251518/1580747

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