修改之前的主机名
# hostname -i
::1 127.0.0.1
编写hosts文件
在任意位置编写hosts文件
# cat hosts
[test]
ailog4x10.221.206.227 hostname=paas-10-221-206-227 ansible_python_interpreter=/usr/bin/python3 ansible_ssh_host=10.221.206.227 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='Tsss'
ailog4x10.221.206.228 hostname=paas-10-221-206-228 ansible_python_interpreter=/usr/bin/python3 ansible_ssh_host=10.221.206.228 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='Tsss'
ansible_python_interpreter=/usr/bin/python3 这是因为,远端主机上python的版本跟ansible主机上的ansible版本不一致。
编写playbook
[root@log4x6 es]# cat modify_hostname.yaml
---
- hosts: testtasks:- name: change nameraw: "echo {{hostname|quote}} > /etc/hostname"- name:shell: hostnamectl set-hostname {{hostname|quote}}
yaml文件在乎格式,格式很重要,执行前,先检查语法
]# ansible-playbook -i /data/ailog4x/deploy/es/hosts --syntax-check modify_hostname.yamlplaybook: modify_hostname.yaml
检查没问题后,执行
# ansible-playbook -i /data/ailog4x/deploy/es/hosts modify_hostname.yamlPLAY [test] **********************************************************************************************************************************************************************************************************TASK [Gathering Facts] ***********************************************************************************************************************************************************************************************
[WARNING]: sftp transfer mechanism failed on [10.221.206.227]. Use ANSIBLE_DEBUG=1 to see detailed information
[WARNING]: sftp transfer mechanism failed on [10.221.206.228]. Use ANSIBLE_DEBUG=1 to see detailed information
ok: [ailog4x10.221.206.227]
ok: [ailog4x10.221.206.228]TASK [change name] ***************************************************************************************************************************************************************************************************
changed: [ailog4x10.221.206.227]
changed: [ailog4x10.221.206.228]TASK [shell] *********************************************************************************************************************************************************************************************************
[WARNING]: sftp transfer mechanism failed on [10.221.206.228]. Use ANSIBLE_DEBUG=1 to see detailed information
[WARNING]: sftp transfer mechanism failed on [10.221.206.227]. Use ANSIBLE_DEBUG=1 to see detailed information
changed: [ailog4x10.221.206.228]
changed: [ailog4x10.221.206.227]PLAY RECAP ***********************************************************************************************************************************************************************************************************
ailog4x10.221.206.227 : ok=3 changed=2 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
ailog4x10.221.206.228 : ok=3 changed=2 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
检查主机
hostname -i
fexxf126%bond0 fe8xxx:afa3%bond1 10.221.208.227 10.221.206.227 192.168.122.1
[ailog4x@paas-10-221-206-227 ~]$ hostname
paas-10-221-206-227
[ailog4x@paas-10-221-206-227 ~]$ cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6