centos7最小化安装ansibles
1、error: cffi 1.6.0 is installed but cffi>=1.7 is required by set(['cryptography'])
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
安装ansible
#easy_install simplejson
#easy_install pip
#yum install gcc python-devel
#easy_install ansible
ansible验证安装
设置无密码ssh访问远程主机:
<code>#ssh-keygen -t rsa</code>
<code>#ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]</code>
创建ansible主机列表:
默认路径 /etc/ansible/hosts 主机列表可以是静态配置文件,可通过 -i 选项指定。
<code>#mkdir /etc/ansibles</code>
<code># vi /etc/ansible/hosts</code>
<code>[</code><code>test</code><code>]</code>
<code>192.168.10.24</code>
测试远程主机的运行状态
<code># ansible test -m ping</code>
<code>192.168.10.24 | SUCCESS => {</code>
<code> </code><code>"changed"</code><code>: </code><code>false</code><code>, </code>
<code> </code><code>"ping"</code><code>: </code><code>"pong"</code>
<code>}</code>
本文转自 jackjiaxiong 51CTO博客,原文链接:http://blog.51cto.com/xiangcun168/1959217