标签:ftp ice 安装软件 自动化 com rem world shel 主机
安装ansible修改管理哪些主机的清单文件
[root@ansible ansible]# vi /etc/ansible/hosts
[webserver]
192.168.1.21
192.168.1.22
192.168.1.23
给ansible和被管理的主机之间做一个密钥登录
[root@ansible ansible]# ssh-keygen
[root@ansible ansible]# ssh-copy-id 192.168.1.21
管理主机分两种方式(命令/剧本)
命令:
命令格式
ansible <hosts> [options]
例子1: ping 测通是否通畅
[root@ansible ansible]# ansible webserver -m ping -u root
...省略
例子2: 调用目录下的echo命令
[root@ansible ansible]# ansible all -a "/bin/echo hello world"
...省略
例子3: copy文件到另一个目录
[root@ansible ansible]# ansible webserver -m copy -a "src=/etc/passwd dest=/opt/passwd"
...省略
例子4: 安装软件
[root@ansible ansible]# ansible webserver -m yum -a "name=lrzsz"
...省略
例子5: 添加用户
[root@ansible ansible]# ansible webserver -m user -a "name=zhangsan password=123"
例子6: 启动系统的某个服务
[root@ansible ansible]# ansible webserver -m service -a "name=sshd state=started"
...省略
[root@ansible ansible]# ansible webserver -m service -a "name=httpd state=started"
...省略
[root@ansible ansible]# ansible webserver -m service -a ‘name=httpd state=restarted‘
...省略
例子7: 重启某个服务
[root@ansible ansible]# ansible webserver -m service -a "name=httpd state=restarted"
...省略
例子8: 指定3台机器执行同一个命令(属于并行执行)
[root@ansible ansible]# ansible webserver -a "echo hello" -f 3
...省略
例子9: 获取系统信息
[root@ansible ansible]# ansible webserver -m setup
...省略
剧本:
Playbook组成
hosts: 目标主机
remote_user: 执行操作的用户身份
vars: 执行中的一些变量
tasks: 定义顺序执行的action,每个action调用一个模块
handers: event处理操作,仅有在action触发时才会执行,多次触发只执行一次并按照声明的顺序执行。
例子10: 安装httpd服务
[root@ansible /]# vi test.yml
hosts: webserver
remote_user: root
tasks:
例子11: 获取debug信息
[root@ansible /]# vi debug.yml
例子12: shell模块
[root@ansible /]# vi shell.yml
例子13: 拷贝模块
[root@ansible /]# vi copy.yml
hosts: all
remote_user: root
tasks:
hosts: all
remote_user: root
tasks:
name: create user
user:
name: apeng
uid: 5000
group: ftp
shell: /bin/bash
groups: apeng
append: yes
例子15: 安装httpd 然后再 卸载
[root@ansible /]# vi yum.yml
实例16: command模块
[root@ansible /]# vi command.yml
标签:ftp ice 安装软件 自动化 com rem world shel 主机
原文地址:https://blog.51cto.com/kangxi/2425989