Bug 888258 - libvirtd doesn't restart after vdsm configures it
Summary: libvirtd doesn't restart after vdsm configures it
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: oVirt
Classification: Retired
Component: vdsm
Version: 3.2
Hardware: Unspecified
OS: Unspecified
urgent
urgent
Target Milestone: ---
: 3.2
Assignee: Yaniv Bronhaim
QA Contact: Haim
URL:
Whiteboard: infra
Depends On:
Blocks: ovirt-3.2-release
TreeView+ depends on / blocked
 
Reported: 2012-12-18 12:12 UTC by Ohad Basan
Modified: 2014-10-30 22:34 UTC (History)
11 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2013-02-15 06:47:10 UTC
oVirt Team: ---
Embargoed:


Attachments (Terms of Use)
engine-setup.log (155.36 KB, text/x-log)
2012-12-19 09:16 UTC, Ohad Basan
no flags Details
host deploy log (151.14 KB, text/x-log)
2012-12-19 09:16 UTC, Ohad Basan
no flags Details
vdsm.log (24.61 KB, text/plain)
2012-12-19 10:22 UTC, Ohad Basan
no flags Details

Description Ohad Basan 2012-12-18 12:12:23 UTC
Description of problem:
After host-deploy libvirtd should be restarted prior to starting vdsmd.
in order for it to load the new configuration


Version-Release number of selected component (if applicable):


How reproducible:
always

Steps to Reproduce:
1.install a fedora18 + ovirt nightly.
2.connect a new host.
3.
  
Actual results:
vdsm crashes because libvirtd wasn't restarted before that.

Expected results:
libvirtd should be restarted after being configured.

Additional info:

Comment 1 Moran Goldboim 2012-12-18 14:30:30 UTC
blocks ovirt live flow.

Comment 2 Alon Bar-Lev 2012-12-18 21:14:11 UTC
Ohad, this is not full description.

You should have written that ovirt-host-deploy executes vdsm reconfigure, this succeeds, and still there is an issue with vdsm/libvirt, even paste the relevant log hank.

You should have come up with Dan analyze of the problem, as he did invest time.

Comment 3 Ohad Basan 2012-12-19 09:16:22 UTC
Created attachment 665986 [details]
engine-setup.log

Comment 4 Ohad Basan 2012-12-19 09:16:49 UTC
Created attachment 665987 [details]
host deploy log

Comment 5 Dan Kenigsberg 2012-12-19 09:20:08 UTC
I am guessing that vdsmd.service failed to restart libvirt after having /etc/libvirtd.conf reconfigured.

You can verify my guess by applying the following untested patch, and rebuild vdsm:

diff --git a/vdsm/vdsmd.init.in b/vdsm/vdsmd.init.in
index 7a7ae84..86edc15 100755
--- a/vdsm/vdsmd.init.in
+++ b/vdsm/vdsmd.init.in
@@ -362,7 +362,11 @@ EOF
 
     ovirt_store_config "$lconf" "$qconf" "$ldconf" "$llogr"
 
-    /sbin/initctl restart libvirtd 2>/dev/null || :
+    if libvirt_should_use_upstart; then
+        /sbin/initctl restart libvirtd 2>/dev/null || :
+    else
+        systemctl reload libvirtd.service
+    fi
 
     #
     # finished reconfiguration, do not trigger

Comment 6 Ohad Basan 2012-12-19 10:22:23 UTC
Created attachment 666012 [details]
vdsm.log

this patch doesn't seem to be working. log is attached.

Comment 7 Yaniv Bronhaim 2012-12-25 13:10:06 UTC
merged upstream - http://gerrit.ovirt.org/#/c/10237/
posted for 3.2 branch - http://gerrit.ovirt.org/#/c/10316/

Comment 8 Itamar Heim 2013-01-16 16:10:26 UTC
3.2 beta built, moving to ON_QA status to allow testing


Note You need to log in before you can comment on or make changes to this bug.