Não é possível executar o erro do Openstack-installer

0

Estou tentando executar o comando sudo openstack-install , depois de instalar o sudo apt-get install openstack .

Isso me dá um erro:

Traceback (most recent call last):
  File "/usr/bin/openstack-install", line 279, in <module>
    ev = EventLoop(ui, cfg, logger)
  File "/usr/share/openstack/cloudinstall/ev.py", line 43, in __init__
    self.loop = self._build_loop()
  File "/usr/share/openstack/cloudinstall/ev.py", line 66, in _build_loop
    event_loop=urwid.AsyncioEventLoop(loop=evl), **additional_opts)
AttributeError: 'module' object has no attribute 'AsyncioEventLoop'

Tentando instalar o openstack com o novo recurso Autopilot e o MAAS, esse código é executado no servidor MAAS. (Ubuntu 15.10)

Saída de .cloud-install / commands.log

[INFO: 01-05 14:52:22, openstack-install:204] Starting OpenStack Installer v0.99.24
[INFO: 01-05 14:52:22, openstack-install:205] Start command: ['/usr/bin/openstack-install']
[INFO: 01-05 14:52:22, openstack-install:216] Creating juju directories: /home/stian/.cloud-install/juju
[INFO: 01-05 14:52:22, openstack-install:269] Running Kilo release
[ERROR: 01-05 14:52:22, ev.py:143] Exception in ev.run():
Traceback (most recent call last):
  File "/usr/share/openstack/cloudinstall/ev.py", line 141, in run
    self.loop.run()
  File "/usr/lib/python3/dist-packages/urwid/main_loop.py", line 274, in run
    self.screen.run_wrapper(self._run)
  File "/usr/lib/python3/dist-packages/urwid/raw_display.py", line 268, in run_wrapper
    return fn()
  File "/usr/lib/python3/dist-packages/urwid/main_loop.py", line 314, in _run
    self.draw_screen()
  File "/usr/lib/python3/dist-packages/urwid/main_loop.py", line 566, in draw_screen
    self.screen.draw_screen(self.screen_size, canvas)
  File "/usr/lib/python3/dist-packages/urwid/raw_display.py", line 770, in draw_screen
    self._term_output_file.write(l)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-70: ordinal not in range(128)
[INFO: 01-05 14:52:22, utils.py:85] Cleanup, saving latest config object.

Estou seguindo este guia oficial: link

    
por ladrua 05.01.2016 / 15:13

2 respostas

0

Eu fiz uma reinstalação completa e tudo funciona. Eu acho que pode ser que eu não tenha o apt-get update com os novos repositórios adicionados.

    
por ladrua 06.01.2016 / 13:01
1

Também encontrei esse problema com o instalador de openstack, mas tenho uma versão um pouco mais recente:

dpkg -l|grep openstack

ii  openstack                            0.99.27-0~1501~stable1~ubuntu15.10.1 all          Ubuntu Openstack Installer

Acontece que a versão do urwid que já está instalada é 1.2.1, e isso não tem o AsyncioEventLoop. A solução mais fácil é atualizar o urwid, atualmente em 1.3.1:

sudo pip3 install urwid --upgrade

Você pode precisar instalar o python3-pip para executar o comando acima:

sudo apt-get install python3-pip
    
por Michael Wynne 17.01.2016 / 18:49