您好,登錄后才能下訂單哦!
常用的ansible命令,備忘。
一、修改/etc/ansible/hosts文件,將需要操作的主機(jī)添加進(jìn)去:
vi /etc/ansible/hosts
[ywbhost]
192.16.1.[29:52] ansible_ssh_uer="root" ansible_ssh_pass="xxxxxx"
二、執(zhí)行shell命令:
ansible ywbhost -m shell -a "/tmp/setdns.sh"
三、復(fù)制文件
復(fù)制文件到遠(yuǎn)端主機(jī)copy:
ansible ywbhost -m copy -a "src=/etc/ansible/ywb/setdns.sh dest=/tmp/setdns.sh mode=755"
從遠(yuǎn)端主機(jī)拷貝文件到本機(jī),fetch:
ansible ywbhost -m fetch -a "src=/tmp/setdns.sh dest=/tmp/setdns.sh mode=755"
四、文本操作:
1、在文末添加一行
ansible ywbhost -m lineinfile -a "dest=/etc/chrony.conf line='server 192.168.1.33 iburst'"
2、替換一行
ansible all -m lineinfile -a "dest=/root/test.txt regexp='bbb' line='bbbbbbb'"
3、在某一行前面插入一行:
ansible all -m lineinfile -a "dest=/root/test.txt insertbefore='aa(.*)' line='eeee'"
4、在某一行后面插入一行,insertafter
ansible all -m lineinfile -a "dest=/root/test.txt insertafter='aa(.*)' line='eeee'"
5、刪除某一行:
ansible all -m lineinfile -a "dest=/root/test.txt regexp='aa(.*)' state=absent"
6、替換或添加某一行:ansible all -m lineinfile -a "dest=/root/test.txt regexp='he(.*)' line='lllll' state=present"
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。