web-dev-qa-db-fra.com

lxc-create s'exécute sans erreur, le système de fichiers zfs est créé, mais le conteneur n'est pas créé

J'essaie lxc pour la première fois, en suivant https://help.ubuntu.com/lts/serverguide/lxc.html et les pages de manuel.

Le lxc-create la commande s'exécute sans erreur et crée le zfs /lxc/u1 système de fichiers, monté sur /lxc/u1/rootfs.

root@Ubuntu-1604-xenial-64-minimal ~ # lxc-create -t download --bdev zfs --lxcpath=/lxc -n u1 -- --dist ubuntu --release xenial --Arch AMD64 
Setting up the GPG keyring
Downloading the image index
Downloading the rootfs
Downloading the metadata
The image cache is now ready
Unpacking the rootfs

---
You just created an Ubuntu container (release=xenial, Arch=AMD64, variant=default)

To enable sshd, run: apt-get install openssh-server

For security reason, container images ship without user accounts
and without a root password.

Use lxc-attach or chroot directly into the rootfs to set a root password
or create user accounts.
root@Ubuntu-1604-xenial-64-minimal ~ # lxc-ls --fancy
root@Ubuntu-1604-xenial-64-minimal ~ # zfs list
NAME     USED  AVAIL  REFER  MOUNTPOINT
lxc      390M  1.27T    20K  /lxc
lxc/u1   389M  1.27T   389M  /lxc/u1/rootfs
root@Ubuntu-1604-xenial-64-minimal ~ # 

Pourquoi lxc-ls ne pas montrer u1?

Qu'est ce que j'ai mal fait?

1
fadedbee

J'ai besoin d'ajouter --lxcpath =/lxc à every lxc command :(

root@Ubuntu-1604-xenial-64-minimal ~ # Sudo lxc-ls --lxcpath=/lxc --fancy
NAME STATE   AUTOSTART GROUPS IPV4 IPV6 
u1   STOPPED 0         -      -    -    

J'ai corrigé cela avec:

echo "lxc.lxcpath = /lxc" > /etc/lxc/lxc.conf
1
fadedbee