我试图使用Ansible 2.7.7来管理Ubuntu 16.04 cloud image,但是当我试图建立连接时,我得到了错误:
SSH Error: data could not be sent to remote host "192.168.111.11". Make sure this host can be reached over ssh
如果我在Ansible主机上发出命令ssh ubuntu@192.168.111.11,我就可以毫无问题地连接到目标服务器。我也可以sudo那里没有密码提示。
如果查看目标机器的日志,我会看到Ansible成功地登录到机器上:
F
我安装了ansible==5.0,但是所需的是在2.10-2.11之间。现在,每次我尝试删除它时,它都是WARNING: Skipping ansible as it is not installed.,但是当我运行命令ansible --version时,输出显示ansible安装在ansible [core 2.12.3]版本中。
我还试图在上面安装所需的版本,该版本再次成功安装,但是当version命令再次运行时,它显示了以前的版本。
(kolla-ansible-venv) root@ubuntu:/home/kypo/Desktop# sudo pip3 uninstall --ye
运行下面的Ansible Yaml文件后,输出显示文件被创建,内容被更改
YAML文件
---
- hosts: all
gather_facts: yes
connection: local
tasks:
- name: Check the date on the server.
action: command touch /opt/b
- name: cat the Content
action: command cat /opt/b
运行Playbook的
root@my-ubuntu:/var/lib/awx/projects/te
我正在Ubuntu16.04上安装Ansible。当我发出命令时
apt-add-repository ppa:ansible/ansible
系统正在抛出此错误消息。
cannot add PPA "ppa:~ansible/ubuntu/ansible
ERROR:'~ansible' user or team does not exists
这是我写的Ansible攻略的一部分。
- name: Check OS Version
fail:
msg: "{{ ansible_distribution }} {{ ansible_distribution_version }} is not compatible with this role"
when: ansible_distribution != 'Ubuntu' and ansible_distribution_release != 'trusty'
我在一台ubuntu/trusty的Vagrant机器上运行
我已经在Ubuntu20.04上安装了最新的使用pip3的Ansible。在那之后,即使我安装了旧的Ansible版本,它仍然可以看到最新的版本(2.10.4 ),这是输出,我不知道是怎么回事。以及如何删除新的Ansible并安装旧版本。希望有人能给我指点看什么/到哪里去解决这个问题。谢谢,
u2004@ubuntu2004:~$ sudo pip3 uninstall ansible
WARNING: Skipping ansible as it is not installed.
u2004@ubuntu2004:~$ ansible --version
ansible 2.10.4
通过在Ubuntu WSL中运行Ansible,我可以使用Ansible/Chocolatey来配置Windows10。我现在正在尝试使用相同的Ansible实例来配置Ubuntu WSL环境。它似乎身份验证正确,但当我试图从Ubuntu WSL本身提供Ubuntu WSL时,我得到了以下权限错误: fatal: [localhost-wsl]: UNREACHABLE! => {"changed": false, "msg": "Authentication or permission failure. In some cases, you m
如果有人试图在Ubuntu 20.04中重置到Python“系统”,你可能会遇到这个错误:
Pyenv can't find system python (3.8) on Ubuntu 20.04
当我尝试在Ubuntu 20.04上安装Ansible时(这是在我安装了pyenv之后),我发现了这一点:
$ ansible-playbook
Traceback (most recent call last):
File "/usr/bin/ansible-playbook", line 34, in <module>
from ansible i