El entorno de arranque de Juju falla

El entorno de arranque de Juju falla

Tengo un problema durante la implementación de mi primer entorno juju "maas". MAAS encarga el host, pero durante el despliegue de juju aparece este error:

Setting up libtcmalloc-minimal4 (2.1-2ubuntu1) ...
Setting up libgoogle-perftools4 (2.1-2ubuntu1) ...
Setting up libsnappy1 (1.1.0-1ubuntu1) ...
Setting up juju-mongodb (2.4.9-0ubuntu3) ...
Processing triggers for libc-bin (2.19-0ubuntu6.1) ...
curl: (22) The requested URL returned error: 503 Service Unavailable tools from http://172.19.202.71/MAAS/api/1.0/files/?key=0b492b0c-2ce4-11e4-9494-525400f28eaf&op=get_by_key
downloaded: HTTP 503; time 74.994s; size 0 bytes; speed 0.000 bytes/s
2014-08-26 06:00:43 ERROR juju.provider.common bootstrap.go:123 bootstrap
failed: rc: 1
Stopping instance...
2014-08-26 06:00:43 INFO juju.cmd cmd.go:113 Bootstrap failed, destroying environment
2014-08-26 06:00:43 INFO juju.provider.common destroy.go:14 destroying environment "maas"
2014-08-26 06:00:44 ERROR juju.cmd supercommand.go:300 rc: 1

Utilizo Ubuntu 14.04 en un entorno KVM.

mi entornos.yaml se ve así:

environments:
  maas:
    type: maas
    maas-server: 'http://172.19.202.71/MAAS'
    maas-oauth: 'ZJ9GLGqSVSWdZ6eXET:AjCdJRwgS26jsBwHp8:gpwhCLf6P2AJCh3mcGL2vRqhbSvkwRGB'
    admin-secret: 'MY-PASSWORD'
    default-series: trusty
    http-proxy: http://172.19.202.70:8000
    https-proxy: https://172.19.202.70:8000
    no-proxy: localhost,172.19.202.0/24
    bootstrap-timeout: 1800

¿Alguien conoce este problema?

saluda

Respuesta1

Su no-proxyconfiguración tiene un formato incorrecto. Debe ser una lista de direcciones IP delimitadas por comas, no un rango CIDR. Eche un vistazo a esta pregunta relacionada:https://unix.stackexchange.com/questions/23452/set-a-network-range-in-the-no-proxy-environment-variable

Le recomiendo que lo configure no-proxy: 127.0.0.1,172.19.202.71y vuelva a intentarlo. Si no funciona, actualice la pregunta y tal vez presente un error contra juju-core:https://bugs.launchpad.net/juju-core

información relacionada