LXC container disappears after cloning a VM (using ZFS)
I have a VM on google cloud that has 2 disks: system disk and a ZFS disk. I also have a LXC container (named 'lightapi') on that VM, and everything works.
I am using LXC 1.0 (lxc-* commands, without LXD)
The LXC is sharing folders with the ZFS disk.
I wanted to clone the VM, so I stopped it, made snapshots from the disks, and created a new VM using them.
When I boot the new VM, I can see the container files in /var/lib/lxc/lightapi.
But the container is not running, although in the original VM it was set to autorun on boot. If I try to lxc-attach, it doesn't work, with no error message.
It seems that there is something wrong with the ZFS on the new VM:
$ zpool list
no pools available
while on the original VM exists a pool. I believe that as a result the LXC container is not able to connect. Is there a way to connect to the zpool that is in the duplicated disk on the new VM?
lxc zfs
add a comment |
I have a VM on google cloud that has 2 disks: system disk and a ZFS disk. I also have a LXC container (named 'lightapi') on that VM, and everything works.
I am using LXC 1.0 (lxc-* commands, without LXD)
The LXC is sharing folders with the ZFS disk.
I wanted to clone the VM, so I stopped it, made snapshots from the disks, and created a new VM using them.
When I boot the new VM, I can see the container files in /var/lib/lxc/lightapi.
But the container is not running, although in the original VM it was set to autorun on boot. If I try to lxc-attach, it doesn't work, with no error message.
It seems that there is something wrong with the ZFS on the new VM:
$ zpool list
no pools available
while on the original VM exists a pool. I believe that as a result the LXC container is not able to connect. Is there a way to connect to the zpool that is in the duplicated disk on the new VM?
lxc zfs
add a comment |
I have a VM on google cloud that has 2 disks: system disk and a ZFS disk. I also have a LXC container (named 'lightapi') on that VM, and everything works.
I am using LXC 1.0 (lxc-* commands, without LXD)
The LXC is sharing folders with the ZFS disk.
I wanted to clone the VM, so I stopped it, made snapshots from the disks, and created a new VM using them.
When I boot the new VM, I can see the container files in /var/lib/lxc/lightapi.
But the container is not running, although in the original VM it was set to autorun on boot. If I try to lxc-attach, it doesn't work, with no error message.
It seems that there is something wrong with the ZFS on the new VM:
$ zpool list
no pools available
while on the original VM exists a pool. I believe that as a result the LXC container is not able to connect. Is there a way to connect to the zpool that is in the duplicated disk on the new VM?
lxc zfs
I have a VM on google cloud that has 2 disks: system disk and a ZFS disk. I also have a LXC container (named 'lightapi') on that VM, and everything works.
I am using LXC 1.0 (lxc-* commands, without LXD)
The LXC is sharing folders with the ZFS disk.
I wanted to clone the VM, so I stopped it, made snapshots from the disks, and created a new VM using them.
When I boot the new VM, I can see the container files in /var/lib/lxc/lightapi.
But the container is not running, although in the original VM it was set to autorun on boot. If I try to lxc-attach, it doesn't work, with no error message.
It seems that there is something wrong with the ZFS on the new VM:
$ zpool list
no pools available
while on the original VM exists a pool. I believe that as a result the LXC container is not able to connect. Is there a way to connect to the zpool that is in the duplicated disk on the new VM?
lxc zfs
lxc zfs
asked Nov 20 '18 at 11:22
justadevjustadev
138211
138211
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I found the answer:
Before creating the snapshot, on on the original vm, do :
zpool export [name]
then stop the original vm, duplicate the disk, and clone the vm. After booting the new vm do:
zpool import [name]
And that's it.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391941%2flxc-container-disappears-after-cloning-a-vm-using-zfs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found the answer:
Before creating the snapshot, on on the original vm, do :
zpool export [name]
then stop the original vm, duplicate the disk, and clone the vm. After booting the new vm do:
zpool import [name]
And that's it.
add a comment |
I found the answer:
Before creating the snapshot, on on the original vm, do :
zpool export [name]
then stop the original vm, duplicate the disk, and clone the vm. After booting the new vm do:
zpool import [name]
And that's it.
add a comment |
I found the answer:
Before creating the snapshot, on on the original vm, do :
zpool export [name]
then stop the original vm, duplicate the disk, and clone the vm. After booting the new vm do:
zpool import [name]
And that's it.
I found the answer:
Before creating the snapshot, on on the original vm, do :
zpool export [name]
then stop the original vm, duplicate the disk, and clone the vm. After booting the new vm do:
zpool import [name]
And that's it.
answered Nov 20 '18 at 14:56
justadevjustadev
138211
138211
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391941%2flxc-container-disappears-after-cloning-a-vm-using-zfs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown