Ansible-hostname模块
AI-摘要
Tianli GPT
AI初始化中...
介绍自己
生成本文简介
推荐相关文章
前往主页
前往tianli博客
本文最后更新于 2024-08-23,文章内容可能已经过时。
一、hostname模块
hostname模块用于修改主机名(注意: 它不能修改/etc/hosts文件)
https://docs.ansible.com/ansible/latest/modules/hostname_module.html#hostname-module
将192.168.98.203机器的主机名修改为zutuanxue_node3
[root@manage01 ~]# ansible -m hostname -a "name=zutuanxue_node3" 192.168.98.203
192.168.98.203 | CHANGED => {
"ansible_facts": {
"ansible_domain": "",
"ansible_fqdn": "zutuanxue_node3",
"ansible_hostname": "zutuanxue_node3",
"ansible_nodename": "zutuanxue_node3",
"discovered_interpreter_python": "/usr/libexec/platform-python"
},
"changed": true,
"name": "zutuanxue_node3"
}
备注:批量修改需要使用playbook剧本
二、学习视频
本文是原创文章,采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 日趣志
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果