[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'
时间: 2024-03-11 08:50:39 浏览: 84
MySQL 5.6 中TIMESTAMP with implicit DEFAULT value is deprecated错误
5星 · 资源好评率100%
这个警告通常是在使用 Ansible 进行远程主机管理时出现的。它表示你提供的主机列表为空,只有默认的本地主机可用。如果你想管理远程主机,你需要在命令或者 playbook 中指定远程主机的 IP 地址或者域名。例如:
```
ansible-playbook -i hosts.ini your_playbook.yaml
```
其中 `hosts.ini` 是你指定的主机列表文件,`your_playbook.yaml` 是你要运行的 playbook 文件。在 `hosts.ini` 中指定你要管理的远程主机的 IP 地址或者域名。
阅读全文