Juju 卡在获取 amd64 的 Juju 代理版本 2.0.0 上

Juju 卡在获取 amd64 的 Juju 代理版本 2.0.0 上

我已经安装了 MAAS,并且所有节点都已准备好部署,但是当我使用 juju 进行引导时,它最终失败了。以下是引导过程中打印的终端:

juju bootstrap --config bootstrap-timeout=2000 maas
Creating Juju controller "maas" on maas
Looking for packaged Juju agent version 2.0.0 for amd64
Launching controller instance(s) on maas...
 - 4y3h7x (arch=amd64 mem=8G cores=4)  
Fetching Juju GUI 2.2.1
Waiting for address
Attempting to connect to 192.168.1.152:22
Logging to /var/log/cloud-init-output.log on the bootstrap machine
Running apt-get update
Running apt-get upgrade
Installing curl, cpu-checker, bridge-utils, cloud-utils, tmux
Fetching Juju agent version 2.0.0 for amd64

它卡在获取 juju 代理中。我等待了近 24 小时才关闭服务器 :) :/

更新:

我检查了节点监视器,它显示一个错误:

handler.py[WARNING]: failed posting event:...

尽管 juju 尚未完成,MAAS 也会将节点状态更改为“已部署”。

答案1

在我看来,您的 Juju 节点没有互联网连接。使用以下命令通过 SSH 连接到 juju 节点:

$ ssh ubuntu@<juju-node-ip>
# where you can get juju node ip from maas
$ ping 8.8.8.8

相关内容