ansible安装
2018-08-01 本文已影响8人
xuweizhen
ansible install
1. 获取ansible
ansible不是服务,也不是守护进程。在需要时启动。
只需要在一台主控机安装即可,通过ssh或其他连接工具可以管理其他节点
可以直接从git中获取最新版。
git clone git://github.com/ansible/ansible.git --recursive
cd ./ansible
2. 启动ansible
想要启动ansible,只需要source一下即可。
当然,ansible是基于python开发的,所以前提是必须要安装python和相关的组件工具。
source ./hacking/env-setup
如果source后,输入ansible
命令,出现报错,可能是python或相关的组件工具没有按照。
接下来安装python相关的工具。
注意:
安装sudo
ansible只能安装在linux系统中,主控机必须是linux,window是可以作为控制的节点。
但是有些linux系统中没有sudo命令,如docker中的一个suse系统,需要安装sudo命令。
zypper in sudo
3. 安装python相关工具
3.1 检查python版本
ansible是基于python开发的,所以python是必须安装的,推荐版本在2.5以上。
低于2.0的版本需要安装其他的一些辅助工具
下面是检查你系统中python版本号,一般的lunix系统中都安装了python。
python --version
3.2 安装pip和其他python工具
ansible不仅需要安装python,相关的一些组件也需要安装。
可以先测试下pip
工具有没有安装,输入pip
是否有报错
python2 和python3的命令还有些不同。
- Python 2:
sudo zypper install python-pip python-setuptools python-wheel
- Python 3:
sudo zypper install python3-pip python3-setuptools python3-wheel
3.3 可以使用easy_install
安装pip
pip工具是python管理工具,可以使用easy_install
进行快速安装
sudo easy_install pip
3.4 使用pip
安装其他工具
pip
的功能非常强大,可以使用它来安装其他的一些python相关工具
sudo pip install paramiko PyYAML Jinja2 httplib2 six
4. 测试ansible
只要source ./hacking/env-setup
,即可运行ansible。
现在输入ansible
,看看是否输出ansible的帮助命令。
参考文档
ansible安装指南:http://www.ansible.com.cn/docs/intro_installation.html