disk not bootable
by Fernando Fuentes
Team,
After I successfully copy my template from one storage to another I was
able to move my VM disks from my nfs domain to my iscsi domain.
My linux vms which are basic template (No template) moved just fine and
boot just fine.
On the other hand my windows vms (Template) once moved they cant boot.
Complaining that there is no bootable disk available.
What is going on?
oVirt 3.6.6
Hosts Centos 6.6 x86_64
iSCSI Domain on TrueNAS Attached via ovirt.
--
Fernando Fuentes
ffuentes(a)txweather.org
http://www.txweather.org
8 years, 3 months
oVirt 4.0.1 on FC23: problem mounting NFSv4 with fsid=0
by wodel youchi
Hi,
I wanted to test the new version of oVirt the 4.0.1 on FC23, using HE
method and using NFSv4 for storage.
When launching the deploy command, and choosing nfsv4 and filling the mount
point, the setup exits with error : Connection to storage server failed.
In vdsm log I have this error:
Could not connect to storageServer
Traceback (most recent call last):
...
OSError: [Errno 2] Mount of `noveria.wodel.wd:/engine_vm` at
`/rhev/data-center/mnt/noveria.wodel.wd:_engine__vm` does not exist
the df -h command shows that the nfs mount was done, but the device path
contains a double slash.
noveria.wodel.wd:*//*vmengine 656G 111G 513G 18%
/rhev/data-center/mnt/noveria.wodel.wd:_vmengine
I am not sure of the problem, but I think it's the *double slash on the
nfs4 path when using fsid=0*: noveria.wodel.wd:*//*vmengine
if I use nfsv4 with fsid=0, the problem shows up.
If I don't use fsid=0 and mention the full path of the nfs mount, the
problem disappears.
Regards.
8 years, 3 months
Resizing Disks on Active VMs
by Alan Griffiths
Hi,
I'm currently testing 4.0 and trying understand what the capabilities are
regards re-sizing of volumes on running VMs.
>From reading the documentation it appears that I should be able to extend a
volume on a running VM, but I find that all the fields are greyed out in
the Edit Virtual Disk dialogue box. In order to get access to the fields I
have to power down the VM.
Is this expected behavior?
I'm running 4.0.1 with a GlusterFS data store.
Thanks,
Alan
8 years, 3 months
Re: [ovirt-users] 回复: 回复: 回复: 回复: ovirt-engine-java-sdk-4.0: How fuzzy query
by Ondra Machacek
On 08/01/2016 12:26 PM, 转圈圈 wrote:
> This is a different meaning.
>
> List<Vm> vms = vmsService.list().search("name=myvm1 or comment=myvm and
> status=up").send().vms();
> SQL statement: select * from vms where name = 'myvm1' or comment='myvm'
> and status = up
>
> List<Vm> vms = vmsService.list().search("(name=myvm1 or comment=myvm)
> and status=up").send().vms();
> SQL statement: select * from vms where (name = 'myvm1'
> or comment='myvm') and status = up
>
> Query result are different.
> I want the SQL statement: select * from vms where (name = 'myvm1'
> or comment='myvm') and status = up
oVirt search pattern is not 100% mapped to SQL query,
so as I said, your query should work for you as expected without braces.
Eli, can elaborate more for you, what's supported or not in oVirt search
patterns, if needed.
>
>
> ------------------ 原始邮件 ------------------
> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
> *发送时间:* 2016年8月1日(星期一) 晚上6:18
> *收件人:* "转圈圈"<313922611(a)qq.com>;
> *抄送:* "users(a)ovirt.org"<users(a)ovirt.org>;
> *主题:* Re: 回复: 回复: 回复: [ovirt-users]
> ovirt-engine-java-sdk-4.0: How fuzzy query
>
> On 08/01/2016 11:38 AM, 转圈圈 wrote:
>> thanks.
>> for example:
>> SQL statement: select * from vms where (name = 'myvm1' or
>> comment='myvm') and status = up
>> using SDK, created for by 'search':
>> List<Vm> vms = vmsService.list().search("(name=myvm1 or
>> comment=myvm) and status=up").send().vms();
>> The above is wrong,how to do?
>
> Just remove brackets:
>
> List<Vm> vms = vmsService.list().search("name=myvm1 or comment=myvm
> and status=up").send().vms();
>
> It's not needed in this case.
>
>>
>>
>>
>> ------------------ 原始邮件 ------------------
>> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
>> *发送时间:* 2016年8月1日(星期一) 下午5:31
>> *收件人:* "转圈圈"<313922611(a)qq.com>;
>> *主题:* Re: 回复: 回复: [ovirt-users] ovirt-engine-java-sdk-4.0: How
>> fuzzy query
>>
>> On 08/01/2016 11:22 AM, 转圈圈 wrote:
>>> thanks.
>>> The above is wrong.
>>> if i want to use "like",how to do?
>>
>> You can use star, so for example this:
>>
>> Vm vm = vmsService.list().search("name=myvm*").send().vms().get(0);
>>
>> Will find for you myvm1,myvm2, etc
>>
>>>
>>>
>>> ------------------ 原始邮件 ------------------
>>> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
>>> *发送时间:* 2016年8月1日(星期一) 下午5:18
>>> *收件人:* "转圈圈"<313922611(a)qq.com>;
>>> *抄送:* "users(a)ovirt.org"<users(a)ovirt.org>;
>>> *主题:* Re: 回复: [ovirt-users] ovirt-engine-java-sdk-4.0: How fuzzy
>> query
>>>
>>> On 08/01/2016 11:06 AM, 转圈圈 wrote:
>>>> thanks.
>>>> for example:
>>>> List<Vm> vms =
>>>> systemService.vmsService().list().search("search=name=myvm and
>>>> status=up").send().vms();
>>>> but I use query conditions "and" ,have no result.why?
>>>
>>> Oh, sorry I meant you have to use 'search=' in case of using API,
>>> so URL looks like: fqdn/ovirt-engine/api/vms?search=name=myvm and
>>> status=down
>>>
>>> But in case of using SDK, the 'search=' is created for you by 'search'
>>> method, so
>>> this should actually work for you:
>>>
>>> Vm vm = systemService().vmsService.list().search("name=myvm and
>>> status=up").send().vms().get(0);
>>>
>>>>
>>>>
>>>>
>>>> ------------------ 原始邮件 ------------------
>>>> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
>>>> *发送时间:* 2016年8月1日(星期一) 下午4:37
>>>> *收件人:* "转圈圈"<313922611(a)qq.com>; "users"<users(a)ovirt.org>;
>>>> *主题:* Re: [ovirt-users] ovirt-engine-java-sdk-4.0: How fuzzy query
>>>>
>>>> On 08/01/2016 07:13 AM, 转圈圈 wrote:
>>>>> The above code is wrong,how fuzzy query?
>>>>>
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Users mailing list
>>>>> Users(a)ovirt.org
>>>>> http://lists.ovirt.org/mailman/listinfo/users
>>>>>
>>>>
>>>> You need to prefix with 'search=',
>>>> So for example to search by name or status, you should have something
>>> like:
>>>>
>>>> ....list().search("search=name=myvm or status=up").send()....
>>>>
>>>> You can check examples here:
>>>>
>>>>
>>>>
>>>
>>
> https://github.com/oVirt/ovirt-engine-sdk-java/tree/master/sdk/src/test/j...
8 years, 3 months
Re: [ovirt-users] 回复: 回复: 回复: ovirt-engine-java-sdk-4.0: How fuzzy query
by Ondra Machacek
On 08/01/2016 11:38 AM, 转圈圈 wrote:
> thanks.
> for example:
> SQL statement: select * from vms where (name = 'myvm1' or
> comment='myvm') and status = up
> using SDK, created for by 'search':
> List<Vm> vms = vmsService.list().search("(name=myvm1 or
> comment=myvm) and status=up").send().vms();
> The above is wrong,how to do?
Just remove brackets:
List<Vm> vms = vmsService.list().search("name=myvm1 or comment=myvm
and status=up").send().vms();
It's not needed in this case.
>
>
>
> ------------------ 原始邮件 ------------------
> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
> *发送时间:* 2016年8月1日(星期一) 下午5:31
> *收件人:* "转圈圈"<313922611(a)qq.com>;
> *主题:* Re: 回复: 回复: [ovirt-users] ovirt-engine-java-sdk-4.0: How
> fuzzy query
>
> On 08/01/2016 11:22 AM, 转圈圈 wrote:
>> thanks.
>> The above is wrong.
>> if i want to use "like",how to do?
>
> You can use star, so for example this:
>
> Vm vm = vmsService.list().search("name=myvm*").send().vms().get(0);
>
> Will find for you myvm1,myvm2, etc
>
>>
>>
>> ------------------ 原始邮件 ------------------
>> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
>> *发送时间:* 2016年8月1日(星期一) 下午5:18
>> *收件人:* "转圈圈"<313922611(a)qq.com>;
>> *抄送:* "users(a)ovirt.org"<users(a)ovirt.org>;
>> *主题:* Re: 回复: [ovirt-users] ovirt-engine-java-sdk-4.0: How fuzzy
> query
>>
>> On 08/01/2016 11:06 AM, 转圈圈 wrote:
>>> thanks.
>>> for example:
>>> List<Vm> vms =
>>> systemService.vmsService().list().search("search=name=myvm and
>>> status=up").send().vms();
>>> but I use query conditions "and" ,have no result.why?
>>
>> Oh, sorry I meant you have to use 'search=' in case of using API,
>> so URL looks like: fqdn/ovirt-engine/api/vms?search=name=myvm and
>> status=down
>>
>> But in case of using SDK, the 'search=' is created for you by 'search'
>> method, so
>> this should actually work for you:
>>
>> Vm vm = systemService().vmsService.list().search("name=myvm and
>> status=up").send().vms().get(0);
>>
>>>
>>>
>>>
>>> ------------------ 原始邮件 ------------------
>>> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
>>> *发送时间:* 2016年8月1日(星期一) 下午4:37
>>> *收件人:* "转圈圈"<313922611(a)qq.com>; "users"<users(a)ovirt.org>;
>>> *主题:* Re: [ovirt-users] ovirt-engine-java-sdk-4.0: How fuzzy query
>>>
>>> On 08/01/2016 07:13 AM, 转圈圈 wrote:
>>>> The above code is wrong,how fuzzy query?
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> Users mailing list
>>>> Users(a)ovirt.org
>>>> http://lists.ovirt.org/mailman/listinfo/users
>>>>
>>>
>>> You need to prefix with 'search=',
>>> So for example to search by name or status, you should have something
>> like:
>>>
>>> ....list().search("search=name=myvm or status=up").send()....
>>>
>>> You can check examples here:
>>>
>>>
>>>
>>
> https://github.com/oVirt/ovirt-engine-sdk-java/tree/master/sdk/src/test/j...
8 years, 3 months
Get Involved with the oVirt Project! Summer edition
by Sandro Bonazzola
Hi,
Have you got some free time? Do you want to get involved in the oVirt
project?
Do you like the idea of having fresh disk images of your favorite
distribution in the oVirt Glance repository?
You can help by testing existing online images ensuring they work with
cloud-init,
or creating one yourself and report your success to devel(a)ovirt.org.
We'll be happy to upload the images once these are ready.
Do you like Debian? Do you have some programming or packaging skills?
Help getting Vdsm running on it! There is some on-going work [14] on
inclusion of Vdsm into Debian.
We wish to test and fix Vdsm Debian packages to make them working before
the next Debian freeze.
You can find all current Debian work (Vdsm and related packages) in Debian
git repositories [10].
You can follow the progress and participate on oVirt development mailing
list [11].
Here are some bugs you can try to help with:
1159784 ovirt-engine Documentation NEW [RFE] Document when and
where new features are available ...
1120585 ovirt-image-uploader Documentation NEW update image
uploader documentation
1120586 ovirt-iso-uploader Documentation NEW update iso uploader
documentation
1120588 ovirt-log-collector Documentation NEW update log collector
documentation
1237132 ovirt-engine Setup.Engine NEW [TEXT] New package listing of
engine-setup when upgrading...
1115059 ovirt-engine General ASSIGNED Incomplete error message when
adding VNIC profile to runn...
Are you great at packaging software? Do you prefer a distribution which is
currently unsupported by oVirt?
Do you want to have packages included in your preferred distribution? Help
getting oVirt ported there!
Fedora: http://lists.ovirt.org/pipermail/devel/2015-September/011426.html
CentOS: https://wiki.centos.org/SpecialInterestGroup/Virtualization
Gentoo: https://wiki.gentoo.org/wiki/OVirt (GSoC:
https://wiki.gentoo.org/wiki/Google_Summer_of_Code/2016/Ideas )
Debian:
http://www.ovirt.org/develop/release-management/features/debian-support-f...
Archlinux: http://www.ovirt.org/develop/developer-guide/arch-linux/
OpenSUSE: https://build.opensuse.org/project/show/Virtualization:oVirt
Do you love DevOps? You count stable builds in jenkins ci while trying to
fall asleep?
Then oVirt infra team is looking for you! Join the infra team and dive in
to do the newest and coolest devops tools today!
Here are some of our open tasks you can help with:
https://ovirt-jira.atlassian.net/secure/RapidBoard.jspa?rapidView=6
You can also help by sharing how you use oVirt in your DevOps environment
(please use [DevOps] in the subject).
You can check out more docs on the DevOps side of oVirt in [12][13]
You don't have programming skills, not enough time for DevOps, but still
want to contribute?
Here are some bugs you can take care of, also without writing a line of
code:
https://bugzilla.redhat.com/buglist.cgi?quicksearch=classification%3Aovir...
Do you prefer to test things? We have some test cases[5] you can try, using
nightly snapshots[6].
For 4.1 we're rebasing Fedora support on Fedora 24, you can help by running
nightly snapshots[6] on it and reporting issues.
Do you want to contribute test cases? Most of the features[7] included in
oVirt are missing a test case, you're welcome to contribute one!
Do you want to contribute artworks? oVirt Live backgrounds and covers,
release banners, stickers, .... Take a look at Fedora Artworks[9] as an
example of what you can do
Is this the first time you try to contribute to the oVirt project?
You can start from here [1][2]!
You don't know gerrit very well? You can find some more docs here [3].
Any other question about development? Feel free to ask on devel(a)ovirt.org
or on irc channel[4].
You don't really have time / skills for any development / documentation /
testing related task?
Spread the word[8]!
Let us know you're getting involved, present yourself and tell us what
you're going to do, you'll be welcome!
[1] http://www.ovirt.org/develop/
[2] http://www.ovirt.org/develop/dev-process/working-with-gerrit/
[3] https://gerrit-review.googlesource.com/Documentation
[4] http://www.ovirt.org/community/
[5] http://www.ovirt.org/develop/infra/testing/
[6] http://www.ovirt.org/develop/dev-process/install-nightly-snapshot/
[7] http://www.ovirt.org/develop/release-management/features/
[8]
http://www.zdnet.com/article/how-much-longer-can-red-hats-ovirt-remain-co...
[9] https://fedoraproject.org/wiki/Artwork#Resources
[10] http://git.debian.org
[11] http://lists.ovirt.org/mailman/listinfo/devel
[12] http://ovirt-infra-docs.readthedocs.org/en/latest/
[13] http://www.ovirt.org/develop/infra/infrastructure-documentation/
[14]
https://www.ovirt.org/develop/release-management/features/debian-support-...
--
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
8 years, 3 months
Safe to upgrade HE hosts from GUI?
by Wee Sritippho
This is a multi-part message in MIME format.
--------------D1B075435FBB036A716F94AD
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Hi,
I used to follow
http://www.ovirt.org/documentation/how-to/hosted-engine/#upgrade-hosted-e...
when upgrading Hosted Engine (HE) but always fail to make the engine VM
migrate to the fresh upgraded host as described in step 7. Furthermore,
the update available icon never disappeared from the GUI.
So I though using the GUI might be better for an amateur like me.
Can I just follow
http://www.ovirt.org/documentation/how-to/hosted-engine/#upgrade-hosted-e...
until step 3 and do everything else via GUI?
Thank you,
--
Wee
--------------D1B075435FBB036A716F94AD
Content-Type: multipart/related;
boundary="------------1B6AE34A5F145C09C4C13AB6"
--------------1B6AE34A5F145C09C4C13AB6
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 7bit
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p>Hi,</p>
<p>I used to follow
<a class="moz-txt-link-freetext" href="http://www.ovirt.org/documentation/how-to/hosted-engine/#upgrade-hosted-e...">http://www.ovirt.org/documentation/how-to/hosted-engine/#upgrade-hosted-e...</a>
when upgrading Hosted Engine (HE) but always fail to make the
engine VM migrate to the fresh upgraded host as described in step
7. Furthermore, the update available icon never disappeared from
the GUI.</p>
<p><img src="cid:part1.0C5A5B3F.762B762F@forest.go.th" alt=""></p>
<p>So I though using the GUI might be better for an amateur like me.</p>
<p>Can I just follow
<a class="moz-txt-link-freetext" href="http://www.ovirt.org/documentation/how-to/hosted-engine/#upgrade-hosted-e...">http://www.ovirt.org/documentation/how-to/hosted-engine/#upgrade-hosted-e...</a>
until step 3 and do everything else via GUI?</p>
<p>Thank you,<br>
</p>
<br>
<pre class="moz-signature" cols="72">--
Wee</pre>
</body>
</html>
--------------1B6AE34A5F145C09C4C13AB6
Content-Type: image/png;
name="bbdplhjmfhdddbdj.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.0C5A5B3F.762B762F(a)forest.go.th>
Content-Disposition: inline;
filename="bbdplhjmfhdddbdj.png"
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
--------------1B6AE34A5F145C09C4C13AB6--
--------------D1B075435FBB036A716F94AD--
8 years, 3 months
Re: [ovirt-users] 回复: ovirt-engine-java-sdk-4.0: How fuzzy query
by Ondra Machacek
On 08/01/2016 11:06 AM, 转圈圈 wrote:
> thanks.
> for example:
> List<Vm> vms =
> systemService.vmsService().list().search("search=name=myvm and
> status=up").send().vms();
> but I use query conditions "and" ,have no result.why?
Oh, sorry I meant you have to use 'search=' in case of using API,
so URL looks like: fqdn/ovirt-engine/api/vms?search=name=myvm and
status=down
But in case of using SDK, the 'search=' is created for you by 'search'
method, so
this should actually work for you:
Vm vm = systemService().vmsService.list().search("name=myvm and
status=up").send().vms().get(0);
>
>
>
> ------------------ 原始邮件 ------------------
> *发件人:* "Ondra Machacek";<omachace(a)redhat.com>;
> *发送时间:* 2016年8月1日(星期一) 下午4:37
> *收件人:* "转圈圈"<313922611(a)qq.com>; "users"<users(a)ovirt.org>;
> *主题:* Re: [ovirt-users] ovirt-engine-java-sdk-4.0: How fuzzy query
>
> On 08/01/2016 07:13 AM, 转圈圈 wrote:
>> The above code is wrong,how fuzzy query?
>>
>>
>>
>> _______________________________________________
>> Users mailing list
>> Users(a)ovirt.org
>> http://lists.ovirt.org/mailman/listinfo/users
>>
>
> You need to prefix with 'search=',
> So for example to search by name or status, you should have something like:
>
> ....list().search("search=name=myvm or status=up").send()....
>
> You can check examples here:
>
>
> https://github.com/oVirt/ovirt-engine-sdk-java/tree/master/sdk/src/test/j...
8 years, 3 months
How to add ovs-based VM in version 4.0.2? Thank you
by lifuqiong
This is a multipart message in MIME format.
------=_NextPart_000_006C_01D1EBFD.653BB4C0
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
Hi, I upgrade my ovirt to version 4.0.2.2, how to using ovs in this version?
Is there any instruction? Thank you
------=_NextPart_000_006C_01D1EBFD.653BB4C0
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=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii"><meta name=3DGenerator content=3D"Microsoft Word 14 =
(filtered medium)"><style><!--
/* Font Definitions */
@font-face
{font-family:\5B8B\4F53;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:\5B8B\4F53;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:"\@\5B8B\4F53";
panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
font-size:10.5pt;
font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:purple;
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 Definitions */
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;}
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=3DZH-CN link=3Dblue =
vlink=3Dpurple style=3D'text-justify-trim:punctuation'><div =
class=3DWordSection1><p class=3DMsoNormal><span lang=3DEN-US>Hi, I =
upgrade my ovirt to version 4.0.2.2, how to using ovs in this version? =
Is there any instruction? Thank =
you =
<o:p></o:p></span></p><p class=3DMsoNormal><span =
lang=3DEN-US><o:p> </o:p></span></p><p class=3DMsoNormal><span =
lang=3DEN-US><o:p> </o:p></span></p></div></body></html>
------=_NextPart_000_006C_01D1EBFD.653BB4C0--
8 years, 3 months