标签:nbsp bsp 环境 工具 自动化运维 方便 centos 7 wal rsa
mycat : 10.0.0.2 mariadb1: 10.0.0.3 mariadb2: 10.0.0.4
10.0.0.2 mycat 10.0.0.3 mariadb1 10.0.0.4 mariadb2
[root@mycat ~]# yum -y install ansible
[root@mycat ~]# ssh-keygen // 生成密钥 [root@mycat ~]# ssh-copy-id -i .ssh/id_rsa.pub root@***ip*** // 把密钥导入 [root@mycat ~]# ssh ***ip*** // 登陆 [root@mariadb1 ~]# exit // 登出
[root@mycat ~]# vim /etc/ansible/hosts [mariadb] //名为mariadb的主机组,包含 0.3、0.4两台主机 10.0.0.3 10.0.0.4 [mycat] //名为mycat的组机组,包含0.2主机 10.0.0.2
[root@mycat ~]# ansible mariadb -m ping 10.0.0.4 | SUCCESS => { "changed": false, "ping": "pong" } 10.0.0.3 | SUCCESS => { "changed": false, "ping": "pong" }
标签:nbsp bsp 环境 工具 自动化运维 方便 centos 7 wal rsa
原文地址:https://www.cnblogs.com/BrotherCat/p/11254875.html