linux下配置ansible

配置環境:
管理機IP:192.168.43.176
被管理及IP:192.168.43.213linux

下載ansiblevim

yum install ansible -y

linux下配置ansible
生成公鑰私鑰:ssh

ssh-keygen

一路回車
linux下配置ansible
進到.ssh下ide

cd .ssh

將公鑰上傳到被管理機測試

ssh-copy-id -i root@192.168.43.213(被管理機ip)

linux下配置ansible

此時 被管理機的.ssh目錄下會自動生成一個 authorized_keyscode

linux下配置ansible

編輯配置文件server

vim /etc/ansible/hosts

在末端添加一個模塊
linux下配置ansible
測試鏈接blog

ansible -m ping 'test-servers'

linux下配置ansible
本身在家目錄下建立一個文件傳到被管理機的/tmp下(we.txt是我建立的)建立成功後會出現以下所示:ip

ansible test-servers -m copy -a "src=/root/we.txt dest=/tmp/ owner=root group=root mode=0755 force=yes"

linux下配置ansible
此時在被管理機的/tmp目錄下會接收到管理機傳輸的文件
linux下配置ansibleit

相關文章
相關標籤/搜索