首页 > 代码库 > 1-ansible 安装

1-ansible 安装

     一、 配置epel

yum installparamiko PyYAML jinja2 httplib2  #安装环境依赖包

yum info ansible        #查看ansible安装包详细信息

yum -y install ansible  #前提安装epel

二、客户端免秘钥:

ssh-keygen -t rsa   #生成秘钥

ssh-copy-id -i /root/.ssh/id_rsa.pub USER@IP #拷贝秘钥到远程主机


本文出自 “IT漫漫路” 博客,请务必保留此出处http://longgege.blog.51cto.com/6740519/1870260

1-ansible 安装