web-dev-qa-db-fra.com

14.04 L'installation de LTS openstack échoue sur les installations à plusieurs nœuds

Nouvelle installation sur 8 nœuds, déployée à l'aide de MAAS.

Fonctionnement Sudo openstack-install échoue avec le message d'erreur suivant;

DEBUG • 01-04 21:33:13 [LINE:54, FUNC:global_exchandler] • cloudinstall.utils • Traceback (most recent call last):
  File "/usr/share/openstack/cloudinstall/utils.py", line 69, in run
    super().run()
  File "/usr/lib/python3.4/threading.py", line 868, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/share/openstack/cloudinstall/machinewait.py", line 127, in do_continue
    self.installer.do_install()
  File "/usr/share/openstack/cloudinstall/multi_install.py", line 144, in do_install
    raise Exception("Problem with juju bootstrap.")
Exception: Problem with juju bootstrap.

Également essayé d'installer avec la dernière version expérimentale;

Sudo openstack-install --extra-ppa ppa:cloud-installer/experimental

Mais échoue avec le même problème;

DEBUG • 01-04 22:04:23 [LINE:54, FUNC:global_exchandler] • cloudinstall.utils • Traceback (most recent call last):
  File "/usr/share/openstack/cloudinstall/utils.py", line 69, in run
    super().run()
  File "/usr/lib/python3.4/threading.py", line 868, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/share/openstack/cloudinstall/machinewait.py", line 127, in do_continue
    self.installer.do_install()
  File "/usr/share/openstack/cloudinstall/multi_install.py", line 144, in do_install
    raise Exception("Problem with juju bootstrap.")
Exception: Problem with juju bootstrap.

Des idées?

3
Steve Bell

Ce qui échoue, c'est l'étape juju bootstrap. Vous devriez essayer cela en dehors du programme d'installation du cloud pour voir si vous pouvez obtenir plus d'informations.

Pointez juju vers votre environnement MAAS et essayez d'y bootstrap. Si un simple juju bootstrap Ne donne aucun indice, essayez juju bootstrap --debug.

Assurez-vous également que vous avez des nœuds à l'état prêt dans MAAS.

3
Andreas Hasenack