First oVirt community meetup in Boston MA area
by Douglas Landgraf
Join us for an evening of knowledge-sharing, networking, and Q&A
about the oVirt open-source project.
All skill levels are welcome! In this first meetup we will introduce
oVirt, show a live demo, and answer any questions you might have about
the technology and the community.
The meetup will be hosted at the Red Hat office in Westford, drinks and
snacks will be provided. Please RSVP to the event so that we can make
sure everyone will be comfortable.
Looking forward to seeing you there!
http://www.meetup.com/Boston-oVirt-Community/
--
Cheers
Douglas
8 years, 8 months
VM Migration Fails (Network thoughts)
by Christopher Young
So, I'm attempting to understand something fully. My setup might not
be ideal, so please provide me whatever education I may need.
RE: https://access.redhat.com/solutions/202823
Quick background:
I have (3) RHEV-H (ovirt node) Hypervisors with a hosted-engine. VM
Migrations currently are not working and I have the following errors
in the vdsm.log:
---
"[RHEV]Failed to migrate VM between hypervisor with error "gaierror:
[Errno -2] Name or service not known" in vdsm.log"
---
Reading the RedHat article leads me to believe that this is a name
resolution issue (for the FQDNs), but that leads to another question
which I'll get to. First, a little more about the setup:
I have separate IP networks for Management (ovirtmgmt), Storage, and
VM Migration. These are all on unique IP ranges. I'll make up some
for my purposes here:
MGMT_VLAN: 10.25.250.x/24
STORAGE_VLAN: 10.26.3.x/24
MIGRATE_VLAN: 10.26.5.x/24
In anticipation for setting all of this up, I assigned hostnames/IPs
for each role on each node/hypervisor, like so:
vnode01
vnode01-sto (storage)
vnode01-vmm
vnode02
vnode02-sto
vnode02-vmm
etc., etc.
So, I'm trying to understand what my best procedure for setting up a
separate migration network and what IP/hostname settings are necessary
to ensure that this works properly and wouldn't affect other things.
I'm going to do some more reading right now, but at least I feel like
I'm on the right path to getting migrations working.
Please help lol
Thanks as always,
-- Chris
8 years, 8 months
OVirt SDK python ip problem
by rein
--Apple-Mail-89C7D827-97B3-48B9-BD94-15A1C42B97DB
Content-Type: text/plain;
charset=us-ascii
Content-Transfer-Encoding: quoted-printable
Hi All,
I have an issue with the python ovirt sdk.
I made a script that creates a new host, hypervisor, in the ovirt environmen=
t.
The host is created and is put in maintenance state.
So far it works, but then i try to create the networks on the new host and t=
here i got an error.
> =20
> Creating the host:
> =20
> try:
> if api.hosts.add(pHst):
> print("Host was added successfully")
> print("Waiting for host, {}, to reach the 'up' or 'non operati=
onal' status").format(host)
> while api.hosts.get(name =3D host).status.state !=3D 'up' and a=
pi.hosts.get(name =3D host).status.state !=3D 'non_operational':
> sleep(1)
> sleep(5)
> print("Host, {}, is '{}'").format(host)
> =20
> except Exception as e:
> print("Failed to install Host: {}").format(str(e))
> return None
> =20
> Host =3D api.hosts.get(name =3D host)
> =20
> Host.deactivate()
> sleep(5)
> address, netmask =3D getDefaultAddress(api, oc, DC, host)
> if address is not None:
> So far all's well.
> Then the part for the network...
> =20
> rc =3D setBondAndDefVLan(api, oc, DC, cluster, host, address, netm=
ask)
> if rc is not None:
> Host.update()
> Host.activate()
> =20
> ---
> =20
> def setBondParams(api, oc, DC, host):
> nic0 =3D params.HostNIC(name =3D oc.nic1,
> network =3D params.Network(),
> boot_protocol =3D 'none',
> ip =3D params.IP(
> address =3D '',
> netmask =3D '',
> gateway =3D '',
> ),
> )
> nic1 =3D params.HostNIC(name =3D oc.nic2,
> network =3D params.Network(),
> boot_protocol =3D 'none',
> ip =3D params.IP(
> address =3D '',
> netmask =3D '',
> gateway =3D '',
> ),
> )
> =20
> bond =3D params.Bonding(slaves =3D params.Slaves(host_nic =3D [
> nic0,
> nic1,
> ]),
> options =3D params.Options(option =3D [
> params.Option=
(name =3D 'miimon',
> =
value =3D '100'),
> params.Option=
(name =3D 'mode',
> =
value =3D '4'),
> ])
> )
> =20
> team =3D params.HostNIC(name =3D 'bond0',
> boot_protocol =3D 'none',
> ip =3D params.IP(
> address =3D '=
',
> netmask =3D '=
',
> gateway =3D '=
',
> ),
> override_configuration =3D 1,
> bonding =3D bond)
> return team
> =20
> =20
> def setDefVLanParams(api, oc, DC, cluster, host, address, netmask):
> defvlan =3D oc.defaultvlan
> clusterNW =3D api.clusters.get(cluster).networks.get(name =3D defvlan)=
> vlan =3D params.HostNIC(name =3D "bond0.{}".format(c=
lusterNW.vlan.id),
> network =3D params.Network(name =3D=
defvlan),
> boot_protocol =3D 'none',
> ip =3D params.IP(
> address =3D a=
ddress,
> netmask =3D n=
etmask,
> gateway =3D '=
'
> ),
> override_configuration =3D 1,
> )
> return vlan
> =20
> =20
> def setBondAndDefVLan(api, oc, DC, cluster, host, address, netmask):
> try:
> Host =3D api.hosts.get(name =3D host)
> except Exception as e:
> print("Could not find host {}, this is extremly wrong!\n{}").forma=
t(host, str(e))
> return None
> =20
> team =3D setBondParams(api, oc, DC, Host)
> vlan =3D setDefVLan(api, oc, DC, cluster, Host, address, netmask)
> =20
> try:
> Host.nics.setupnetworks(params.Action(force =3D 0,
> check_connectivity =3D 0,
> host_nics =3D params.HostNic=
s(host_nic =3D [
> =
team,=20
> =
vlan,
> =
])
> ),
> )
> except Exception as e:
> print("Could not setup a management interface for host {}.\n--\n{}=
\n--").format(host, str(e))
> return None
> =20
> return host
> =20
> =20
> The setting for oc.nic1 is 'eno1' and oc.nic2 is 'eno2'.
> This part of the script times out on "Host.nics.setupnetworks(...) with:
> =20
> "Host was added successfully"
> "Waiting for host, X, to reach the 'up' or 'non operational' status"
> "Host, X, is 'non_operational'"
> =20
> "Could not setup a management interface for host X."
> "--"
> =20
> "status: 400"
> "reason: Bad Request"
> "detail: Network error during communication with the Host."
> "--"
> =20
> The problem with the communication is that on the new host X all the ip co=
nfiguration is gone.
> The question i have is "Why is the ip configuration gone?"
> What am i donig wrong here?
> ->Rein.
(vanaf BigI)=
--Apple-Mail-89C7D827-97B3-48B9-BD94-15A1C42B97DB
Content-Type: text/html;
charset=utf-8
Content-Transfer-Encoding: quoted-printable
<html><head><meta http-equiv=3D"content-type" content=3D"text/html; charset=3D=
utf-8"></head><body dir=3D"auto"><div><span style=3D"color: rgb(69, 69, 69);=
text-decoration: -webkit-letterpress; background-color: rgba(255, 255, 255,=
0);">Hi All,</span></div><div id=3D"AppleMailSignature"><font color=3D"#454=
545"><span style=3D"text-decoration: -webkit-letterpress;"><br></span></font=
><div style=3D"color: rgb(69, 69, 69); text-decoration: -webkit-letterpress;=
"><span style=3D"background-color: rgba(255, 255, 255, 0);">I have an issue w=
ith the python ovirt sdk.</span></div><div style=3D"color: rgb(69, 69, 69); t=
ext-decoration: -webkit-letterpress;"><span style=3D"background-color: rgba(=
255, 255, 255, 0);">I made a script that creates a new host, hypervisor, in t=
he ovirt environment.</span></div><div style=3D"color: rgb(69, 69, 69); text=
-decoration: -webkit-letterpress;"><span style=3D"background-color: rgba(255=
, 255, 255, 0);">The host is created and is put in maintenance state.</span>=
</div><div style=3D"color: rgb(69, 69, 69); text-decoration: -webkit-letterp=
ress;"><span style=3D"background-color: rgba(255, 255, 255, 0);">So far it w=
orks, but then i try to create the networks on the new host and there i got a=
n error.</span><div><blockquote type=3D"cite"><div class=3D"WordSection1" st=
yle=3D"page: WordSection1;"><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.00=
01pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0=
);">Creating the host:<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"=
margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: r=
gba(255, 255, 255, 0);"> </span></p><p class=3D"MsoNormal" style=3D"mar=
gin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba=
(255, 255, 255, 0);"> try:<o:p></o:p></span></p><p class=3D=
"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D=
"background-color: rgba(255, 255, 255, 0);"> &n=
bsp; if api.hosts.add(pHst):<o:p></o:p></span></p><p class=3D"MsoNorma=
l" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgro=
und-color: rgba(255, 255, 255, 0);"> &nbs=
p; print("Host was added successfully")<o:p></o:p></=
span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span la=
ng=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">  =
; print("Waiting for h=
ost, {}, to reach the 'up' or 'non operational' status").format(host)<o:p></=
o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><s=
pan lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
; while api.host=
s.get(name =3D host).status.state !=3D 'up' and api.hosts.get(name =3D host)=
.status.state !=3D 'non_operational':<o:p></o:p></span></p><p class=3D"MsoNo=
rmal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"back=
ground-color: rgba(255, 255, 255, 0);"> &=
nbsp; sleep(1)<o:p></o:p></s=
pan></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lan=
g=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
sleep(5)<o:p></o:p></=
span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span la=
ng=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">  =
; print("Host, {}, is '=
{}'").format(host)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"marg=
in: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(=
255, 255, 255, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin:=
0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255=
, 255, 255, 0);"> except Exception as e:<o:p></o:p></span>=
</p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D=
"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; print("Failed to install Host: {}").format(str(e)=
)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.000=
1pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0)=
;"> return None<o:p></o:p></span><=
/p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"=
EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> </span></p>=
<p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-=
US" style=3D"background-color: rgba(255, 255, 255, 0);"> H=
ost =3D api.hosts.get(name =3D host)<o:p></o:p></span></p><p class=3D"MsoNor=
mal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backg=
round-color: rgba(255, 255, 255, 0);"> </span></p><p class=3D"MsoNormal=
" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgrou=
nd-color: rgba(255, 255, 255, 0);"> Host.deactivate()<o:p>=
</o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;">=
<span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">&nb=
sp; sleep(5)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D=
"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: r=
gba(255, 255, 255, 0);"> address, netmask =3D getDefaultAd=
dress(api, oc, DC, host)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D=
"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: r=
gba(255, 255, 255, 0);"> if address is not None:</span></p=
></div></blockquote><span style=3D"background-color: rgba(255, 255, 255, 0);=
"><br></span><blockquote type=3D"cite"><div class=3D"WordSection1" style=3D"=
page: WordSection1;"><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001p=
t;"><span style=3D"background-color: rgba(255, 255, 255, 0);">So far all's w=
ell.</span></p></div></blockquote><blockquote type=3D"cite"><div class=3D"Wo=
rdSection1" style=3D"page: WordSection1;"><p class=3D"MsoNormal" style=3D"ma=
rgin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgb=
a(255, 255, 255, 0);">Then the part for the network...<o:p></o:p></span></p>=
<p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-=
US" style=3D"background-color: rgba(255, 255, 255, 0);"> </span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> &=
nbsp; rc =3D setBondAndDefVLan(api, oc, DC, cluster, host, addre=
ss, netmask)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0c=
m 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> if rc is not None:<=
o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001p=
t;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"=
> Host.upd=
ate()<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);"> Ho=
st.activate()<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0=
cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0=
cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255,=
255, 0);">---<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0=
cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0=
cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255,=
255, 0);">def setBondParams(api, oc, DC, host):<o:p></o:p></span></p><p cla=
ss=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" st=
yle=3D"background-color: rgba(255, 255, 255, 0);"> nic0 =3D=
params.HostNIC(name =3D=
oc.nic1,<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0=
cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255,=
255, 0);"> &nbs=
p; &n=
bsp; network =3D params.Network(),<=
o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001p=
t;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"=
> &nb=
sp; b=
oot_protocol =3D 'none',<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D=
"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: r=
gba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; ip &nb=
sp; =3D params.IP(<o:p></o:p></span></p><p class=3D"MsoNormal" s=
tyle=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-=
color: rgba(255, 255, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; address =3D '',<o:p></o:p></span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> &=
nbsp;  =
; &n=
bsp; =
netmask =3D '',<o:p></=
o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><s=
pan lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
; &nb=
sp; &=
nbsp;  =
; ga=
teway =3D '',<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0=
cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; ),<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0=
cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> &n=
bsp; =
)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0c=
m 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 2=
55, 0);"> nic1 =3D params.HostNIC(name &n=
bsp; =3D oc.nic2,<o:p></o:p></span></p><p clas=
s=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" sty=
le=3D"background-color: rgba(255, 255, 255, 0);"> &nb=
sp; &=
nbsp; network &nb=
sp; =3D params.Network(),<o:p></o:p></span></p><p class=3D"MsoNo=
rmal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"back=
ground-color: rgba(255, 255, 255, 0);"> &=
nbsp;  =
; boot_protocol =3D 'none',<o:p></o:p></=
span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span la=
ng=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">  =
; &nb=
sp; ip &nbs=
p; =3D params.IP(<o:p>=
</o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;">=
<span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">&nb=
sp; &=
nbsp;  =
; &nb=
sp; a=
ddress =3D '',<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0=
cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; netmask =3D '',<o:p></o:p></span></p><p class=3D"MsoNormal"=
style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgroun=
d-color: rgba(255, 255, 255, 0);"> =
&nbs=
p; &n=
bsp; =
gateway =3D '',<o:p></o:p></span></p><p=
class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US=
" style=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; =
&nbs=
p; ),<o:p></o:p></span></p><=
p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-U=
S" style=3D"background-color: rgba(255, 255, 255, 0);"> &nb=
sp; &=
nbsp; )<o:p></o:p></span></p><p cl=
ass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> <=
o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001p=
t;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"=
> bond =3D params.Bonding(slaves =3D params.Sla=
ves(host_nic =3D [<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"marg=
in: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(=
255, 255, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; =
nic0,<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0c=
m 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; =
nic1,<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);"> &nb=
sp; &=
nbsp;  =
; &nb=
sp; ]),<o:p></o:=
p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><spa=
n lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> &=
nbsp;  =
; options =3D=
params.Options(option =3D [<o:p></o:p></span></p><p class=3D"MsoNormal" sty=
le=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-co=
lor: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; =
&nbs=
p; &n=
bsp; params.Option(name =3D 'miimon',<o:p></o:p></span></p><p cl=
ass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> &=
nbsp;  =
; &nb=
sp; &=
nbsp;  =
; &n=
bsp; value =3D '100'),<o:p></o:p></span><=
/p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"=
EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">  =
; &nb=
sp; &=
nbsp; &nbs=
p; &n=
bsp; params.Option(name =3D 'mode',=
<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001=
pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);=
"> &n=
bsp; =
&nbs=
p; &n=
bsp; =
value =3D=
'4'),<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);"> &nb=
sp; &=
nbsp;  =
; &nb=
sp; ])<o:p></o:p></spa=
n></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D=
"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; )<o:p></o:p></span></p>=
<p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-=
US" style=3D"background-color: rgba(255, 255, 255, 0);"> </span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> team =3D=
params.HostNIC(name &n=
bsp; =3D 'bond0',<o:p></o:p>=
</span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span l=
ang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; boot_protoc=
ol =3D 'none',<o:p></o=
:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><sp=
an lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
&nbs=
p; ip =
; &nb=
sp; =3D params.IP(<o:p></o:p></span></p>=
<p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-=
US" style=3D"background-color: rgba(255, 255, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; =
address =3D '',<o:p></o:p></span></p><p=
class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US=
" style=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp;  =
; &nb=
sp; &=
nbsp; netmask =3D '',<o:p></o:p></span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> &=
nbsp;  =
; &nb=
sp; &=
nbsp;  =
; gateway =3D '',<o:p></o:p></span></p><p clas=
s=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" sty=
le=3D"background-color: rgba(255, 255, 255, 0);"> &nb=
sp; &=
nbsp;  =
; &nb=
sp; &=
nbsp; ),<o:p></o:p></span></p><p class=3D"MsoNormal" style=
=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-colo=
r: rgba(255, 255, 255, 0);"> =
&nbs=
p; override_configuration =3D 1,<o:p></o:p></span></=
p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"E=
N-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
&nb=
sp; bonding =
&nbs=
p; =3D bond)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0c=
m 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> return team<o:p></o:p></span></p><p class=3D=
"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D=
"background-color: rgba(255, 255, 255, 0);"> </span></p><p class=3D"Mso=
Normal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"ba=
ckground-color: rgba(255, 255, 255, 0);"> </span></p><p class=3D"MsoNor=
mal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backg=
round-color: rgba(255, 255, 255, 0);">def setDefVLanParams(api, oc, DC, clus=
ter, host, address, netmask):<o:p></o:p></span></p><p class=3D"MsoNormal" st=
yle=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-c=
olor: rgba(255, 255, 255, 0);"> defvlan =3D oc.defaultvlan=
<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001=
pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);=
"> clusterNW =3D api.clusters.get(cluster).networks.get(na=
me =3D defvlan)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin:=
0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255=
, 255, 255, 0);"> vlan =3D params.HostNIC(name =
&nbs=
p; =3D "bond0.{}".format(clusterNW.vlan.id),<o:p></o:p></s=
pan></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lan=
g=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
&nbs=
p; network =
&nbs=
p; =3D params.Network(name =3D defvlan),<o:p></o:p></span></p><p class=
=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" styl=
e=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; boot_protocol &nbs=
p; =3D 'none',<o:p></o:p></span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> &=
nbsp;  =
; ip =
&nbs=
p; =3D params.IP(<o:p></o:p></span></p><p class=3D"MsoNorm=
al" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgr=
ound-color: rgba(255, 255, 255, 0);"> &nb=
sp; &=
nbsp;  =
; &nb=
sp; &=
nbsp; address =3D address,<o:p></o:p></span></p><p class=3D"MsoN=
ormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"bac=
kground-color: rgba(255, 255, 255, 0);"> =
&nbs=
p; &n=
bsp; =
&nbs=
p; netmask =3D netmask,<o:p></o:p></span></p><p class=3D"M=
soNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"=
background-color: rgba(255, 255, 255, 0);"> &nb=
sp; &=
nbsp; &nbs=
p; &n=
bsp; =
gateway =3D ''<o:p></o:p></span></p><p class=3D"MsoN=
ormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"bac=
kground-color: rgba(255, 255, 255, 0);"> =
&nbs=
p; &n=
bsp; =
&nbs=
p; ),<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margi=
n: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(2=
55, 255, 255, 0);"> &nb=
sp; &=
nbsp; override_configuration =3D 1,<o:p></o:p></span></p><p clas=
s=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" sty=
le=3D"background-color: rgba(255, 255, 255, 0);"> &nb=
sp; &=
nbsp; )<o:p></o:p></span></p><p class=3D=
"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D=
"background-color: rgba(255, 255, 255, 0);"> return vlan<o=
:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt=
;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">=
</span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;">=
<span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">&nb=
sp;</span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><sp=
an lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">def se=
tBondAndDefVLan(api, oc, DC, cluster, host, address, netmask):<o:p></o:p></s=
pan></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lan=
g=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> =
try:<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm=
0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 25=
5, 255, 0);"> Host =3D api.hosts.g=
et(name =3D host)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margi=
n: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(2=
55, 255, 255, 0);"> except Exception as e:<o:p></o:p></spa=
n></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D=
"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; print("Could not find host {}, this is extremly w=
rong!\n{}").format(host, str(e))<o:p></o:p></span></p><p class=3D"MsoNormal"=
style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgroun=
d-color: rgba(255, 255, 255, 0);"> =
return None<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0c=
m 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0=
cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255,=
255, 0);"> team =3D setBondParams(api, oc, DC, Host)<o:p>=
</o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;">=
<span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">&nb=
sp; vlan =3D setDefVLan(api, oc, DC, cluster, Host, address, net=
mask)<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.00=
01pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0=
);"> try:<o:p></o:p></span></p><p class=3D"MsoNormal" styl=
e=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-col=
or: rgba(255, 255, 255, 0);"> Host=
.nics.setupnetworks(params.Action(force =3D 0,<o:p></o:p></span></p><p class=
=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" styl=
e=3D"background-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; =
&nbs=
p; check_connectivity =3D 0,<o:p></o:p></span></p><p class=3D"Ms=
oNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"b=
ackground-color: rgba(255, 255, 255, 0);"> &nbs=
p; &n=
bsp; =
&nbs=
p; host_nics =3D params.HostNics(host_nic =3D [<o:p></o:p></span></p><=
p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span style=3D"bac=
kground-color: rgba(255, 255, 255, 0);"><span lang=3D"EN-US"> &nb=
sp; &=
nbsp;  =
; &nb=
sp; &=
nbsp;  =
; &nb=
sp; </span>team, <o:p></o:p></=
span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span st=
yle=3D"background-color: rgba(255, 255, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; =
&nbs=
p; &n=
bsp; vlan,<o:p></o:p></span></p><p class=3D"Mso=
Normal" style=3D"margin: 0cm 0cm 0.0001pt;"><span style=3D"background-color:=
rgba(255, 255, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; =
&nbs=
p; &n=
bsp;])<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span style=3D"background-color: rgba(255, 255, 255, 0);"> &n=
bsp; =
&nbs=
p; &n=
bsp; ),<o:p></o:p></span></p><p class=3D"MsoNormal" s=
tyle=3D"margin: 0cm 0cm 0.0001pt;"><span style=3D"background-color: rgba(255=
, 255, 255, 0);">  =
; &nb=
sp; )<o:p></o:p></span></p><p clas=
s=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" sty=
le=3D"background-color: rgba(255, 255, 255, 0);"> except E=
xception as e:<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0=
cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 2=
55, 255, 0);"> print("Could not se=
tup a management interface for host {}.\n--\n{}\n--").format(host, str(e))<o=
:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt=
;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">=
return None<o:p></o:p></span></p>=
<p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-=
US" style=3D"background-color: rgba(255, 255, 255, 0);"> </span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);"> return=
host<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.00=
01pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0=
);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001p=
t;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);"=
>The setting for oc.nic1 is 'eno1' and oc.nic2 is 'eno2'.<o:p></o:p></span><=
/p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"=
EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">This part of the s=
cript times out on "Host.nics.setupnetworks(...) with:<o:p></o:p></span></p>=
<p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-=
US" style=3D"background-color: rgba(255, 255, 255, 0);"> </span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);">"Host was added successfu=
lly"<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.=
0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255,=
0);">"Waiting for host, X, to reach the 'up' or 'non operational' status"<o=
:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt=
;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255, 0);">=
"Host, X, is 'non_operational'"<o:p></o:p></span></p><p class=3D"MsoNormal" s=
tyle=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-=
color: rgba(255, 255, 255, 0);"> </span></p><p class=3D"MsoNormal" styl=
e=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-col=
or: rgba(255, 255, 255, 0);">"Could not setup a management interface for hos=
t X."<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 255=
, 0);">"--"<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"margin: 0cm=
0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 25=
5, 255, 0);"> </span></p><p class=3D"MsoNormal" style=3D"margin: 0cm 0c=
m 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: rgba(255, 255, 2=
55, 0);">"status: 400"<o:p></o:p></span></p><p class=3D"MsoNormal" style=3D"=
margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-color: r=
gba(255, 255, 255, 0);">"reason: Bad Request"<o:p></o:p></span></p><p class=3D=
"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D=
"background-color: rgba(255, 255, 255, 0);">"detail: Network error during co=
mmunication with the Host."<o:p></o:p></span></p><p class=3D"MsoNormal" styl=
e=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-col=
or: rgba(255, 255, 255, 0);">"--"<o:p></o:p></span></p><p class=3D"MsoNormal=
" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgrou=
nd-color: rgba(255, 255, 255, 0);"> </span></p><p class=3D"MsoNormal" s=
tyle=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"background-=
color: rgba(255, 255, 255, 0);">The problem with the communication is that o=
n the new host X all the ip configuration is gone.<o:p></o:p></span></p><p c=
lass=3D"MsoNormal" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" s=
tyle=3D"background-color: rgba(255, 255, 255, 0);">The question i have is "W=
hy is the ip configuration gone?"<o:p></o:p></span></p><p class=3D"MsoNormal=
" style=3D"margin: 0cm 0cm 0.0001pt;"><span lang=3D"EN-US" style=3D"backgrou=
nd-color: rgba(255, 255, 255, 0);">What am i donig wrong here?</span></p></d=
iv></blockquote><br><blockquote type=3D"cite"><div class=3D"WordSection1" st=
yle=3D"page: WordSection1;"><p class=3D"MsoNormal" style=3D"margin: 0cm 0cm 0=
.0001pt;"><span style=3D"background-color: rgba(255, 255, 255, 0); color: rg=
b(69, 69, 69);">->Rein.</span></p></div></blockquote></div></div><div>(va=
naf BigI)</div></div></body></html>=
--Apple-Mail-89C7D827-97B3-48B9-BD94-15A1C42B97DB--
8 years, 8 months
Move from Gluster to NFS
by Christophe TREFOIS
--_000_19A0FCF41BAC442B957AC90184E134B5unilu_
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
RGVhciBhbGwsDQoNCkkgY3VycmVudGx5IGhhdmUgYSBzZWxmLWhvc3RlZCBzZXR1cCB3aXRoIGds
dXN0ZXIgb24gMSBub2RlLg0KSSBkbyBoYXZlIG90aGVyIGRhdGEgY2VudGVycyB3aXRoIDMgb3Ro
ZXIgaG9zdHMgYW5kIGxvY2FsIChzaGFyYWJsZSkgTkZTIHN0b3JhZ2UuIEZ1cnRoZXJtb3JlLCBJ
IGhhdmUgMSBORlMgZXhwb3J0IGRvbWFpbi4NCg0KV2Ugd291bGQgbGlrZSB0byBtb3ZlIGZyb20g
R2x1c3RlciB0byBORlMgb25seSBvbiB0aGUgZmlyc3QgaG9zdC4NCg0KRG9lcyBhbnlib2R5IGhh
dmUgYW55IGV4cGVyaWVuY2Ugd2l0aCB0aGlzPw0KDQpUaGFuayB5b3UsDQoNCuKAlA0KQ2hyaXN0
b3BoZQ0KDQoNCg==
--_000_19A0FCF41BAC442B957AC90184E134B5unilu_
Content-Type: text/html; charset="utf-8"
Content-ID: <C61C04E2776EAC4A97C34ABD5D88E1D0(a)uni.lux>
Content-Transfer-Encoding: base64
PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIgY29udGVudD0i
dGV4dC9odG1sOyBjaGFyc2V0PXV0Zi04Ij4NCjwvaGVhZD4NCjxib2R5IHN0eWxlPSJ3b3JkLXdy
YXA6IGJyZWFrLXdvcmQ7IC13ZWJraXQtbmJzcC1tb2RlOiBzcGFjZTsgLXdlYmtpdC1saW5lLWJy
ZWFrOiBhZnRlci13aGl0ZS1zcGFjZTsiIGNsYXNzPSIiPg0KRGVhciBhbGwsDQo8ZGl2IGNsYXNz
PSIiPjxiciBjbGFzcz0iIj4NCjwvZGl2Pg0KPGRpdiBjbGFzcz0iIj5JIGN1cnJlbnRseSBoYXZl
IGEgc2VsZi1ob3N0ZWQgc2V0dXAgd2l0aCBnbHVzdGVyIG9uIDEgbm9kZS48L2Rpdj4NCjxkaXYg
Y2xhc3M9IiI+SSBkbyBoYXZlIG90aGVyIGRhdGEgY2VudGVycyB3aXRoIDMgb3RoZXIgaG9zdHMg
YW5kIGxvY2FsIChzaGFyYWJsZSkgTkZTIHN0b3JhZ2UuIEZ1cnRoZXJtb3JlLCBJIGhhdmUgMSBO
RlMgZXhwb3J0IGRvbWFpbi48L2Rpdj4NCjxkaXYgY2xhc3M9IiI+PGJyIGNsYXNzPSIiPg0KPC9k
aXY+DQo8ZGl2IGNsYXNzPSIiPldlIHdvdWxkIGxpa2UgdG8gbW92ZSBmcm9tIEdsdXN0ZXIgdG8g
TkZTIG9ubHkgb24gdGhlIGZpcnN0IGhvc3QuPC9kaXY+DQo8ZGl2IGNsYXNzPSIiPjxiciBjbGFz
cz0iIj4NCjwvZGl2Pg0KPGRpdiBjbGFzcz0iIj5Eb2VzIGFueWJvZHkgaGF2ZSBhbnkgZXhwZXJp
ZW5jZSB3aXRoIHRoaXM/PC9kaXY+DQo8ZGl2IGNsYXNzPSIiPjxiciBjbGFzcz0iIj4NCjwvZGl2
Pg0KPGRpdiBjbGFzcz0iIj5UaGFuayB5b3UsPC9kaXY+DQo8ZGl2IGNsYXNzPSIiPjxiciBjbGFz
cz0iIj4NCjwvZGl2Pg0KPGRpdiBjbGFzcz0iIj7igJQ8L2Rpdj4NCjxkaXYgY2xhc3M9IiI+Q2hy
aXN0b3BoZTwvZGl2Pg0KPGRpdiBjbGFzcz0iIj4NCjxkaXYgY2xhc3M9IiI+DQo8ZGl2IHN0eWxl
PSJjb2xvcjogcmdiKDAsIDAsIDApOyBsZXR0ZXItc3BhY2luZzogbm9ybWFsOyBvcnBoYW5zOiBh
dXRvOyB0ZXh0LWFsaWduOiBzdGFydDsgdGV4dC1pbmRlbnQ6IDBweDsgdGV4dC10cmFuc2Zvcm06
IG5vbmU7IHdoaXRlLXNwYWNlOiBub3JtYWw7IHdpZG93czogYXV0bzsgd29yZC1zcGFjaW5nOiAw
cHg7IC13ZWJraXQtdGV4dC1zdHJva2Utd2lkdGg6IDBweDsgd29yZC13cmFwOiBicmVhay13b3Jk
OyAtd2Via2l0LW5ic3AtbW9kZTogc3BhY2U7IC13ZWJraXQtbGluZS1icmVhazogYWZ0ZXItd2hp
dGUtc3BhY2U7IiBjbGFzcz0iIj4NCiZuYnNwOzxzcGFuIGNsYXNzPSJBcHBsZS1jb252ZXJ0ZWQt
c3BhY2UiPiZuYnNwOzwvc3Bhbj48L2Rpdj4NCjwvZGl2Pg0KPGJyIGNsYXNzPSIiPg0KPC9kaXY+
DQo8L2JvZHk+DQo8L2h0bWw+DQo=
--_000_19A0FCF41BAC442B957AC90184E134B5unilu_--
8 years, 8 months
[ovirt-cli] query snapshot in preview of a vm
by Jiri Belka
I can't figure out how to do nice ovirt-shell command to query current
snapshot in preview of a vm (to commit it later).
This works:
~~~
list snapshots --parent-vm-name jb-w2k8r2 --kwargs "description=Active VM before the preview" --show-all | egrep "^(id|description|type)"
id : 08535a3e-dc9e-42c0-b611-6fea4a0318c9
description : Active VM before the preview
type : preview
~~~
But why the following does not work?
~~~
list snapshots --parent-vm-name jb-w2k8r2 --kwargs "type=preview"
~~~
It returns nothing.
j.
8 years, 8 months
Importing VMs into Cinder backend
by Bond, Darryl
Is there a recommended way to import a VM from Vmware into oVirt with Cinder back end?
I have successfully created an image in the oVirt Import domain using virt-v2v. The image can be imported into NFS storage and works fine.
I can create new VMs with disks in the Cinder storage.
There does not seem to be any way of either:
a) Import directly into the cinder storage (regardless if the import has raw or qcow disks
b) Move a disk from NFS storage into cinder
Darryl
?
________________________________
The contents of this electronic message and any attachments are intended only for the addressee and may contain legally privileged, personal, sensitive or confidential information. If you are not the intended addressee, and have received this email, any transmission, distribution, downloading, printing or photocopying of the contents of this message or attachments is strictly prohibited. Any legal privilege or confidentiality attached to this message and attachments is not waived, lost or destroyed by reason of delivery to any person other than intended addressee. If you have received this message and are not the intended addressee you should notify the sender by return email and destroy all copies of the message and any attachments. Unless expressly attributed, the views expressed in this email do not necessarily represent the views of the company.
8 years, 8 months
Update Self-Hosted-Engine - Right Way?
by Taste-Of-IT
Hello,
i want to Update my oVirt as Self-Hosted-Engine on CentOS 7. The way i
whould do is as follow and i want to know if this is the right
recommended way.
1. shutdown all virtual machines (can i do this from GUI, or should it
better be done inside the VMs?)
2. yum update "ovirt-engine-setup*"
3. yum update
4. engine-setup
5. follow questions and hope all is updated correct...
Is that all or should i do some other stepps before or between this?
thx
Taste
8 years, 8 months
UCS Integration (vmfex/SRIOV)
by David LeVene
--_004_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_
Content-Type: multipart/alternative;
boundary="_000_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_"
--_000_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Hey All,
I've got a test instance and would like to get vmfex working. I'm very new =
to ovirt, so some of the basics are still new to me.
I currently have a 3 node setup which are all configured without vmfex, wha=
t I'd like to do is convert the hosts one by one to use vmfex.
>From the UCS side of things it works and I'm presented with the SRIOV devic=
es in the host.. but I can't get the network config in the ovirt admin setu=
p..
I'm following this guide, but not getting very far... http://www.ovirt.org=
/Features/UCS_Integration
This step says to do this, which is fine.. but when I do this I overwrite t=
he current attribute in there.
engine-config -s CustomDeviceProperties=3D'{type=3Dinterface;prop=3D{vmfex=
=3D^[a-zA-Z0-9_.-]{2,32}$}}'
which is...
# engine-config -g CustomDeviceProperties
CustomDeviceProperties: version: 3.0
CustomDeviceProperties: version: 3.1
CustomDeviceProperties: version: 3.2
CustomDeviceProperties: version: 3.3
CustomDeviceProperties: {type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[=
0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[=
0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}} version: 3.4
CustomDeviceProperties: {type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[=
0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[=
0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}} version: 3.5
CustomDeviceProperties: {type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[=
0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[=
0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}} version: 3.6
When I update it using the command above, it replaces it...
When I append the 2 together, I get see vmfex & prop in the ovirt-engine (s=
creen shot) side of things.. so can someone please check my command to ensu=
re I'm not missing something!
engine-config -s CustomDeviceProperties=3D'{type=3Dinterface;prop=3D{vmfex=
=3D^[a-zA-Z0-9_.-]{2,32}$}}{type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(=
?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(=
?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}}'
# engine-config -g CustomDeviceProperties
CustomDeviceProperties: version: 3.0
CustomDeviceProperties: version: 3.1
CustomDeviceProperties: version: 3.2
CustomDeviceProperties: version: 3.3
CustomDeviceProperties: {type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[=
0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[=
0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}} version: 3.4
CustomDeviceProperties: {type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[=
0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[=
0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}} version: 3.5
CustomDeviceProperties: {type=3Dinterface;prop=3D{vmfex=3D^[a-zA-Z0-9_.-]{2=
,32}$}}{type=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:=
[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3=
}[0-9a-fA-F]{12}|)$}} version: 3.6
[cid:image001.png@01D16989.E4952270]
As soon as I enable vmfex on a host that was previously working.. it stops =
working and the network no longer works on the host... (this is not using =
any of the config above.. just enabled the vmfex in the UCS manager)
What is the "correct" way to bring a Host in ovirt using vmfex?
Regards
David
This email and any attachments may contain confidential and proprietary inf=
ormation of Blackboard that is for the sole use of the intended recipient. =
If you are not the intended recipient, disclosure, copying, re-distribution=
or other use of any of this information is strictly prohibited. Please imm=
ediately notify the sender and delete this transmission if you received thi=
s email in error.
--_000_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_
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-micr=
osoft-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=3D"Content-Type" content=3D"text/html; charset=3Dus-ascii"=
>
<meta name=3D"Generator" content=3D"Microsoft Word 15 (filtered medium)">
<!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]--><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;
mso-fareast-language:EN-US;}
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;}
pre
{mso-style-priority:99;
mso-style-link:"HTML Preformatted Char";
margin:0in;
margin-bottom:.0001pt;
font-size:10.0pt;
font-family:"Courier New";}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri",sans-serif;
color:windowtext;}
span.HTMLPreformattedChar
{mso-style-name:"HTML Preformatted Char";
mso-style-priority:99;
mso-style-link:"HTML Preformatted";
font-family:"Courier New";
mso-fareast-language:EN-AU;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri",sans-serif;
mso-fareast-language:EN-US;}
@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=3D"EN-AU" link=3D"#0563C1" vlink=3D"#954F72">
<div class=3D"WordSection1">
<p class=3D"MsoNormal">Hey All,<o:p></o:p></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
<p class=3D"MsoNormal">I’ve got a test instance and would like to get=
vmfex working. I’m very new to ovirt, so some of the basics are stil=
l new to me.<o:p></o:p></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
<p class=3D"MsoNormal">I currently have a 3 node setup which are all config=
ured without vmfex, what I’d like to do is convert the hosts one by o=
ne to use vmfex.<o:p></o:p></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
<p class=3D"MsoNormal">From the UCS side of things it works and I’m p=
resented with the SRIOV devices in the host.. but I can’t get the net=
work config in the ovirt admin setup..<o:p></o:p></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
<p class=3D"MsoNormal">I’m following this guide, but not getting very=
far… <a href=3D"http://www.ovirt.org/Features/UCS_Integration"=
>
http://www.ovirt.org/Features/UCS_Integration</a><o:p></o:p></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
<p class=3D"MsoNormal">This step says to do this, which is fine.. but when =
I do this I overwrite the current attribute in there.<o:p></o:p></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">engine-config -s CustomDevicePr=
operties=3D'{type=3Dinterface;prop=3D{vmfex=3D^[a-zA-Z0-9_.-]{2,32}$}}'<o:p=
></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">which is…<o:p></o:p></spa=
n></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"># engine-config -g CustomDevice=
Properties<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.0<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.1<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.2<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.3<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: {type=
=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{=
4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]=
{12}|)$}}
version: 3.4<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: {type=
=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{=
4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]=
{12}|)$}}
version: 3.5<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: {type=
=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{=
4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]=
{12}|)$}}
version: 3.6<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">When I update it using the comm=
and above, it replaces it…<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">When I append the 2 together, I=
get see vmfex & prop in the ovirt-engine (screen shot) side of things.=
. so can someone please check my command to ensure
I’m not missing something!<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">engine-config -s CustomDevicePr=
operties=3D'{type=3Dinterface;prop=3D{vmfex=3D^[a-zA-Z0-9_.-]{2,32}$}}{type=
=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{=
4}-){3}[0-9a-fA-F]{12},
*)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}}’<o:p></=
o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"># engine-config -g CustomDevice=
Properties<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.0<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.1<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.2<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: v=
ersion: 3.3<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: {type=
=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{=
4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]=
{12}|)$}}
version: 3.4<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: {type=
=3Dinterface;prop=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{=
4}-){3}[0-9a-fA-F]{12}, *)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]=
{12}|)$}}
version: 3.5<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">CustomDeviceProperties: {type=
=3Dinterface;prop=3D{vmfex=3D^[a-zA-Z0-9_.-]{2,32}$}}{type=3Dinterface;prop=
=3D{SecurityGroups=3D^(?:(?:[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F=
]{12},
*)*[0-9a-fA-F]{8}-(?:[0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}|)$}} version: 3.6<=
o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"mso-fareast-language:EN-AU"><img bord=
er=3D"0" width=3D"192" height=3D"141" id=3D"Picture_x0020_1" src=3D"cid:ima=
ge001.png(a)01D16989.E4952270"></span><span style=3D"font-size:10.0pt;font-fa=
mily:"Courier New";mso-fareast-language:EN-AU"><o:p></o:p></span>=
</p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">As soon as I enable vmfex on a =
host that was previously working.. it stops working and the network no long=
er works on the host… (this is not using any
of the config above.. just enabled the vmfex in the UCS manager)<o:p></o:p=
></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">What is the “correct̶=
1; way to bring a Host in ovirt using vmfex?<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">Regards<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU">David<o:p></o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><span style=3D"font-size:10.0pt;font-family:"Co=
urier New";mso-fareast-language:EN-AU"><o:p> </o:p></span></p>
<p class=3D"MsoNormal"><o:p> </o:p></p>
</div>
This email and any attachments may contain confidential and proprietary inf=
ormation of Blackboard that is for the sole use of the intended recipient. =
If you are not the intended recipient, disclosure, copying, re-distribution=
or other use of any of this information
is strictly prohibited. Please immediately notify the sender and delete th=
is transmission if you received this email in error.
</body>
</html>
--_000_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_--
--_004_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_
Content-Type: image/png; name="image001.png"
Content-Description: image001.png
Content-Disposition: inline; filename="image001.png"; size=7048;
creation-date="Wed, 17 Feb 2016 03:41:20 GMT";
modification-date="Wed, 17 Feb 2016 03:41:20 GMT"
Content-ID: <image001.png(a)01D16989.E4952270>
Content-Transfer-Encoding: base64
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
--_004_BLUPR0301MB197120A1B85970347B45F699E9AE0BLUPR0301MB1971_--
8 years, 8 months
Guest not reporting
by @LiNixG33k
This is a multi-part message in MIME format. Your mail reader does not
understand MIME message format.
--=_0d6S1X+mD3zIOS8Gu4GXjyXACHHeb85NK0BV3MvCRz2sjPeA
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
=EF=BB=BFHello all,=0D=0A=0D=0A=C2=A0 =C2=A0 =C2=A0Nice to be on the mail=
ing list here.=0D=0A=0D=0AI'm having an issue getting my ovirt vm's to re=
port back the guest info. I'm sure that it's user error however I could u=
se a helping hand pointing me in the right direction. I've tried to check=
VirtIO serial console. I've learned through twitter that this is not wha=
t I need in order for the guest agent to report. I just need to install t=
he agent on the vm and configure it. I've done this as well but I'm still=
failing to see a guest report :(.=0D=0A=0D=0A=0D=0A=0D=0AThanks!=0D=0A=0D=
=0A=0D=0A=0D=0A-LiNixG33k=0D=0A=0D=0A
--=_0d6S1X+mD3zIOS8Gu4GXjyXACHHeb85NK0BV3MvCRz2sjPeA
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://ww=
w.w3.org/TR/html4/loose.dtd"><html>=0A<head>=0A <meta name=3D"Generator"=
content=3D"Zarafa WebApp v7.1.14-51822">=0A <meta http-equiv=3D"Content=
-Type" content=3D"text/html; charset=3Dutf-8">=0A <title>Guest not repor=
ting</title>=0A</head>=0A<body>=0A<p style=3D"padding: 0; margin: 0;" dat=
a-mce-style=3D"padding: 0; margin: 0;"><span id=3D"_mce_caret" data-mce-b=
ogus=3D"true"><span style=3D"font-size: 10pt; font-family: tahoma, arial,=
helvetica, sans-serif;" data-mce-style=3D"font-size: 10pt; font-family: =
tahoma, arial, helvetica, sans-serif;">=EF=BB=BFHello all,<br></span></sp=
an></p><p style=3D"padding: 0; margin: 0;" data-mce-style=3D"padding: 0; =
margin: 0;"><span style=3D"font-size: 10pt; font-family: tahoma, arial, h=
elvetica, sans-serif;" data-mce-style=3D"font-size: 10pt; font-family: ta=
homa, arial, helvetica, sans-serif;"> Nice to be on th=
e mailing list here.</span></p><p style=3D"padding: 0; margin: 0;" data-m=
ce-style=3D"padding: 0; margin: 0;"><span style=3D"font-size: 10pt; font-=
family: tahoma, arial, helvetica, sans-serif;" data-mce-style=3D"font-siz=
e: 10pt; font-family: tahoma, arial, helvetica, sans-serif;">I'm having a=
n issue getting my ovirt vm's to report back the guest info. I'm sure tha=
t it's user error however I could use a helping hand pointing me in the r=
ight direction. I've tried to check VirtIO serial console. I've learned t=
hrough twitter that this is not what I need in order for the guest agent =
to report. I just need to install the agent on the vm and configure it. I=
've done this as well but I'm still failing to see a guest report :(.</sp=
an></p><p style=3D"padding: 0; margin: 0;" data-mce-style=3D"padding: 0; =
margin: 0;"><span style=3D"font-size: 10pt; font-family: tahoma, arial, h=
elvetica, sans-serif;" data-mce-style=3D"font-size: 10pt; font-family: ta=
homa, arial, helvetica, sans-serif;"><br data-mce-bogus=3D"1"></span></p>=
<p style=3D"padding: 0; margin: 0;" data-mce-style=3D"padding: 0; margin:=
0;"><span style=3D"font-size: 10pt; font-family: tahoma, arial, helvetic=
a, sans-serif;" data-mce-style=3D"font-size: 10pt; font-family: tahoma, a=
rial, helvetica, sans-serif;">Thanks!</span></p><p style=3D"padding: 0; m=
argin: 0;" data-mce-style=3D"padding: 0; margin: 0;"><span style=3D"font-=
size: 10pt; font-family: tahoma, arial, helvetica, sans-serif;" data-mce-=
style=3D"font-size: 10pt; font-family: tahoma, arial, helvetica, sans-ser=
if;"><br data-mce-bogus=3D"1"></span></p><p style=3D"padding: 0; margin: =
0;" data-mce-style=3D"padding: 0; margin: 0;"><span style=3D"font-size: 1=
0pt; font-family: tahoma, arial, helvetica, sans-serif;" data-mce-style=3D=
"font-size: 10pt; font-family: tahoma, arial, helvetica, sans-serif;">-Li=
NixG33k</span></p>=0A</body>=0A</html>
--=_0d6S1X+mD3zIOS8Gu4GXjyXACHHeb85NK0BV3MvCRz2sjPeA--
8 years, 8 months
3.6 engine-backup
by Giorgio Bart
Hi all,
I just upgraded From 3.5 to 3.6 and I run a backup with engine-backup. The
resulting files are very small in size compared to those created with the
engine-backup command from 3.5. Is this correct ?
old backup( scope=files) : 15MB
new backup(scoope=files): 177KB
In the old backup file the biggest size is from var directory
24M ./lib/ovirt-engine
24M ./lib
8 years, 8 months