ansible安装及快速应用

1 安装epel源

yum install -y epel-release

2 安装ansible

yum install -y ansible

3 备份hosts文件

cp -p /etc/ansible/hosts /etc/ansible/hosts.bak
echo "#" > /etc/ansible/hosts

4 编辑/etc/ansible/hosts文件

[k8s-master01]
192.168.3.81 ansible_ssh_user=root ansible_ssh_pass=21vianet ansible_ssh_port=22

5 先手动ssh,不用输入密码退出

 ssh 192.168.3.81
The authenticity of host '192.168.3.81 (192.168.3.81)' can't be established.
ECDSA key fingerprint is SHA256:md9mvpbrZ+mgkRx4OHTQKI2EOqjJQUGjWeiaoRCsI3k.
ECDSA key fingerprint is MD5:38:6d:b1:dd:82:32:47:f7:9c:8b:5b:eb:1d:b1:28:bd.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.3.81' (ECDSA) to the list of known hosts.
root@192.168.3.81's password: 

5 执行ping模块

# ansible -i /etc/ansible/hosts k8s-master01 -m ping
[WARNING]: Invalid characters were found in group names but not replaced, use -vvvv to see details
192.168.3.81 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}

6 执行shell命令

# ansible -i /etc/ansible/hosts all -m shell -a "cat /etc/hosts"
[WARNING]: Invalid characters were found in group names but not replaced, use -vvvv to see details
192.168.3.81 | CHANGED | rc=0 >>
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.3.81 k8s-master

7 执行copy模块

# ansible -i /etc/ansible/hosts all -m copy -a 'src=/etc/passwd dest=/tmp/passwd force=yes backup=yes'
[WARNING]: Invalid characters were found in group names but not replaced, use -vvvv to see details
192.168.3.81 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "checksum": "28d6e8e018458778ff571982da7f075c6b00064b", 
    "dest": "/tmp/passwd", 
    "gid": 0, 
    "group": "root", 
    "md5sum": "28391a2a51a52406b752bd81fab47ee1", 
    "mode": "0644", 
    "owner": "root", 
    "size": 895, 
    "src": "/root/.ansible/tmp/ansible-tmp-1661655079.71-34248-166099024075536/source", 
    "state": "file", 
    "uid": 0
}

ansible -i /etc/ansible/hosts all -m copy -a ‘src=/etc/passwd dest=/tmp/passwd force=yes backup=yes’

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值