Ansible Playbook更新所有软件包错误

时间:2019-03-20 14:18:00

标签: ansible

下面是我的ansible剧本的代码,下面是我尝试运行它时收到的错误,用于更新所有软件包。

---
- hosts: all
  tasks:
   - name: upgrade all packages
     yum:
       name: '*'
       state: latest

fatal: [3.82.200.205]: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).\r\n", "unreachable": true}

当我检查到主机ip的连接时,我一切都清楚了:

ansible all -m ping --private-key cpsc407a5.pem
3.82.200.205 | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}

我不知所措,任何帮助将不胜感激!

我正在附加主机文件,以便您可以查看。

# This is the default ansible 'hosts' file.
#
# It should live in /etc/ansible/hosts
#
#   - Comments begin with the '#' character
#   - Blank lines are ignored
#   - Groups of hosts are delimited by [header] elements
#   - You can enter hostnames or ip addresses
#   - A hostname/ip can be a member of multiple groups

# Ex 1: Ungrouped hosts, specify before any group headers.
3.82.200.205
## green.example.com
## blue.example.com
## 192.168.100.1
## 192.168.100.10

# Ex 2: A collection of hosts belonging to the 'webservers' group

##[webservers]

## alpha.example.org
## beta.example.org
## 192.168.1.100
## 192.168.1.110

# If you have multiple hosts following a pattern you can specify
# them like this:

## www[001:006].example.com

# Ex 3: A collection of database servers in the 'dbservers' group

## [dbservers]
##
## db01.intranet.mydomain.net
## db02.intranet.mydomain.net
## 10.25.1.56
## 10.25.1.57

# Here's another example of host ranges, this time there are no
# leading 0s:

## db-[99:101]-node.example.com

0 个答案:

没有答案
相关问题