[Users] python-sdk : how to modify a vm to "Run on" a "Specific" host and set "Migration Options
by karthik S
Dear Users,
I am karthik, based in Mountain View, CA. I have been using python ovirtsdk
for QA Automation tests for RHEV-M for past two months. My knowledge on
ovirtsdk is intermittent at this stage.
I want to do the below actions that we do on rhev-M using python ovirtsdk.
On, RHEV-M UI
============
1) right click a offline VM >> Edit >> Host >> "Run On:" >> Specific >.
choose a hostname
2) right click a offline VM >> Edit >> Host >> "Migration Options:" >> "Do
not allow migration"
python Code:
==========
1) The VM was imported from export domain to my storage_domain using the
code
def import_vm(self, source_vm_name, dest_vm_name, storage_domain_name,
rhev_host_name=None, cluster_name="Default", async=False):
"""
Import VM From a Export domain into your storage domain
"""
timeoutSec=1800
pollInterval=2
exportStorageDomain =
self.api.storagedomains.list(type_="export")[0]
actionParams = params.Action(
storage_domain=self.api.storagedomains.get(storage_domain_name),
cluster=self.api.clusters.get("Default"),
clone=1,
vm = params.VM (name=dest_vm_name,
snapshots=params.Snapshots(collapse_snapshots=1),
disks =
params.Disks(clone = 1),
host =
params.Host(name=rhev_host_name)
))
exportStorageDomain.vms.get(source_vm_name).import_vm(actionParams)
start = time.time()
while self.api.vms.get(dest_vm_name).status.state != 'down':
if time.time() - start > timeoutSec:
raise Exception("Timed out (%s) waiting for %s to
obtain down status" % (timeoutSec, vm_name))
time.sleep(pollInterval)
return self.api.vms.get(name=dest_vm_name)[0]
Issue : Upon import, this method did not set the "Run as" to the specified
host but "Run as" was set to "Any host in the cluster". Am I missing
something ?
2) Secondly, I tried modifying the VM "Run as" hostname with the below code
>>> api = API (url = "xx" , username ="XX", pasword ="XX", ca_file = "ca")
>>> vm_obj = api.vms.list(name="test_vm_101")[0]
>>> vm_obj.set_host="rhev1"
>>> vm_obj.update()
This did not help either. Seems I am missing something..
3) finally how to set " "Migration Options" ?
Your help would appreciated and will help me to get greater understanding
of the SDK itself.
Thanks,
Karthik
10 years, 10 months
[Users] Attach nfs domain to gluster dc
by Juan Pablo Lorier
Hi,
I've created a new DC in order of been able to create vms on a glusterfs
data domain. As ovirt does not allow to share export and iso domains
between DCs (nice RFE) I detach those from the actual DC and when I try
to attach them to the new DC, I get an error:
2013-12-10 15:19:28,558 ERROR
[org.ovirt.engine.core.bll.storage.NFSStorageHelper] (pool-6-thread-46)
The connection with details 192.168.128.81:/home/exports/export failed
because of error code 477 and error message is: problem while trying to
mount target
2013-12-10 15:19:28,577 ERROR
[org.ovirt.engine.core.bll.storage.ConnectStorageToVdsCommand]
(pool-6-thread-46) Transaction rolled-back for command:
org.ovirt.engine.core.bll.storage.ConnectStorageToVdsCommand.
2013-12-10 15:19:28,578 ERROR
[org.ovirt.engine.core.bll.storage.NFSStorageHelper] (pool-6-thread-41)
The connection with details 192.168.128.81:/home/exports/export failed
because of error code 477 and error message is: problem while trying to
mount target
2013-12-10 15:19:28,587 ERROR
[org.ovirt.engine.core.bll.storage.ConnectStorageToVdsCommand]
(pool-6-thread-41) Transaction rolled-back for command:
org.ovirt.engine.core.bll.storage.ConnectStorageToVdsCommand.
But if I mount the nfs share manually from the hosts, I have no problems.
I've been having issues with nfs since I updated to 3.3.1, I have the
nfs shares in one of the hosts of the iscsi domain and the other host
complaints about not been ablo to access the domains from time to time.
The host where the shares are never complaints.
Any hints?
Regards,
10 years, 10 months
[Users] ovirt-engine 3.3.2 on F20
by Earl Potter
I'm having a bit of a struggle getting ovirt-engine to install on an F20
box.
I first install ovirt-release-fedora.noarch which sets up
/etc/yum.repos.d/ovirt.repo and points to $releasever. However, there
doesn't seem to be any F20 ovirt repos. Yum is trying to look here:
http://resources.ovirt.org/releases/3.3.2/rpm/Fedora/20/
But it seems 3.3.2 is located here:
http://resources.ovirt.org/releases/3.3.2/rpm/Fedora/19/
I try changing the repo definition and most everything looks like it's
going to install. however, it ends w/ a file conflict between two
packages, ovirt-log-collector and sos from F20.
Transaction check error:
file /usr/lib/python2.7/site-packages/sos/plugins/postgresql.py from
install of ovirt-log-collector-3.3.2-2.fc19.noarch conflicts with file from
package sos-3.0-3.fc20.noarch
file /usr/lib/python2.7/site-packages/sos/plugins/postgresql.pyc from
install of ovirt-log-collector-3.3.2-2.fc19.noarch conflicts with file from
package sos-3.0-3.fc20.noarch
file /usr/lib/python2.7/site-packages/sos/plugins/postgresql.pyo from
install of ovirt-log-collector-3.3.2-2.fc19.noarch conflicts with file from
package sos-3.0-3.fc20.noarch
I'm not really certain how to work around this short of installing an F19
system.
Any thoughts would be appreciated.
Thank you,
Earl
10 years, 10 months
[Users] errors after node update
by Michael Wagenknecht
Hi,
today I have updated one of our nodes to vdsm-4.13.2-1.el6.x86_64.
Now I get the following messages in /var/log/messages:
Dec 30 12:54:19 ovirt01 vdsm vm.Vm ERROR
vmId=`4a2ab2ff-74ee-4908-b5fc-d903904969e9`::Stats function failed:
<AdvancedStatsFunction _highWrite at 0x1658fb8>#012Traceback (most
recent call last):#012 File "/usr/share/vdsm/sampling.py", line 351, in
collect#012 statsFunction()#012 File "/usr/share/vdsm/sampling.py",
line 226, in __call__#012 retValue = self._function(*args,
**kwargs)#012 File "/usr/share/vdsm/vm.py", line 525, in
_highWrite#012 self._vm.extendDrivesIfNeeded()#012 File
"/usr/share/vdsm/vm.py", line 2285, in extendDrivesIfNeeded#012
capacity, alloc, physical = self._dom.blockInfo(drive.path, 0)#012 File
"/usr/share/vdsm/vm.py", line 838, in f#012 ret = attr(*args,
**kwargs)#012 File
"/usr/lib64/python2.6/site-packages/vdsm/libvirtconnection.py", line 76,
in wrapper#012 ret = f(*args, **kwargs)#012 File
"/usr/lib64/python2.6/site-packages/libvirt.py", line 1797, in
blockInfo#012 if ret is None: raise libvirtError
('virDomainGetBlockInfo() failed', dom=self)#012libvirtError: invalid
argument: invalid path
/rhev/data-center/mnt/blockSD/88f22219-83b5-4597-93a9-f14a06818cea/images/41769225-b919-49d9-9cd6-bdf4fdd9e800/0f572a47-690d-4698-b4ce-e499a578d05a
not assigned to domain
Dec 30 12:54:19 ovirt01 vdsm vm.Vm ERROR
vmId=`30201f68-c905-4c29-a350-314d6e1bfc42`::Stats function failed:
<AdvancedStatsFunction _highWrite at 0x1658fb8>#012Traceback (most
recent call last):#012 File "/usr/share/vdsm/sampling.py", line 351, in
collect#012 statsFunction()#012 File "/usr/share/vdsm/sampling.py",
line 226, in __call__#012 retValue = self._function(*args,
**kwargs)#012 File "/usr/share/vdsm/vm.py", line 525, in
_highWrite#012 self._vm.extendDrivesIfNeeded()#012 File
"/usr/share/vdsm/vm.py", line 2285, in extendDrivesIfNeeded#012
capacity, alloc, physical = self._dom.blockInfo(drive.path, 0)#012 File
"/usr/share/vdsm/vm.py", line 838, in f#012 ret = attr(*args,
**kwargs)#012 File
"/usr/lib64/python2.6/site-packages/vdsm/libvirtconnection.py", line 76,
in wrapper#012 ret = f(*args, **kwargs)#012 File
"/usr/lib64/python2.6/site-packages/libvirt.py", line 1797, in
blockInfo#012 if ret is None: raise libvirtError
('virDomainGetBlockInfo() failed', dom=self)#012libvirtError: invalid
argument: invalid path
/rhev/data-center/mnt/blockSD/88f22219-83b5-4597-93a9-f14a06818cea/images/de3d395d-be91-4df8-a696-af7eec684fc0/c3bf5b3c-a500-469a-bca0-a255ce53ee6a
not assigned to domain
Dec 30 12:54:20 ovirt01 vdsm vm.Vm ERROR
vmId=`2a3fea67-68e6-4cf2-bb31-aa378f42eb88`::Stats function failed:
<AdvancedStatsFunction _highWrite at 0x1658fb8>#012Traceback (most
recent call last):#012 File "/usr/share/vdsm/sampling.py", line 351, in
collect#012 statsFunction()#012 File "/usr/share/vdsm/sampling.py",
line 226, in __call__#012 retValue = self._function(*args,
**kwargs)#012 File "/usr/share/vdsm/vm.py", line 525, in
_highWrite#012 self._vm.extendDrivesIfNeeded()#012 File
"/usr/share/vdsm/vm.py", line 2285, in extendDrivesIfNeeded#012
capacity, alloc, physical = self._dom.blockInfo(drive.path, 0)#012 File
"/usr/share/vdsm/vm.py", line 838, in f#012 ret = attr(*args,
**kwargs)#012 File
"/usr/lib64/python2.6/site-packages/vdsm/libvirtconnection.py", line 76,
in wrapper#012 ret = f(*args, **kwargs)#012 File
"/usr/lib64/python2.6/site-packages/libvirt.py", line 1797, in
blockInfo#012 if ret is None: raise libvirtError
('virDomainGetBlockInfo() failed', dom=self)#012libvirtError: invalid
argument: invalid path
/rhev/data-center/mnt/blockSD/39b807ec-d486-42de-bfdc-8aead19c6a41/images/3e06341a-18ac-450f-b16a-22247fe7eaa9/f96bf3f7-9137-407f-9046-5dc2f9bc8412
not assigned to domain
What does it mean and what can I do?
It is a Centos 6.4 node with the following packages:
vdsm-4.13.2-1.el6.x86_64
vdsm-python-cpopen-4.12.1-4.el6.x86_64
vdsm-python-4.13.2-1.el6.x86_64
vdsm-xmlrpc-4.13.2-1.el6.noarch
vdsm-cli-4.13.2-1.el6.noarch
libvirt-client-0.10.2-18.el6_4.14.x86_64
libvirt-0.10.2-18.el6_4.14.x86_64
libvirt-lock-sanlock-0.10.2-18.el6_4.14.x86_64
libvirt-python-0.10.2-18.el6_4.14.x86_64
gpxe-roms-qemu-0.9.7-6.9.el6.noarch
qemu-kvm-rhev-0.12.1.2-2.355.el6.5.x86_64
qemu-kvm-rhev-tools-0.12.1.2-2.355.el6.5.x86_64
qemu-img-rhev-0.12.1.2-2.355.el6.5.x86_64
Do you need additional informations?
Thanks,
Michael
10 years, 10 months
[Users] different data types on single node
by Neil Schulz
I am trying to test the performance of iSCSI and NFS on our system.
However, I just discovered I have to have a new datacenter for each data
type. Does this mean it's a single DC for each host? Is it possible to
have a host use multiple data centers for different storage types?
Than you,
Neil
10 years, 11 months
[Users] oVirt 3.3.2 release
by Sandro Bonazzola
The oVirt development team is very happy to announce the general
availability of oVirt 3.3.2 as of December 19th 2013. This release
solidifies oVirt as a leading KVM management application and open
source alternative to VMware vSphere.
oVirt is available now for Fedora 19 and Red Hat Enterprise Linux 6.5
(or similar).
This release of oVirt includes 175 bug fixes and the first release of the
Backup and Restore API, which enables backup programs to integrate with oVirt.
This release also simplifies the Guide Me VM-creation wizard. See the release
notes [1] for a list of the new features and bugs fixed.
IMPORTANT NOTE: If you're upgrading from a previous version, please update
ovirt-release to the latest version (10) and verify you have the correct
repositories enabled by running the following commands
# yum update ovirt-release
# yum repolist enabled
before upgrading with the usual procedure. You should see the ovirt-3.3.2 and
ovirt-stable repositories listed in the output of the repolist command.
[1] http://www.ovirt.org/OVirt_3.3.2_release_notes
--
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
10 years, 11 months
[Users] Trying to upgrade from 3.3.1 to 3.3.2
by Maurice James
------=_NextPart_000_0010_01CF0222.59C39FD0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
I'm trying to upgrade from 3.3.1 to 3.3.2 and im getting the following
output. It kind of speaks for itself but I'm not sure why its happening.
--> Finished Dependency Resolution
Error: Package: ovirt-engine-3.3.1-2.el6.noarch (@ovirt-stable)
Requires: ovirt-engine-websocket-proxy = 3.3.1-2.el6
Removing: ovirt-engine-websocket-proxy-3.3.1-2.el6.noarch
(@ovirt-stable)
ovirt-engine-websocket-proxy = 3.3.1-2.el6
Updated By: ovirt-engine-websocket-proxy-3.3.2-1.el6.noarch
(ovirt-3.3.2)
ovirt-engine-websocket-proxy = 3.3.2-1.el6
Available: ovirt-engine-websocket-proxy-3.3.0-3.el6.noarch
(ovirt-stable)
ovirt-engine-websocket-proxy = 3.3.0-3.el6
Available: ovirt-engine-websocket-proxy-3.3.0-4.el6.noarch
(ovirt-stable)
ovirt-engine-websocket-proxy = 3.3.0-4.el6
Available: ovirt-engine-websocket-proxy-3.3.0.1-1.el6.noarch
(ovirt-stable)
ovirt-engine-websocket-proxy = 3.3.0.1-1.el6
Available: ovirt-engine-websocket-proxy-3.3.1-1.el6.noarch
(ovirt-stable)
ovirt-engine-websocket-proxy = 3.3.1-1.el6
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles -nodigest
Here is the output of repolist
]# yum repolist
Loaded plugins: fastestmirror, rhnplugin, versionlock
This system is receiving updates from RHN Classic or Red Hat Satellite.
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* centosplus: mirror.unl.edu
* contrib: mirror.steadfast.net
* epel: kdeforge2.unl.edu
* extras: mirror-centos.hostingswift.com
* rpmfusion-free-updates: mirrors.tummy.com
repo id repo name
status
base CentOS-6 - Base
6,367
centos6-x86_64 CentOS 6 (x86_64)
0
centos6-x86_64-updates CentOS 6 Updates (x86_64)
296
centosplus CentOS-6 - Plus
16
contrib CentOS-6 - Contrib
0
epel Extra Packages for Enterprise Linux
6 - x86_64 10,171
extras CentOS-6 - Extras
14
glusterfs-epel GlusterFS is a clustered file-system
capable of scaling to several petabytes. 11
glusterfs-noarch-epel GlusterFS is a clustered file-system
capable of scaling to several petabytes. 1
ovirt-3.3.2 oVirt 3.3.2 release
111
ovirt-stable Older Stable builds of the oVirt
project 324
rpmfusion-free-updates RPM Fusion for EL 6 - Free - Updates
273
spacewalk-client Spacewalk Client Tools
22
repolist: 17,606
------=_NextPart_000_0010_01CF0222.59C39FD0
Content-Type: text/html; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
<html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" =
xmlns=3D"http://www.w3.org/TR/REC-html40"><head><meta =
http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dus-ascii"><meta name=3DGenerator content=3D"Microsoft Word 15 =
(filtered medium)"><style><!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:#0563C1;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:#954F72;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri","sans-serif";
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri","sans-serif";}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext=3D"edit">
<o:idmap v:ext=3D"edit" data=3D"1" />
</o:shapelayout></xml><![endif]--></head><body lang=3DEN-US =
link=3D"#0563C1" vlink=3D"#954F72"><div class=3DWordSection1><p =
class=3DMsoNormal>I’m trying to upgrade from 3.3.1 to 3.3.2 and im =
getting the following output. It kind of speaks for itself but I’m =
not sure why its happening.<o:p></o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p class=3DMsoNormal>--> =
Finished Dependency Resolution<o:p></o:p></p><p class=3DMsoNormal>Error: =
Package: ovirt-engine-3.3.1-2.el6.noarch =
(@ovirt-stable)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Requires: ovirt-engine-websocket-proxy =3D =
3.3.1-2.el6<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Removing: ovirt-engine-websocket-proxy-3.3.1-2.el6.noarch =
(@ovirt-stable)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; ovirt-engine-websocket-proxy =3D =
3.3.1-2.el6<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Updated By: ovirt-engine-websocket-proxy-3.3.2-1.el6.noarch =
(ovirt-3.3.2)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; ovirt-engine-websocket-proxy =3D =
3.3.2-1.el6<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Available: ovirt-engine-websocket-proxy-3.3.0-3.el6.noarch =
(ovirt-stable)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; ovirt-engine-websocket-proxy =3D =
3.3.0-3.el6<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Available: ovirt-engine-websocket-proxy-3.3.0-4.el6.noarch =
(ovirt-stable)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; ovirt-engine-websocket-proxy =3D =
3.3.0-4.el6<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Available: ovirt-engine-websocket-proxy-3.3.0.1-1.el6.noarch =
(ovirt-stable)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; ovirt-engine-websocket-proxy =3D =
3.3.0.1-1.el6<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; Available: ovirt-engine-websocket-proxy-3.3.1-1.el6.noarch =
(ovirt-stable)<o:p></o:p></p><p =
class=3DMsoNormal> &=
nbsp; ovirt-engine-websocket-proxy =3D =
3.3.1-1.el6<o:p></o:p></p><p class=3DMsoNormal> You could try using =
--skip-broken to work around the problem<o:p></o:p></p><p =
class=3DMsoNormal> You could try running: rpm -Va --nofiles =
–nodigest<o:p></o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p class=3DMsoNormal>Here is the =
output of repolist<o:p></o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p class=3DMsoNormal>]# yum =
repolist<o:p></o:p></p><p class=3DMsoNormal>Loaded plugins: =
fastestmirror, rhnplugin, versionlock<o:p></o:p></p><p =
class=3DMsoNormal>This system is receiving updates from RHN Classic or =
Red Hat Satellite.<o:p></o:p></p><p class=3DMsoNormal>Loading mirror =
speeds from cached hostfile<o:p></o:p></p><p class=3DMsoNormal> * base: =
linux.mirrors.es.net<o:p></o:p></p><p class=3DMsoNormal> * centosplus: =
mirror.unl.edu<o:p></o:p></p><p class=3DMsoNormal> * contrib: =
mirror.steadfast.net<o:p></o:p></p><p class=3DMsoNormal> * epel: =
kdeforge2.unl.edu<o:p></o:p></p><p class=3DMsoNormal> * extras: =
mirror-centos.hostingswift.com<o:p></o:p></p><p class=3DMsoNormal> * =
rpmfusion-free-updates: mirrors.tummy.com<o:p></o:p></p><p =
class=3DMsoNormal>repo =
id  =
; =
repo =
name &nb=
sp; &nbs=
p;  =
; =
&=
nbsp; &n=
bsp; &nb=
sp; status<o:p></o:p></p><p =
class=3DMsoNormal>base &nb=
sp; &nbs=
p;  =
; CentOS-6 - =
Base &nb=
sp; &nbs=
p;  =
; =
&=
nbsp; &n=
bsp; 6,367<o:p></o:p></p><p =
class=3DMsoNormal>centos6-x86_64  =
; =
CentOS 6 =
(x86_64)  =
; =
&=
nbsp; &n=
bsp; &nb=
sp; &nbs=
p; =
0<o:p></o:p></p><p =
class=3DMsoNormal>centos6-x86_64-updates &nb=
sp; =
CentOS 6 Updates =
(x86_64)  =
; =
&=
nbsp; &n=
bsp; &nb=
sp; &nbs=
p; 296<o:p></o:p></p><p =
class=3DMsoNormal>centosplus &nb=
sp; &nbs=
p; CentOS-6 - =
Plus &nb=
sp; &nbs=
p;  =
; =
&=
nbsp; &n=
bsp; =
16<o:p></o:p></p><p =
class=3DMsoNormal>contrib =
&=
nbsp; =
CentOS-6 - =
Contrib =
&=
nbsp; &n=
bsp; &nb=
sp; &nbs=
p;  =
; =
0<o:p></o:p></p><p =
class=3DMsoNormal>epel &nb=
sp; &nbs=
p;  =
; Extra Packages for Enterprise Linux 6 - =
x86_64 &=
nbsp; =
&=
nbsp; &n=
bsp; 10,171<o:p></o:p></p><p =
class=3DMsoNormal>extras &=
nbsp; &n=
bsp; &nb=
sp; CentOS-6 - =
Extras &=
nbsp; &n=
bsp; &nb=
sp; &nbs=
p;  =
; =
=
14<o:p></o:p></p><p =
class=3DMsoNormal>glusterfs-epel  =
; =
GlusterFS is a clustered =
file-system capable of scaling to several =
petabytes. &nb=
sp; =
11<o:p></o:p></p><p =
class=3DMsoNormal>glusterfs-noarch-epel &nbs=
p;  =
; GlusterFS is a clustered file-system capable of scaling to several =
petabytes. &nb=
sp; =
1<o:p></o:p></p><p =
class=3DMsoNormal>ovirt-3.3.2 &n=
bsp; &nb=
sp; oVirt 3.3.2 =
release =
&=
nbsp; &n=
bsp; &nb=
sp; &nbs=
p;  =
; 111<o:p></o:p></p><p =
class=3DMsoNormal>ovirt-stable &=
nbsp; &n=
bsp; Older Stable builds of =
the oVirt =
project =
&=
nbsp; &n=
bsp; &nb=
sp; =
324<o:p></o:p></p><p =
class=3DMsoNormal>rpmfusion-free-updates &nb=
sp; =
RPM Fusion for EL 6 - Free - =
Updates =
&=
nbsp; &n=
bsp; &nb=
sp; &nbs=
p; 273<o:p></o:p></p><p =
class=3DMsoNormal>spacewalk-client &nb=
sp; &nbs=
p; Spacewalk Client =
Tools &n=
bsp; &nb=
sp; &nbs=
p;  =
; =
&=
nbsp; 22<o:p></o:p></p><p class=3DMsoNormal>repolist: =
17,606<o:p></o:p></p><p class=3DMsoNormal><o:p> </o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p></div></body></html>
------=_NextPart_000_0010_01CF0222.59C39FD0--
10 years, 11 months
[Users] Engine as a VM
by Kevin Tibi
Hi all,
i try to deploy engine as a VM. I use hosted-engine script. When my engine
is up the script failed. I saw ssl error. So i disable SSL on my host
(vdsm, libvirt, quemu) and on engine. But i have error when i switch host
to active.
Engine.log :
2013-12-26 14:09:22,641 INFO
[org.ovirt.engine.core.bll.ActivateVdsCommand]
(org.ovirt.thread.pool-6-thread-36) [3dcc628e] Activate finished. Lock
released. Monitoring can run now for host hosted_engine_1 from data-center
Default
2013-12-26 14:09:22,683 INFO
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(org.ovirt.thread.pool-6-thread-36) [3dcc628e] Correlation ID: 3eec943e,
Job ID: f88b35fc-5c68-4653-85f5-268a6177c9ad, Call Stack: null, Custom
Event ID: -1, Message: Host hosted_engine_1 was activated by admin@internal.
2013-12-26 14:09:22,732 INFO
[org.ovirt.engine.core.bll.ActivateVdsCommand]
(org.ovirt.thread.pool-6-thread-36) [3dcc628e] Lock freed to object
EngineLock [exclusiveLocks= key: 8dd64eb3-b935-4cc2-8ce8-776f52dd88f3
value: VDS
, sharedLocks= ]
2013-12-26 14:05:12,322 ERROR
[org.ovirt.engine.core.vdsbroker.vdsbroker.GetCapabilitiesVDSCommand]
(DefaultQuartzScheduler_Worker-90) Command
GetCapabilitiesVDSCommand(HostName = hosted_engine_1, HostId =
8dd64eb3-b935-4cc2-8ce8-776f52dd88f3, vds=Host[hosted_engine_1]) execution
failed. Exception: VDSNetworkException: javax.net.ssl.SSLException:
Unrecognized SSL message, plaintext connection?
Have I forgotten something?
Thx :)
Kevin.
10 years, 11 months