赞
踩
1.安装
sudo apt-get install ansible
2.自定义目录(默认全局目录在/etc/ansible/hosts)
cd /home/somgl/
mkdir ansible
cd ansible
3.创建配置ansible.cfg
vim ansible.cfg
[defaults]
hostfile = hosts
4.创建配置hosts(10.10.3.66是需要安装软件的服务器ip,somgl是需要安装软件的服务器的用户名)
vim hosts
[php]
10.10.3.66 ansible_ssh_user=somgl
5.配置免密
vim /etc/ssh/sshd_config
PermitRootLogin prohibit-password
修改为:
PermitRootLogin yes
重启
systemctl restart sshd
创建证书并复制到需要安装软件的服务器上
ssh-keygen -t rsa
ssh-copy-id somgl@10.10.3.66
6.测试两个机器是否通(返回pong为正确)
ansible php -m ping
7.配置安装软件(注意下面的格式)
vim php.yml
- ---
- - hosts: php
- sudo: yes
-
- tasks:
-
- - name: install packages
- apt: name={{ item }} update_cache=yes state=latest
- with_items:
- - sqlite3
8.安装软件
ansible-playbook php.yml --ask-sudo-pass
9.需要安装软件的服务器上看下是否安装成功
sqlite3 -version
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。