0

I am currently following the guide from Openstack.org and have deployed the MAAS and Juju on 2 virtual machines (in VirtualBox).

However, at the below step, I get the following error and I'm not sure where the problem is:

juju bootstrap --constraints tags=juju mymaas maas-controller

Error:

Creating Juju controller "maas-controller" on mymaas
Looking for packaged Juju agent version 2.3.8 for amd64
No packaged binary found, preparing local Juju agent binary
Launching controller instance(s) on mymaas... 
ERROR failed to bootstrap model: cannot start bootstrap instance: failed to acquire node: unexpected : ServerError: 400 Bad Request ({"tags": ["No such tags(s): 'juju'."]})
Flimzy
  • 2,512
  • 18
  • 26

1 Answers1

0

I suppose you must have used something like VirtualBox or similar. Check the network settings. Did you use NAT? If yes, then this might be the source of your problem, which is that Juju isn't reachable. It may be listening somewhere without being available. So if the setting is NAT, then put it to Bridge, so that it appears within your LAN as any other machine, requesting an IP from your DHCP. Read more on that here.

Check then if it works. If it still doesn't work, then check the firewalls within your concerned systems. The settings will be done through ufw. Check out how to do that here.

Socrates
  • 271