lxc O contêiner não inicia

4

Estou tentando executar um contêiner lxc no Ubuntu 16.10 com as seguintes configurações:

lxc.utsname = cont
lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = bridge
lxc.network.ipv4 = 10.0.0.10/24

A ponte já está em funcionamento. Eu crio o container usando o template xenial da seguinte forma:

lxc-create -f lxc-veth.conf -t download -n cont -- --dist ubuntu --release xenial --arch amd64 --no-validate

Então eu inicio o container:

lxc-start -n cont /bin/bash --logfile log.txt

Eu recebo os seguintes erros:

  lxc-start 20161114114122.026 ERROR    lxc_start - start.c:start:1439 - No such file or directory - failed to exec /lib/lxc cont
  lxc-start 20161114124122.026 ERROR    lxc_sync - sync.c:__sync_wait:57 - An error occurred in another process (expected sequence number 5)
  lxc-start 20161114124122.026 ERROR    lxc_start - start.c:__lxc_start:1354 - failed to spawn 'cont'
  lxc-start 20161114124127.568 ERROR    lxc_start_ui - tools/lxc_start.c:main:344 - The container failed to start.
  lxc-start 20161114124127.568 ERROR    lxc_start_ui - tools/lxc_start.c:main:346 - To get more details, run the container in foreground mode.
  lxc-start 20161114124127.568 ERROR    lxc_start_ui - tools/lxc_start.c:main:348 - Additional information can be obtained by setting the --logfile and --logpriority options.

Não consigo descobrir qual arquivo está faltando. Então, qual é a fonte do problema?

    
por IoT 14.11.2016 / 12:44

1 resposta

0

O problema existe no último comando lxc-start , o comando deve ser:

lxc-start -n cont --logfile bla.txt -- /bin/bash

Basicamente, não é necessário executar /bin/bash , pois quando eu anexar o container, eu terei acesso ao shell

    
por IoT 14.11.2016 / 19:35