similar to: share nothing live migration causes read only filesystem

Displaying 20 results from an estimated 500 matches similar to: "share nothing live migration causes read only filesystem"

2015 Nov 04
2
vm doesn't respond after live migration
2015 Dec 14
1
Re: block-commit fails
2015 Nov 04
0
Re: vm doesn't respond after live migration
I also have problems with a live migration. I’ve experienced that migrating over tcp instead of ssh is more stable. But with big disks ( > 30Gb) and –copy-storage-all, I keep getting problems… for now I don’t use it. Van: libvirt-users-bounces@redhat.com [mailto:libvirt-users-bounces@redhat.com] Namens Firat KÜÇÜK Verzonden: woensdag 4 november 2015 12:01 Aan: libvirt-users@redhat.com
2011 Oct 24
2
How to use "virsh migrat" with p2p option?
Hi libvirt support, Can you please give me some example of how to use "virsh migrate --live" with p2p option including both source host and target host? I try to get some info from your website, but no info with migrate. [root at vmoactive02 qemu]# virsh help migrate NAME migrate - migrate domain to another host SYNOPSIS migrate [--live] [--p2p] [--direct]
2013 Oct 14
1
virsh migrate fails with Input/output error
Hey guys, I'm running the following setup on a few hosts: ~ # virsh version Compiled against library: libvir 0.9.8 Using library: libvir 0.9.8 Using API: QEMU 0.9.8 Running hypervisor: QEMU 1.0.0 Online Migrations with local storage are working smooth, Host OS is always Ubuntu 12.04, CPUs are Intel E3-1245 V2, 32GB Ram. Now I installed the same software on different hardware: Intel E5-2620,
2011 Feb 08
1
Clarification about virsh migration options
I am trying to work out what all the options are for migrating a KVM machine to another KVM machine, without using shared storage. The documentation is not quite verbose and not intuitive, so I'm hoping someone can explain this to me. The man pages show this syntax: migrate optional --live --p2p --direct --tunnelled --persistent --undefinesource --suspend --copy-storage-all --copy-storage-inc
2011 Jul 18
1
cannot perform tunnelled migration without using peer2peer flag
Dear All I try to migration a kvm guest os to another host failed server: ubuntu 11.04 server virsh:migrate --live --tunnelled vm1 qemu+ssh://192.168.10.3/system error:Requested operation is not valid:cannot perform tunnelled migration without using peer2peer flag
2019 Mar 23
4
nbdkit & qemu 2.12: qemu-img: Protocol error: simple reply when structured reply chunk was expected
nbdkit (upstream 5a7a394c699) currently fails with qemu 2.12.0: $ ./nbdkit memory size=64M --run 'qemu-img convert $nbd /var/tmp/out' nbdkit: memory.2: error: invalid request: unknown command (7) ignored qemu-img: Protocol error: simple reply when structured reply chunk was expected This was a bug in qemu which was fixed upstream quite a long time ago by the commit I've
2007 Dec 17
0
"mongrel_rails start" does absolutely nothing.
I''m having a strange issue with Mongrel. Post-install of Mac OS X 10.5, my Mongrel will not start under any circumstances. I''ve already removed ("sudo gem uninstall mongrel"), ran "gem cleanup" to remove old versions and then installed the latest gem version (1.1.2). When I run "mongrel_rails start" anywhere (inside a fresh Rails app, random place
2007 Jan 16
2
at boot disabling IRQ #193 then nothing
All, I have a new box. Gigabyte motherboard AM2 sempron 3200+. CentOS installed fine, I rebooted after the install. It booted fine again. I ran yum -y update and now after that on boot it says Initializing hardware Storage network audio done Disabling IRQ #193 and then nothing. just sets there.... Any ideas on that??? Jerry
2006 Jul 14
0
App crash but nothing in logs
Hello, I have a big problem with an application running in production mode : the app crashes but there''s nothing in the logs Setup is Apache + FastCGI - I know there is something wrong with my code somewhere (crash is not related with the setup) How can I do to have further informations about the error while staying in production mode ? Should I run an instance of the application in
2006 May 01
0
Upload problem when file is small/StringIO (read method return nothing)
Hi I am having a problem with uploading small files. These are StringIO objects rather than temporary files as with the larger file uploads. The problem is that when it is a StringIO rather than a temporary file nothing is returned from the read method. example code where "image" is the file upload form parameter, it works fine if image is over round 19k but is it is smaller then
2006 Feb 22
0
Ajax.Autocompleter clear field if nothing selected
Here''s the basics of what I want to do: If the user selects something from the autocompleting dropdown the use the normal functionality and populate the text box. If the user does not select something, and simply leaves the field, I want it cleared back out to blank. I just can not get the javascript to work to be smart enough to know when something was selected and leave it and when
2005 Dec 18
3
Render Nothing....
Hi, What''s the best way to render nothing ? I am making an ajax call to an action on my controller that does not need to make any changes to the view. Not sure how do that yet as I get an exception in the logs saying xxx.rhtml not found.... Thank you all !! -- Posted via http://www.ruby-forum.com/.
2007 Apr 18
1
[Bridge] why ./brctl showmacs br0 display nothing?
hi: my box use eth0 connect my pc. but I type command "./brctl showmacs br0", no mac addr display and the" brctl showmacs program" not exit,always exec # ./brctl show bridge name bridge id STP enabled interfaces br0 8000.000123456789 no eth0 hdlc0 # ./brctl showmacs br0
2005 Mar 30
0
SW:KOTOR gets nothing from keyboard or mouse
Hello all. I've installed Star Wars: Knight of the Old Republic. The game seems to run fine, except that the mouse pointer is stuck in the center of the screen: I can move it a little, but it alwas come back to the center. After investigation, I started the game with native dinput. This time, the mouse works fine, but know it's the keyboard that doesn't work anymore (it works if I
2009 Jan 05
1
Delphi-32 app does nothing with unhandled exception
Hi everyone: First of all wine-1.1.11 from download page, also tested with debian wine version 1.0.1-1 Debian unstable 2.6.26-1-686 1GB ram I have a couple of problems when running a delphi application: 1.- When I fire it up in windows it shows a "welcome" screen containing information about currencies and stuff, and the main screen stays behind. This "welcome" screen
2007 Jan 03
0
`ActionController::Base#render :nothing => true` still whines about "missing template"
In FooController, I put method #bar whose only purpose is to run some logic in the background and return a status 204 [1]. So in order to return only the 204 status code, I put at the end of #bar: `render :nothing => true, :status => 204` But then when surfing to /foo/bar, I get an error about "missing template bar.rhtml". Is this a bug? (The solution eventually was `render
2010 Jul 25
0
render :update with different controller does nothing
Hi! I want to render 2 different actions - in different controller - when the user clicks on a button. I solved this with JS calls (Ajax.Updater) within the view, but wanted to take the app logic out of the view and into the controller. So I created a new controller action, calling the 2 updates from there like this: render :update do |page| page.replace_html ''Browser'',
2010 Mar 09
0
"btrfs-debug-tree -e" prints nothing?
Hi all, I''m wondering why ''btrfs-debug-tree -e'' currently prints out nothing with btrfs-progs v0.19-4-gab8fb4c, and kernel v2.6.33. I''d like to experiment with the ''show-blocks'' script, but it needs some output from ''btrfs-debug-tree -e'', which I apparently can''t provide. - Steven -- To unsubscribe from this list: