We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are two servers in this environment, both running KVM on Ubuntu 14.04 LTS
The following virsh command completes successfully: virsh migrate TP0002 qemu+ssh://192.168.1.202/system --live --p2p --tunnelled --compressed --persistent --undefinesource
virsh migrate TP0002 qemu+ssh://192.168.1.202/system --live --p2p --tunnelled --compressed --persistent --undefinesource
The following node code fails with Segmentation fault
Segmentation fault
'use strict' const virt = require('libvirt'); let hv = virt.createHypervisor('qemu:///system'), destination = { dest_uri: 'qemu://192.168.1.202/system', dest_name: 'test1', flags: virt.VIR_MIGRATE_LIVE | virt.VIR_MIGRATE_PEER2PEER | virt.VIR_MIGRATE_TUNNELLED | virt.VIR_MIGRATE_PERSIST_DEST | virt.VIR_MIGRATE_UNDEFINE_SOURCE }; return hv.connectAsync() .then(() => hv.lookupDomainByNameAsync('TP0001')) .then(domain => domain.migrateAsync(destination)) .then(() => { console.log('success'); process.exit(0); }) .catch(err => { console.error('error', err); process.exit(1); });
The text was updated successfully, but these errors were encountered:
c81e718
Confirmed working now - thanks!
Sorry, something went wrong.
No branches or pull requests
There are two servers in this environment, both running KVM on Ubuntu 14.04 LTS
The following virsh command completes successfully:
virsh migrate TP0002 qemu+ssh://192.168.1.202/system --live --p2p --tunnelled --compressed --persistent --undefinesource
The following node code fails with
Segmentation fault
The text was updated successfully, but these errors were encountered: