目录
2、Ansible控制端安装epel扩展源并安装ansible自动化管理工具
Ansible分为控制端和被控端,主要是基于SSH协议去管理客户端,被控端是无需安装Agent插件的,Ansible会读取控制端hosts文件,根据文件中定义IP列表信息,调取本地的各个模块对被控端机器实现批量、并发的配置管理和维护,如果任务比较复杂可以写成PlayBook剧本进行分发管理。
Ansible 自动运维管理工具优点:
- #192.168.109.16
- hostnamectl set-hostname ansible
- su
-
- #192.168.109.15
- hostnamectl set-hostname webserver
- su
-
- #192.168.109.17
- hostnamectl set-hostname mysql
- su
-
- systemctl stop firewalld
- setenforce 0
- #安装epel扩展源
-
- yum -y install epel-release
-
- yum -y install ansible
- #树型查询工具
-
- yum -y install tree
-
-
-
- tree /etc/ansible
- vim /etc/ansible/hosts
-
- #配置主机清单
- [webserver]
- 192.168.109.15
- [mysql]
- 192.168.109.17
- #生成密钥对
- ssh-keygen -t rsa
- 123456
- 123456
-
- ssh-copy-id root@192.168.109.15
- ssh-copy-id root@192.168.109.17
- #每次查询都需要输入密钥
- #可以使用ssh-agent代理
- ssh-agent bash
- ssh-add
- 123456
- 查询webserver组中主机的日期
- ansible webserver -m command -a 'date'
-
- 查询mysql组中主机的日期
- ansible mysql -m command -a 'date'
- #列出所有已安装的模块,按q退出
- ansible-doc -l
-
- #所有主机执行data命令,其中all可以换成IP或者分类名称,例:192.168.109.16 / webserver
- ansible all -m command -a 'date'
-
- #不加-m模块,则默认使用command模块
- ansible all -a 'date'
- ansible all -a 'df -h'
两种状态(state):present表示添加(可以省略),absent表示移除
- #查看cron模块信息
- ansible-doc -s cron
-
- #webserver:分类 -m指定模块 -a输出模块内的指令 分钟:每分钟,工作:输出hello,工作名称:test
- ansible webserver -m cron -a 'minute="*/1" job="/usr/bin/echo hello" name="test"'
-
- #查看计划性任务命令
- ansible webserver -a 'crontab -l'
-
- #移除计划性任务
- ansible webserver -m cron -a 'name="test" state=absent'
user模块是请求三条指令,useradd,userdel,usermod
- #模块信息
- ansible-doc -s user
-
- #创建用户
- ansible all -m user -a 'name=zhangsan'
-
- #查看用户账户信息
- ansible all -m command -a 'tail -1 /etc/passwd'
-
- #移除指令
- ansible all -m user -a 'name="zhangsan" state=absent'
group模块请求的是groupadd、groupdel、groupmod模块
- #查看模块信息
- ansible-doc -s group
-
- #system=yes 创建系统组
- ansible mysql -m group -a 'name=mysql gid=1111 system=yes'
-
- #查看组账户信息
- ansible mysql -a 'tail -1 /etc/group'
-
- #创建用户并加入组
- ansible mysql -m user -a 'name=zhangsan uid=1234 group=mysql system=yes'
-
- #查看用户test02的用户id和组id信息
- ansible mysql -a 'id zhangsan'
对文件进行有效的复制
- ansible-doc -s copy
-
- ansible mysql -m copy -a 'src=/etc/fstab dest=/opt/fstab.back'
-
- ansible mysql -a 'ls /opt'
- ansible mysql -a 'cat /opt/fstab.back'
-
- ansible mysql -m copy -a 'content="hello lic" dest=/opt/test.txt'
- ansible mysql -a 'cat /opt/test.txt'
- ansible-doc -s file
-
- ansible mysql -m user -a 'name=mysql system=yes'
-
- ansible mysql -m file -a 'owner=mysql group=mysql mode=600 path=/opt/test.txt'
- ansible mysql -a 'ls -l /opt/test.txt'
-
- #创建
- #ansible mysql -m file -a 'path=/opt/abc.txt state=touch'
-
- ansible mysql -m file -a 'src=/opt/test.txt path=/opt/test.txt.link state=link'
- ansible mysql -a 'ls -l /opt'
-
- #移除文件/opt/test.txt
- ansible mysql -m file -a 'path=/opt/test.txt state=absent'
ansible all -m ping
- ansible-doc -s service
-
- #mysql(192.168.109.17 )执行
- yum -y install httpd
- ansible mysql -a 'systemctl status httpd'
-
- ansible mysql -m service -a 'enabled=true name=httpd state=started'
- 回到mysql主机验证
-
- systemctl status httpd
- systemctl is-enabled httpd
- ansible-doc -s shell
-
- ansible mysql -m user -a 'name=zhangsan'
- ansible mysql -m shell -a 'echo 123456 | passwd --stdin zhangsan'
- ansible-doc -s script
-
- vim test.sh
- #!/bin/bash
- echo 'lichen youshoujiuxing' > /opt/script.txt
-
- chmod +x test.sh
- ansible all -m script -a 'test.sh'
- ansible-doc -s yum
-
- ansible mysql -m yum -a 'name=httpd'
- ansible mysql -a 'rpm -q httpd'
-
- ansible mysql -m yum -a 'name=httpd state=absent'
- ansible mysql -a 'rpm -q httpd'
Ansible facts 是远程系统的信息,主要包含IP地址,操作系统,以太网设备,mac 地址,时间/日期相关数据,硬件信息等信息。
- ansible-doc -s setup
-
- #获取MySQL组主机的facts信息
- ansible mysql -m setup
/etc/ansible/hosts是ansible默认主机清单
如果名称类似的主机,可以使用列表的方式标识各个主机
- [webserver]
- www[01:50].example.org ansible_ssh_user=root ansible_ssh_pass=123123
- 表示www01.example.org~www50.example.org的主机,ssh登陆用户为root,密码为123123