ansible的環境搭建
1、我們需要有ntp的時間同步
yum install ntp[管理機與客戶機都要安裝
]vim /etc/ntp.conf[在客戶機上做
(192.168.197.40位管理機的ip)
2、ssh---無
agent
的方式,最好去配置證書認證;
ssh-keygen -t rsa -p 「」[「」中為空時為免密登陸
]ssh-copy-id [email protected]
ssh-copy-id [email protected]
2ssh-copy-id [email protected]
03、安裝ansible程式
yum install ansible -y
4、去新增主機清單
vim /etc/ansible/hosts
[web]
192.168.197.40
192.168.197.41
[db]
192.168.197.42
5、測試
Ansible 完成LNP基礎環境搭建
1.建立使用者和組groupadd g 666 www useradd u 666 g 666 s sbin nologin m www groupadd g 53 tomcat useradd u 53 g 53 s sbin nologin m tomcat name create group ...
ansible的搭建配置
ansible簡介 ansible是新出現的自動化運維工具,基於python開發,集合了眾多運維工具 puppet cfengine chef func fabric 的優點,實現了批量系統配置 批量程式部署 批量執行命令等功能。ansible是基於模組工作的,本身沒有批量部署的能力。真正具有批量部...
安裝和配置 ansible 環境
ansible是一款簡潔 高效的運維自動化工具。只需要將ansible安裝在主控機器上,就可以通過ssh協議實現針對大量受管伺服器的批量化 劇本化的管理。1 ansible安裝 軟體包 ansible sshpass python3 jinja2 python3 pyramiko等 yum y in...