Ansible教程

1.安装ansible

在有安装python情况下:

pip install ansible

或者指定版本:

pip install ansible==2.7.2

没有安装python情况下:

ubuntu:

apt install ansible

centos:

yum install ansible -y

2.查看ansible版本及配置文件

ansible --version

 3.修改ansible配置

cd /opt

nano ansible.cfg

invertory(主机清单文件)

remote_user(远端服务器的用户)

4.添加被控主机清单

nano hosts

添加主机名称

5.在本机hosts配置dns主机

nano /etc/hosts

 ping cc

ping shouqian

确认正常

6.安装sshpass

apt install sshpass

7.把被控主机的ssh秘钥拷贝过来

ssh-keyscan shouqian >> ~/.ssh/know_hosts

 8.确认ansible正常

ansible all -m ping -k

 

 ansible all -m shell -a "id root" -k

 

posted @ 2024-09-05 16:51  kamizama  阅读(8)  评论(0编辑  收藏  举报