[ovirt-users] Re: Obtain dynamic inventory onto local machine using ovirt4.py for self-hosted engine

2018-05-23 Thread Moran Goldboim
On Wed, May 23, 2018 at 12:10 PM, 03CE 007 <03ce...@gmail.com> wrote:

> Hello Ondra,
> you're correct, there was much accept removing 'connection: local' line
> from ovirt ansible roles.
>
> however, the example playbook to deploy new vm fails at template option
> and it complains that i don't have rhel7 template. Doesn't this come
> bundled with hosted-engine and is available after deployment?
>
> Do i need to create/install new template?
>

sounds like indeed you are missing this template in your system.
take a look at
https://github.com/oVirt/ovirt-ansible-image-template/blob/master/README.md
for automatically creating a template from a web srource.


>
>
>
> On 23 May 2018 at 06:50, Ondra Machacek  wrote:
>
>> On 05/22/2018 06:44 PM, 03ce...@gmail.com wrote:
>>
>>> I have successfully deployed self-hosted-engine (4.2) on centos (7.4)
>>> server.
>>>
>>> the server address is ovirt where the self-hosted engine running on it
>>> has fdqn as engine.ovirt. I  have ovirt,ini configured on server acan run
>>> the ovirt4.py from the server to obtain the vms in groups. But I want to
>>> control the vms using ansible from my macbook and run ansible playbooks
>>> locally.
>>>
>>> so I have downloaded the ovirt.ini and ovirt4.py from server and tried
>>> running it, but had no success.
>>>
>>> Is there something special needs setting up for
>>> 'self-hosted-ovirt-engine' as oppose to vanilla ovirt-engine which will
>>> allow me to control vms from my macbook?
>>>
>>
>> You don't need to do anything special.
>> What's the error you get?
>>
>>
>>
>>> thanks.
>>> ___
>>> Users mailing list -- users@ovirt.org
>>> To unsubscribe send an email to users-le...@ovirt.org
>>>
>>>
>
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
>
>
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org


Re: [ovirt-users] Tunable parameters in ovirt engine

2018-03-07 Thread Moran Goldboim
Hi Hari,

any specific use-case you are trying to achieve with this benchmark?
what are you trying to simulate? just wondering whether there are different
options to achieve it..

Thanks.

On Wed, Mar 7, 2018 at 5:50 PM, Juan Hernández  wrote:

> It means that with the default configuration the Apache web server can't
> serve more than 256 concurrent connections. This applies to any application
> that uses Apache as the web frontend, not just to oVirt. If you want to
> change that you have to change the MaxRequestWorkers and ServerLimit
> parameters, as explained here:
>
>   https://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers
>
> So, go to your oVirt engine machine and create a /etc/httpd/conf.d/my.conf
> file with this content:
>
>   MaxRequestWorkers 1000
>   ServerLimit 1000
>
> Then restart the Apache server:
>
>   # systemctl restart httpd
>
> Then your web server should be able to handle 1000 concurrent requests,
> and you will probably start to find other limits, like the amount of memory
> and CPU that those 1000 Apache child processes will consume, the number of
> threads in the JBoss application server, the number of connections to the
> database, etc.
>
> Let me insist a bit that if you base your benchmark solely on the number
> of concurrent requests or connections that the server can handle you may
> end up with meaningless results, as a real world application can/should use
> the server much better than that.
>
> On 03/07/2018 04:33 PM, Hari Prasanth Loganathan wrote:
>
>> With the default configuration of the web server it is impossible to
>> handle
>> more than 256 *connections* simultaneously. I guess that "ab" is opening a
>> connection for each concurrent request, so when you reach request 257 the
>> web server will just reject the connection, there is nothing that the
>> JBoss
>> can do about it; you have to increase the number of connections supported
>> by the web server.
>>
>> *So Does it mean that oVirt cannot serve more than 257 request? *
>>
>> My question is, If its possible How to scale this and what is the
>> configuration we need to change?
>>
>> Also, we are taking a benchmark in using oVirt, So I need to find the
>> maximum possible oVirt request. So please let me know the configuration
>> tuning for oVirt to achieve maximum concurrent request.
>>
>> Thanks,
>> Hari
>>
>> On Wed, Mar 7, 2018 at 7:25 PM, Juan Hernández 
>> wrote:
>>
>> With the default configuration of the web server it is impossible to
>>> handle more than 256 *connections* simultaneously. I guess that "ab" is
>>> opening a connection for each concurrent request, so when you reach
>>> request
>>> 257 the web server will just reject the connection, there is nothing that
>>> the JBoss can do about it; you have to increase the number of connections
>>> supported by the web server.
>>>
>>> Or else you may want to re-consider why you want to use 1000 simultaneous
>>> connections. It may be OK for a performance test, but there are better
>>> ways
>>> to squeeze performance. For example, you could consider using HTTP
>>> pipelining, which is much more friendly for the server than so many
>>> connections. This is what we use when we need to send a large number of
>>> requests from other systems. There are examples of how to do that with
>>> the
>>> Python and Ruby SDKs here:
>>>
>>>Python:
>>>
>>> https://github.com/oVirt/ovirt-engine-sdk/blob/master/sdk/
>>> examples/asynchronous_inventory.py
>>>
>>>Ruby:
>>>
>>> https://github.com/oVirt/ovirt-engine-sdk-ruby/blob/master/
>>> sdk/examples/asynchronous_inventory.rb
>>>
>>>
>>> On 03/07/2018 02:43 PM, Hari Prasanth Loganathan wrote:
>>>
>>> Hi Juan,

 Thanks for the response.

 I agree web server can handle only limited number of concurrent
 requests.
 But Why it is failing with SSL handshake failure for few requests, Can't
 the JBOSS wait and serve the request? We can spare the delay but not
 with
 the request fails. So Is there a configuration in oVirt which can be
 tuned
 to achieve this?

 Thanks,
 Hari

 On Wed, Mar 7, 2018 at 7:05 PM, Juan Hernández 
 wrote:

 The first thing you will need to change for such a test is the number of

> simultaneous connections accepted by the Apache web server: by default
> the
> max is 256. See the Apache documentation here:
>
> https://httpd.apache.org/docs/2.4/mod/mpm_common.html#m
> axrequestworkers
>
> In addition I also suggest that you consider using the "worker"
> multi-processing module instead of the "prefork", as it usually works
> better when talking to a Java application server, because it re-uses
> connections better.
>
> On 03/07/2018 02:20 PM, Hari Prasanth Loganathan wrote:
>
> Hi Team,
>
>>
>> *Description of problem:*
>>
>> I am trying to achieve 1000 concurrent request to oVirt. What are the
>> tunable parameters to 

Re: [ovirt-users] about gluster to host HA

2016-11-27 Thread Moran Goldboim
Hello,

can you please specify what do you mean by host HA, what are the modules
you are expecting to have HA for. would be great if you can give the user
story around it.

Thanks,
Moran.

On Sat, Nov 26, 2016 at 5:22 PM, 张 余歌  wrote:

> hello,each senior..
> i know how to use nfs to achieve host ha,can i use gluster to achieve host
> HA?
> if it can, how many hosts do i need to ready at least ?i google but i
> don't get some useful message
> best regard
>
> 获取 Outlook for Android 
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] I wrote an oVirt thing

2016-11-27 Thread Moran Goldboim
Guys, can you please check out Ansible integration work for those use cases:
a base Auth/Vms/Disks modules were introduced with Ansible 2.2 -
https://docs.ansible.com/ansible/ovirt_vms_module.html
https://docs.ansible.com/ansible/ovirt_disks_module.html
https://docs.ansible.com/ansible/ovirt_auth_module.html
https://github.com/ansible/ansible-modules-extras/tree/stable-2.2/cloud/ovirt

with many improvements coming soon with Ansible 2.3:
https://github.com/ansible/ansible-modules-extras/tree/devel/cloud/ovirt
https://github.com/ansible/ansible-modules-extras/pulls?utf8=%E2%9C%93&q=is%3Apr%20is%3Aopen%20ovirt

it sounds like that for this use case, Ansible modules should be a great
answer.

Moran.

On Sat, Nov 26, 2016 at 11:40 PM, Chris Cowley 
wrote:

> A few reasons really. I fancied playing around with Click, so I made
> this as I was also digging around the oVirt API. My workstation at work
> is running Ubuntu, and I do not believe that ovirt-shell is packaged for
> it.
>
> Also, choice is good.
>
> Finally: because I didn't think of it.
>
> On 26/11/16 22:24, Derek Atkins wrote:
> > Hi Chris,
> >
> > Just a quick question, but, why not just use ovirt-shell?
> > Or make this a wrapper around ovirt-shell?
> >
> > -derek
> >
> > On Sat, November 26, 2016 4:10 pm, Chris Cowley wrote:
> >> Hi all
> >>
> >> I started hacking together something last night to use as a CLI to
> >> manage my oVirt clusters.
> >>
> >> https://gogs.chriscowley.me.uk/chriscowley/ovirtmanage
> >>
> >> Currently it can create/delete a VM, list the VMS, and I started a
> >> function to show the details, but all that does for now is return the
> ID.
> >>
> >> The plan is for it to evolve with my own needs, but I am open to
> >> ideas/PRs from the community.
> >>
> >> Disclaimer #1: I am a SysAdmin, not a developer. If you a proper
> >> developer, what you see may cause you physical pain.
> >>
> >> Disclaimer #2: My Gogs repo is behind my ADSL in rural France, be
> >> patient and I withold the right to not respect any sort of SLA :-)
> >>
> >>
> >> --
> >> Regards
> >>
> >> Chris Cowley
> >> http://about.me/chriscowley
> >>
> >> ___
> >> Users mailing list
> >> Users@ovirt.org
> >> http://lists.ovirt.org/mailman/listinfo/users
> >>
> >
> >
>
>
> --
> Regards
>
> Chris Cowley
> http://about.me/chriscowley
>
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] virt-v2v converting multi-disk

2016-02-29 Thread Moran Goldboim
+Richard, v2v maintainer.

On Sat, Feb 27, 2016 at 8:45 PM, Clint Boggio  wrote:

> I'm in the process of migrating a series of VM's from  KVM environment, to
> an OVirt environment. I've used virt-v2v to convert quite a few M$ and
> Linux machines with great success.
>
> Coming up I've got to convert a Linux VM that has 3 virtual disks. Inside
> that VM, the three disks are part of an LVM volume.
>
> 1. How will virt-v2v handle these three virtual disks ?
> 2. On which disk image will I run virt-v2v ?
> 3. Will virt-v2v "follow" the three images and convert the machine or will
> I have to somehow tell it to include all three disks ?
> 4. Shall I have all three images together in the same directory when I run
> the tool ?
> 5. Is this the appropriate forum for this question ?
>
> As of the writing of this question I'll be using OVirt 3.6 updated on a 4
> node cluster running CentOS 7 , and the most recent version of virt-v2v as
> is available on Fedora 23.
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] oVirt 3.5 on Ubuntu? [oVirt Dockerized]

2015-04-13 Thread Moran Goldboim
Hi Mario,

Glad to hear you're interested in the project.
please see inline reply.

- Original Message -
> From: "Mario Giammarco" 
> To: users@ovirt.org
> Sent: Saturday, 11 April, 2015 8:57:52 PM
> Subject: Re: [ovirt-users] oVirt 3.5 on Ubuntu? [oVirt Dockerized]
> 
> Moran Goldboim  writes:
> 
> > 
> > Deploying oVirt engine has never been so easy.
> Hi,
> I have seen the project and it is interesting a lot.
> Please note that next version of synology NAS OS will have docker support,
> so I can buy a nas and use it also as ovirt-engine.

can you explain a bit more on the architecture you would like to present?

> But I am learning docker and I see that it is not so "easy" to setup.
> Infact a custom version of ovirt-engine must be developer for it.

The project isn't build in such a way you need to be a developer to run it 
(though few manual steps needs to be taken ATM)
on a linux machine:
1. git clone 
https://github.com/mgoldboi/oVirt-Dockerized.githttps://github.com/mgoldboi/oVirt-Dockerized.git
2. cd oVirt-Dockerized/Build
3. sudo make ovirt

this procedure will build latest oVirt version container and a database 
container initialize with oVirt scheme.

> So I see that you have made a 3.5.0 engine for docker but:
> 
> - will you provide 3.5.1? It seems to me I cannot upgrade it easily

Since i haven't seen so much interest from the community around this area,
I haven't generated new images for 3.5.1 (only for the clean rpm image).

regarding upgrades, since this basically a POC for ovirt in a container, 
upgrade isn't supported yet.
which means you have 2 options ATM:
-upgrade from within the container[1]  
-swap the oVirt container (3.5.0 -> 3.5.1) and stay with the same DB (you may 
need to upgrade the scheme manually, save/restore certificates) [2][3]

> - if I install a standard ovirt-engine or a dockerized engine now, can I
> migrate configuration to another one?

same procedure as above.
let me know if you have more questions.

Moran.

> 
> Thanks in advance for help,
> Mario
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 

[1]http://www.ovirt.org/OVirt_3.5_Release_Notes#Install_.2F_Upgrade_from_Previous_Versions
[2]http://www.ovirt.org/OVirt-database-upgrade-procedure
[3]http://www.ovirt.org/Backup_And_Restore_Engine
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] oVirt 3.5 on Ubuntu? [oVirt Dockerized]

2014-11-03 Thread Moran Goldboim
Deploying oVirt engine has never been so easy.
Checkout oVirt dockerized projects on docker hub[1] and github[2].
You can find some overview on oVirt-dockerized blog[3]
Please let me know if you find it useful.

Cheers,
Moran. 

[1] https://hub.docker.com/u/mgoldboi/
[2] https://github.com/mgoldboi/oVirt-Dockerized
[3] http://community.redhat.com/blog/2014/10/ovirt-dockerized/
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] [ATN] oVirt 3.3 release, moving to RC [3.3 branching, blockers review]

2013-07-30 Thread Moran Goldboim

On 07/30/2013 09:56 PM, Itamar Heim wrote:

On 07/30/2013 06:05 PM, Moran Goldboim wrote:

We would like to go a head on oVirt 3.3 release process and issue an RC


how can we do this before folks review all the bugs with target 
release of 3.3 and either suggest them as blockers or move them from 3.3?
there are currently 59 NEW, 7 ASSIGNED and 22 POST with target release 
of 3.3?


http://alturl.com/aq23x


that the aim of this mail, maintainers should review their realm for 
blockers (unscrubbed bugs as well), and this release should get into 
stabilization mode.
by tomorrow we should have a better view on what are the blockers for 
the version, we are already going to delay this release, and i would 
like to get a clear view by tomorrow, as mentioned later in the mail - 
RC should go out without any known blockers.






for tomorrow meeting:

Maintainers/ Package owners
==
-branch your git repo (master) with 3.3 branch (making master ready 
for 3.4)

-for tomorrow meeting, overview [1], see if you have any changes to it
-if you don't have any blockers under your component, please branch 3.3
with RC1 branch

 |
 -master
 |
 -engine_3.3
 |
 -RC1
 |
 -engine_3.2
 ...

Users

with your experience from test day and with nightlies, if you feel there
are additional candidates to block this version for please add it to the
tracker bug [1].

Suggested Schedule

Wed Jul 31st - review of blockers for the version and component 
readiness

Mon Aug 5th - RC1 release
Wed Aug 7th - Release readiness review (in case of blockers an RC2 will
be issued)

Thanks.

[1]*Bug 918494* <https://bugzilla.redhat.com/show_bug.cgi?id=918494>
-Tracker: oVirt 3.3 release




___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] [ATN] oVirt 3.3 release, moving to RC [3.3 branching, blockers review]

2013-07-30 Thread Moran Goldboim

We would like to go a head on oVirt 3.3 release process and issue an RC

for tomorrow meeting:

Maintainers/ Package owners
==
-branch your git repo (master) with 3.3 branch (making master ready for 3.4)
-for tomorrow meeting, overview [1], see if you have any changes to it
-if you don't have any blockers under your component, please branch 3.3 
with RC1 branch


|
-master
|
-engine_3.3
|
-RC1
|
-engine_3.2
...

Users

with your experience from test day and with nightlies, if you feel there 
are additional candidates to block this version for please add it to the 
tracker bug [1].


Suggested Schedule

Wed Jul 31st - review of blockers for the version and component readiness
Mon Aug 5th - RC1 release
Wed Aug 7th - Release readiness review (in case of blockers an RC2 will 
be issued)


Thanks.

[1]*Bug 918494*  
-Tracker: oVirt 3.3 release



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th

2013-07-24 Thread Moran Goldboim

For all participants in the test day:

-it would be great if you can put your name/distro here [1]
-if you found a general bug (regression) , you can add it to to the 
table under general [2]


we would like to get some input on general bugs/problems you are 
experiencing.


Thanks.

[1] http://www.ovirt.org/OVirt_3.3_TestDay#Participants_Table
[2] 
http://www.ovirt.org/OVirt_3.3_TestDay#oVirt_3.3_New_Features_-_Test_Status_Table



On 07/23/2013 03:00 PM, Moran Goldboim wrote:
oVirt 3.3 release is just around the corner, and we would like to 
invite you all to take a taste of the new release [1].


http://www.ovirt.org/OVirt_3.3_TestDay

Tomorrow morning (when all repos are packages are ready - finger 
crossed) you are invited to:


-checkout Test Day page [2]
-choose a distro (el6/fc19)
-install oVirt [3]
-check out the version
-report what you find

Developers and Users will be available in the channel/ on list to 
support in case there is trouble


Thanks


[1] http://www.ovirt.org/OVirt_3.3_release-management
[2] http://www.ovirt.org/OVirt_3.3_TestDay
[3]http://www.ovirt.org/Download



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th

2013-07-24 Thread Moran Goldboim

Beta RPMs are available on the repo for FC19 and EL6.

On 07/24/2013 10:09 AM, Moran Goldboim wrote:
Short update - rpms for ovirt-engine, are not up in the repo yet - and 
being copied ATM.

we'll send a short update when it's there - should be in beta repo [1]

[1] http://resources.ovirt.org/releases/beta/rpm/


 Original Message 
Subject:Fwd: [Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th
Date:   Tue, 23 Jul 2013 15:23:35 +0300
From:   Moran Goldboim 
To: engine-devel , vdsm-de...@ovirt.org



Feature owners, please make sure:

-your feature is updated on release table page [1].
-you have test page for your feature [2].
-your team regression testing section is organized and up to date [3].

Thanks.

[1] 
http://www.ovirt.org/OVirt_3.3_release-management#Features_Status_Table
[2] 
http://www.ovirt.org/OVirt_3.3_TestDay#oVirt_3.3_New_Features_-_Test_Status_Table

[3] http://www.ovirt.org/OVirt_3.3_TestDay#Regression_testing


 Original Message 
Subject:[Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th
Date:   Tue, 23 Jul 2013 15:00:23 +0300
From:   Moran Goldboim 
CC: users@ovirt.org 



oVirt 3.3 release is just around the corner, and we would like to 
invite you all to take a taste of the new release [1].


http://www.ovirt.org/OVirt_3.3_TestDay

Tomorrow morning (when all repos are packages are ready - finger 
crossed) you are invited to:


-checkout Test Day page [2]
-choose a distro (el6/fc19)
-install oVirt [3]
-check out the version
-report what you find

Developers and Users will be available in the channel/ on list to 
support in case there is trouble


Thanks


[1] http://www.ovirt.org/OVirt_3.3_release-management
[2] http://www.ovirt.org/OVirt_3.3_TestDay
[3]http://www.ovirt.org/Download







___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th

2013-07-24 Thread Moran Goldboim
Short update - rpms for ovirt-engine, are not up in the repo yet - and 
being copied ATM.

we'll send a short update when it's there - should be in beta repo [1]

[1] http://resources.ovirt.org/releases/beta/rpm/


 Original Message 
Subject:Fwd: [Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th
Date:   Tue, 23 Jul 2013 15:23:35 +0300
From:   Moran Goldboim 
To: engine-devel , vdsm-de...@ovirt.org



Feature owners, please make sure:

-your feature is updated on release table page [1].
-you have test page for your feature [2].
-your team regression testing section is organized and up to date [3].

Thanks.

[1] http://www.ovirt.org/OVirt_3.3_release-management#Features_Status_Table
[2] 
http://www.ovirt.org/OVirt_3.3_TestDay#oVirt_3.3_New_Features_-_Test_Status_Table

[3] http://www.ovirt.org/OVirt_3.3_TestDay#Regression_testing


 Original Message 
Subject:[Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th
Date:   Tue, 23 Jul 2013 15:00:23 +0300
From:   Moran Goldboim 
CC: users@ovirt.org 



oVirt 3.3 release is just around the corner, and we would like to invite 
you all to take a taste of the new release [1].


http://www.ovirt.org/OVirt_3.3_TestDay

Tomorrow morning (when all repos are packages are ready - finger 
crossed) you are invited to:


-checkout Test Day page [2]
-choose a distro (el6/fc19)
-install oVirt [3]
-check out the version
-report what you find

Developers and Users will be available in the channel/ on list to 
support in case there is trouble


Thanks


[1] http://www.ovirt.org/OVirt_3.3_release-management
[2] http://www.ovirt.org/OVirt_3.3_TestDay
[3]http://www.ovirt.org/Download





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] [ANN] oVirt 3.3 Test Day - Tomorrow Wed - Jul 24th

2013-07-23 Thread Moran Goldboim
oVirt 3.3 release is just around the corner, and we would like to invite 
you all to take a taste of the new release [1].


http://www.ovirt.org/OVirt_3.3_TestDay

Tomorrow morning (when all repos are packages are ready - finger 
crossed) you are invited to:


-checkout Test Day page [2]
-choose a distro (el6/fc19)
-install oVirt [3]
-check out the version
-report what you find

Developers and Users will be available in the channel/ on list to 
support in case there is trouble


Thanks


[1] http://www.ovirt.org/OVirt_3.3_release-management
[2] http://www.ovirt.org/OVirt_3.3_TestDay
[3]http://www.ovirt.org/Download

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt 3.3 Test day [postponed in 1 day - Wednesday]

2013-07-22 Thread Moran Goldboim

On 07/23/2013 01:14 AM, Mike Burns wrote:

On 07/22/2013 11:49 AM, Gianluca Cecchi wrote:

On Mon, Jul 22, 2013 at 4:18 PM, Moran Goldboim  wrote:

owners, please update features/status/test pages on oVirt 3.3 
release page

[1] - if N/A please mark it as such.


[1] http://www.ovirt.org/index.php?title=OVirt_3.3_release-management


Also if possible the expected beta release day (currently marked as 
2013-07-18).

Going at
http://resources.ovirt.org/releases/beta/rpm/EL/6/noarch/
(but the same for Fedora 18 and 19 paths)
I only see a few packages and none of the engine related.

Thanks,
Gianluca

ACK on pushing this out.  There are numerous packages that I don't 
have yet to post.  Namely, engine and vdsm have not yet been provided 
for posting.


Mike


So, test day was moved for tomorrow, i'll send an announcement with all 
the details soon.


Thanks.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] oVirt 3.3 Test day [suggested 1 day delay]

2013-07-22 Thread Moran Goldboim
continuing the tradition of coordinating oVirt test days, i would like 
to postpone this in a day to make sure we are ready for it.


-few features are missing test page (owners are cc'ed) [1]
-features aren't updated on release table
-general test day infra should be better arrange
-several features delivery are still pending.
-basic tests on both distros making sure delivery isn't DOA

owners, please update features/status/test pages on oVirt 3.3 release 
page [1] - if N/A please mark it as such.



[1] http://www.ovirt.org/index.php?title=OVirt_3.3_release-management

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Fedora upgrading from 3.1 to 3.2

2013-06-25 Thread Moran Goldboim

On 06/25/2013 02:52 PM, Alex Lourie wrote:


On Tue, Jun 25, 2013 at 1:31 PM, Karli Sjöberg  
wrote:

mån 2013-06-24 klockan 12:35 +0003 skrev Alex Lourie: 
On Mon, Jun 24, 2013 at 2:09 PM, Karli Sjöberg 
 wrote:

> mån 2013-06-24 klockan 10:54 +0003 skrev Alex Lourie: 
>> On Mon, Jun 24, 2013 at 1:26 PM, Karli Sjöberg >> 
 >> wrote:

>> > sön 2013-06-23 klockan 09:38 +0003 skrev Alex Lourie: Hi Karli
>> >> >> >> I've written up all we know at [1], please try to follow 
it (if >> you >> >> haven't yet) and let us know how it goes. If 
anything goes wrong, >> we >> >> will look for the ways to resolve it.

>> >> >> >  >> > Hi Alex!
>> > >> > Awesome job, I´m going to test this right away and let you 
know >> how >> > it goes. Wish me luck;)

>> > >> >> Good luck! May the force be with you.
>> >  > No no, the source Alex, the source:)
> > /K
>
Sure, that one too.




Hi Karli



Well, it wasn´t with me for long, I have hit BZ 911939 and 901786, 
where fedup fails to find my LVM volumes. In the dracut shell (to 
where it gets dropped), I have good output from blkid and lvm 
pvs|vgs|lvs but no nodes created in /dev/mapper and so the system 
cannot boot and upgrade fails. Do you have any suggestions there that 
might help? In the mean time, I´ll try upgrading using 
http://fedoraproject.org/wiki/Upgrading_Fedora_using_yum instead, see 
if that gives better success.




Sorry to hear that. Different people have experienced multiple 
problems upgrading lvm-based F17 systems to F18. I don't think that 
there's a magic solution that would just work, each case is usually 
solved on its own.


Let us know how you progress with upgrading with yum.

Alex.


i used same article [1] and had a successful go with it - good luck...

[1] 
https://fedoraproject.org/wiki/Upgrading_Fedora_using_yum#Fedora_17_-.3E_Fedora_18 







--

Med Vänliga Hälsningar
--- 


Karli Sjöberg
Swedish University of Agricultural Sciences
Box 7079 (Visiting Address Kronåsvägen 8)
S-750 07 Uppsala, Sweden
Phone:  +46-(0)18-67 15 66
karli.sjob...@slu.se




___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Fedora upgrading from 3.1 to 3.2

2013-06-24 Thread Moran Goldboim

On 06/23/2013 10:08 PM, Alfred Angelov wrote:

Hey,

This might sounds like a foolish question, but from the link you 
mentioned:


oVirt 3.1 was released as Fedora 17 package while 3.2 is targeted 
Fedora 18. Due to the nature of this upgrade, we DO NOT recommend it, 
users are advised to do a 3.2 clean installation, and to import all 
VM's and template into the new installation. 


Is there anything special I would have to do to import all the VMs 
(around 40) from my ovirt 3.1.0-2 to another ovirt (which runs 3.2.2) ?


you should:
-create and attach an export domain to the relevant datacenter on your 
3.1 system

-export the vms you need to the export domain
-disconnect the export domain
-import the domain on your 3.2.2 system (from storage tab)
-import the vms to the relevant datacenter



Mvh, Alfred Angelov

On 06/23/2013 11:35 AM, Alex Lourie wrote:

Hi Karli

I've written up all we know at [1], please try to follow it (if you 
haven't yet) and let us know how it goes. If anything goes wrong, we 
will look for the ways to resolve it.


Alex.

[1] http://www.ovirt.org/OVirt_3.1_to_3.2_upgrade

On Thu, Jun 20, 2013 at 8:05 PM, Alex Lourie  wrote:

Hi Karli

I am reviewing all the actions again, and hopefully will have 
something documented on Sunday.


Alex.

On Tue, Jun 18, 2013 at 10:46 AM, Karli Sjöberg 
 wrote:
> tis 2013-06-18 klockan 10:06 +0300 skrev Moran Goldboim: On > 
06/17/2013 02:51 PM, Karli Sjöberg wrote:
>> >> >  mån 2013-06-17 klockan 10:11 +0003 skrev Alex Lourie: On 
Fri, > Jun 14, 2013 at 12:26 PM, Karli Sjöberg 
 >>>> wrote:

>>>> > Hi!
>>>> > >>>> >>>> Hi Karli,
>>>> >>>> > >>>> > More than two months have passed without any 
notices or updates >>>> on >>>> > this issue, and looking at the 
bugreport absolutely nothing has >>>> been >>>> > done since then. 
What´s confusing me is that the release >>>> management >>>> > for 
oVirt 3.2 has this clearly printed:

>>>> > "MUST: Upgrade from previous release"
>>>> > >>>> > And you all seem too busy with getting the next 
release out of >>>> the >>>> > door before fixing the current... 
What gives? Don´t you care >>>> about >>>> > early adopters?
>>>> > >>>> >>>> I apologise that this issue wasn't taken care of 
yet. It is clear >>>> that >>>> the priorities of developers shifted 
towards work on features in >>>> 3.3 >>>> release, which feature 
freeze is happening in about 2 weeks, so >>>> you can >>>> 
understand the time pressure they all have. There's no need to be 
>>>> angry >>>> about that. It is an open source project and as 
resources for the >>>> development are limited, we're trying to do 
our best to cover as >>>> much >>>> issues as possible. This can 
lead to situations as this issue, >>>> which >>>> may be left behind 
for some time.
>>>> >>>  >>> I´m not angry, as I stated before, I´m more confused, 
and maybe a >>> little disappointed that important(in my opinion) 
pieces of a >>> projects continuum have been ignored like that. I´m 
having a hard >>> time understanding the reasoning behind the 
priorities that have >>> made this issue appear. In my mind, making 
sure that users of any >>> project are able to follow between minor 
upgrades is a given, with >>> a schedule like; 1) Feature freeze, 2) 
Fix release blockers >>> (upgrading being one of them), 3) Release, 
in that order. Now >>> what´s happening is that you are kind of 
hoping to drag this out >>> until the problem goes away by itself 
when you decide it´s time to >>> stop supporting 3.1.
>>> >>>> That said, the process for upgrading the oVirt 3.1 on 
Fedora 17 to >>>> oVirt 3.2 on Fedora 18 is complex and non-trivial, 
that's why it >>>> is >>>> taking time to resolve all the issues 
that come up in the process.
>>>> >>>> If this matter is not extremely urgent, we are currently 
working >>>> on a >>>> tool that may make this upgrade easier, 
albeit, maybe, not >>>> completely >>>> automatic.
>>>> >>>> On the other hand, if this is a completely and utterly 
urgent, we >>>> may >>>> try to guide you through possible manual 
attempts to perform the >>>> upgrade. Mind though, that they weren't 
thoroughly 

Re: [Users] Fedora upgrading from 3.1 to 3.2

2013-06-18 Thread Moran Goldboim

On 06/17/2013 02:51 PM, Karli Sjöberg wrote:

mån 2013-06-17 klockan 10:11 +0003 skrev Alex Lourie:

On Fri, Jun 14, 2013 at 12:26 PM, Karli Sjöberg mailto:karli.sjob...@slu.se>>
wrote:
> Hi!
>

Hi Karli,

>
> More than two months have passed without any notices or updates on
> this issue, and looking at the bugreport absolutely nothing has been
> done since then. What´s confusing me is that the release management
> for oVirt 3.2 has this clearly printed:
> "MUST: Upgrade from previous release"
>
> And you all seem too busy with getting the next release out of the
> door before fixing the current... What gives? Don´t you care about
> early adopters?
>

I apologise that this issue wasn't taken care of yet. It is clear that
the priorities of developers shifted towards work on features in 3.3
release, which feature freeze is happening in about 2 weeks, so you can
understand the time pressure they all have. There's no need to be angry
about that. It is an open source project and as resources for the
development are limited, we're trying to do our best to cover as much
issues as possible. This can lead to situations as this issue, which
may be left behind for some time.


I´m not angry, as I stated before, I´m more confused, and maybe a 
little disappointed that important(in my opinion) pieces of a projects 
continuum have been ignored like that. I´m having a hard time 
understanding the reasoning behind the priorities that have made this 
issue appear. In my mind, making sure that users of any project are 
able to follow between minor upgrades is a given, with a schedule 
like; 1) Feature freeze, 2) Fix release blockers (upgrading being one 
of them), 3) Release, in that order. Now what´s happening is that you 
are kind of hoping to drag this out until the problem goes away by 
itself when you decide it´s time to stop supporting 3.1.



That said, the process for upgrading the oVirt 3.1 on Fedora 17 to
oVirt 3.2 on Fedora 18 is complex and non-trivial, that's why it is
taking time to resolve all the issues that come up in the process.

If this matter is not extremely urgent, we are currently working on a
tool that may make this upgrade easier, albeit, maybe, not completely
automatic.

On the other hand, if this is a completely and utterly urgent, we may
try to guide you through possible manual attempts to perform the
upgrade. Mind though, that they weren't thoroughly tested, and not
promised to go smoothly or even work, and we may have to think about
possible alternative solutions on the go.


Straight answer: Am I ever going to be able to upgrade from 3.1 to 3.2?

My concern (fear) is about being left behind, abandoned. It makes me 
feel non-important. Just like any admin, the work put down to make 
Templates, to set up quotas, create VMPools, a dozen of guests. And 
then have to export everything (nullifying the idea of "Thin 
Provisioning"), redo every Role, reset every permission, quota, and so 
on, isn´t (in my opinion) viable in the long run for oVirt as a 
project to demand. That´s why I had the notion that upgrading surely 
had to be a high priority. Was I wrong about that?


upgrade actually was high priority task, but due to lots of platform 
(fedora 18) changes, it became a huge operation to support it (which 
comes on top new features/bugs/support etc.).
in addition we have noticed that the interest from the community 
regarding it, is very limited.


from where i see i we have couple of options:
-if there is enough interest from the community we can give it another 
go (though i think most of it moved long ago to oVirt 3.2)
-we can help individuals by making a migration (3.1->3.2) document on 
fedora base systems- we'll probably need your assistance on testing side 
here






Best regards,
Alex Lourie,
Software Developer in Integration,
RHEV, Red Hat.

>
> Best Regards
> Karli Sjöberg
>
> fre 2013-04-05 klockan 10:24 +0200 skrev Sandro Bonazzola: Hi Karli,
>> we're still working on it
>>
>>
>> Il 02/04/2013 12:22, Karli Sjöberg ha scritto:
>>
>>
>  Hi,
>>>
>>> has there been any progress regarding this matter?
>>>
>>> Best Regards
>>> Karli Sjöberg
>>>
>>> fre 2013-03-15 klockan 14:12 + skrev Karli Sjöberg:
 fre 2013-03-15 klockan 14:59 +0100 skrev Sandro Bonazzola:
> Il 13/03/2013 12:24, Karli Sjöberg ha scritto:
>
>> ons 2013-03-13 klockan 12:00 +0100 skrev Dave Neary: Hi Karli,
>>>
>>> On 03/11/2013 12:16 PM, Karli Sjöberg wrote:
>>> > Hi,
>>> >
>>> > in the absence of any official path,  we have started working
>>> out our own
>>> > procedure for going from oVirt-3.1/Fedora 17 to
>>> oVirt-3.2/Fedora 18.
>>>
>>> Indeed, I have not seen any documentation in the wiki yet on
>>> upgrading
>>> oVirt - would you be interested in writing up your experiences
>>> there as
>>> a guide to others?
>>>
>>> Thanks!
>>> Dave.
>>>
>>>
>>  That was my intention to share a working procedure once it was
>>>

Re: [Users] engine-iso-uploader error

2013-06-01 Thread Moran Goldboim

On 05/31/2013 11:44 AM, Neil wrote:

Hi guys,

I'm running the following RPM versions from the dreyou repo and I've
recently upgraded my engine to 3.2.1 and when I try uploading I was
getting...

ERROR: [ERROR]::key_file, cert_file, ca_file must be specified for SSL
connection.

I googled around and found lots of posts relating to packages needing
to be upgraded, so I upgraded the following...

--> Running transaction check
---> Package ovirt-engine-cli.noarch 0:3.2.0.10-1.el6 will be updated
---> Package ovirt-engine-cli.noarch 0:3.2.0.12-1.el6 will be an update
---> Package ovirt-engine-sdk.noarch 0:3.2.0.9-1.el6 will be updated
---> Package ovirt-engine-sdk.noarch 0:3.2.0.11-1.el6 will be an update
---> Package ovirt-image-uploader.noarch 0:3.1.0-16.el6 will be updated
---> Package ovirt-image-uploader.noarch 0:3.2.0-1.el6 will be an update
---> Package ovirt-iso-uploader.noarch 0:3.1.0-16.el6 will be updated
---> Package ovirt-iso-uploader.noarch 0:3.2.0-1.el6 will be an update
---> Package ovirt-log-collector.noarch 0:3.1.0-16.el6 will be updated
---> Package ovirt-log-collector.noarch 0:3.2.0-1.el6 will be an update

warning: /etc/ovirt-engine/logcollector.conf created as
/etc/ovirt-engine/logcollector.conf.rpmnew
   Updating   : ovirt-iso-uploader-3.2.0-1.el6.noarch

 5/10
warning: /etc/ovirt-engine/isouploader.conf created as
/etc/ovirt-engine/isouploader.conf.rpmnew

I backed up and replaced the older conf files with the rpmnew ones
(above only) too and restarted ovirt once the updates were done, and
instead of the original error, I'm now getting the following error...

[root@backup src]# engine-iso-uploader -i ISO upload
SW_CD_Windows_Svr_Std_2003_R2_32-BIT_X64_English_ISO_32bit_2_MLF_X13-73746.ISO
Please provide the REST API username for oVirt Engine (CTRL+D to abort): admin
Please provide the REST API password for the admin oVirt Engine user
(CTRL+D to abort):
ERROR: Unable to connect to REST API.  Reason: Unauthorized
ERROR: 'NoneType' object is not iterable
INFO: Use the -h option to see usage.

Anyone got any ideas what to try next?

Thank you.

Regards.

Neil Wilson.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Hi Neil,
oVirt 3.2.2 is already out and available @ 
http://resources.ovirt.org/releases/stable/rpm/EL/6/
it sounds like an old bug which we used to have, any chance you can try 
ovirt 3.2.2 official release repo?


Thanks.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt 3.2.1 and clone from snapshot.... argh...!!!

2013-04-28 Thread Moran Goldboim

On 04/25/2013 04:40 PM, Maor Lipchuk wrote:

Hi Gianluca,
I see in that the hash (7612977fbbd3f5ba9ac68cae2fe88a30577ed732) exists
in the branch there for it should get in the next build, Just to be on
the safe side, Moran, can u please re-verify it.

Regards,
Maor


7612977fbbd3f5ba9ac68cae2fe88a30577ed732 is in line for the next ovirt 
maintenance release.
Moran.



On 04/24/2013 07:14 PM, Gianluca Cecchi wrote:

Il giorno 19/mar/2013 17:10, "Maor Lipchuk" mailto:mlipc...@redhat.com>> ha scritto:

FYI, the patch is at http://gerrit.ovirt.org/#/c/13172/

Thanks for your attention,
Maor

On 03/19/2013 05:52 PM, Maor Lipchuk wrote:

Hi Gianluca, I checked the code of 3.2 and you are right, the patch was
not pushed there.
Although it seems that the origin fix exists in 3.2, I will send a patch
to fix that.

Regards,
Maor

On 03/19/2013 05:41 PM, Gianluca Cecchi wrote:

Hello,
in my opinion 3.2.1 for fedora 18 doesn't contain this:
http://gerrit.ovirt.org/#/c/11254/

that was one of the biggest problems of 3.2

see also this thread of mine:
http://lists.ovirt.org/pipermail/users/2013-February/012653.html

I had to recompile 3.2 in the mean time and after update to 3.2.1 I
have again the same problems:
- clone from snapshot blocked white window
- snapshot details pane no information for network and disks

So this update was totally worthless for me and I have to recompile
again 3.2.1
bad!

Gianluca
___
Users mailing list
Users@ovirt.org 
http://lists.ovirt.org/mailman/listinfo/users



___
Users mailing list
Users@ovirt.org 
http://lists.ovirt.org/mailman/listinfo/users




Hello,  I see that 3.2.2 is expected next week.
Are we sure this patch went into?
Any prebuilt rpms I can test against eventually?
It would be a pain having for the third time (after 3.2.0 and 3.2.1)
this feature not available in stock rpm repo and I didn't read anything
blocking it.
I also proposed to include its testing in testing cycle so that it could
arise there before release. ..
Cheers,
Gianluca





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] problem with all-in-one ovirt install on Centos 6.3 related to hostname resolution

2013-03-06 Thread Moran Goldboim

On 03/06/2013 06:12 PM, Frederic Bevia wrote:

Sandro Bonazzola  writes:


Hi Frederic, thanks for your report!
..;

Please run engine-cleanup, engine-setup and check ovirt-engine status if
it fails again.
If it fails, can you please attach your logs?

>
Regards,
Sandro


Hi Sandro,
thanks very much for your answer.
I did run engine-cleanup, engine-setup and check ovirt-engine status and it
failed again. But, meanwhile, to validate my hypothesis on the faulty name
resolution, I installed dnsmasq, a small dns proxy/forwarder, on the same server
(srv-santos.cg33.fr), wich can resolve name from local hosts file and from
upstream DNS.
Then, i re-run engine-setup, and bingo! :-)) no name résolution pbms and no
error on JBoss..
Alas! it failed again  shortly afterwards  with this message:
"could not create ovirtsdk API object"
It seems to be a known bug cf.
"https://bugzilla.redhat.com/show_bug.cgi?id=869457";, fixed in lasts fedora's
packages.. but apprently not in the ovirt-all-in-one packages on Centos 6.
So unless if someone have a solution for this pbm, other than  install ovirt on
a fedora distrib with the last package of course,
i just decided to stay on my centos 6,  uninstall ovirt all-in-one and guive a
try to  a standard engine instal + a standard vdsm install on the same machine
with the regular ovirt packages for centos.

Regards,
Frederic


Hi Federic,

if you just want to have a look at oVirt 3.2, get some experience with 
it or deploy it.
you can try the ovirt-live image[1], just boot it up from a usb and you 
have oVirt 3.2 up and running.

(based on fedora18)

[1]http://wiki.ovirt.org/OVirt_Live


___
Users mailing list
Users  ovirt.org
http://lists.ovirt.org/mailman/listinfo/users





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] engine 3.2 installation issue

2013-02-27 Thread Moran Goldboim

On 02/27/2013 09:56 AM, Gianluca Cecchi wrote:


I found problems too with firewalld in fedora 18.
I got an error if I remember correctly, so I ran again specifying iptables



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


any chance you are hitting [Bug 904153] engine-setup hangs on Firewalld 
config ?
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt 3.2 testday

2013-02-03 Thread Moran Goldboim

removing non-relevant list.

On 02/03/2013 03:37 PM, Moran Goldboim wrote:

Thanks for all the ones participating this day.
we would like to get some feedback from you after testing this beta 
version.

how do you feel with respect to:
-stability - basic flows
-new features
-blocker bugs (should be added to this version tracker [1])

[1] https://bugzilla.redhat.com/show_bug.cgi?id=881006


Thanks,
Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] oVirt 3.2 testday

2013-02-03 Thread Moran Goldboim

Thanks for all the ones participating this day.
we would like to get some feedback from you after testing this beta version.
how do you feel with respect to:
-stability - basic flows
-new features
-blocker bugs (should be added to this version tracker [1])

[1] https://bugzilla.redhat.com/show_bug.cgi?id=881006


Thanks,
Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] [Reminder] oVirt 3.2 test-day is today!!

2013-01-30 Thread Moran Goldboim
Today are having oVirt 3.2 testday - 
http://www.ovirt.org/Testing/OvirtTestDay


you are welcome to take an active part on testing oVirt 3.2 new 
features[1], look around and get a deeper experience with this oVirt 
release.


[1] http://www.ovirt.org/OVirt_3.2_release-management#Features

Moran.


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt 3.2 Release delayed

2013-01-28 Thread Moran Goldboim

On 01/28/2013 08:21 PM, Joop wrote:

Gianluca Cecchi  wrote:



Hello,
I was interested on providing feedack for the test day, but I presume
that no official announcement for beta implies no test day for
tomorrow, correct?
Let me know, please, if I have to allocate some of my time for that
activity.


I was wondering the same, are there any directions for helping out on test day?

Joop




we are planing to delay test day for a couple of days to have all infra 
ready for it.

I'll send all details in a separate mail.

Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] What do you want to see in oVirt next?

2013-01-03 Thread Moran Goldboim

On 01/03/2013 07:42 PM, Darrell Budic wrote:


On Jan 3, 2013, at 10:25 AM, Patrick Hurrelmann wrote:


On 03.01.2013 17:08, Itamar Heim wrote:

Hi Everyone,

as we wrap oVirt 3.2, I wanted to check with oVirt users on what they
find good/useful in oVirt, and what they would like to see
improved/added in coming versions?

Thanks,
   Itamar


For me, I'd like to see official rpms for RHEL6/CentOS6. According to
the traffic on this list quite a lot are using Dreyou's packages.


I'm going to second this strongly! Official support would be very much 
appreciated. Bonus points for supporting a migration from the dreyou 
packages. No offense to dreyou, of course, just rather be better 
supported by the official line on Centos 6.x.


EL6 rpms are planned to be delivered with 3.2 GA version, and nightly 
builds from there on.

hopefully we can push it to 3.2 beta.

Moran.




Better support/integration of windows based SPICE clients would also 
be much appreciated, I have many end users on Windows, and it's been a 
chore to keep it working so far. This includes the client drivers for 
windows VMs to support the SPICE display for multiple displays. More 
of a client side thing, I know, but a desired feature in my environment.


Thanks for the continued progress and support as well!

-
Darrell Budic
Zenfire







___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt Live 0.8 AIO: Adding Local Datacenter and cluster... ERROR

2012-11-28 Thread Moran Goldboim

On 11/26/2012 04:38 PM, Dennis Böck wrote:


Hi OVirt-List,

I started oVirt live 0.8 with auto configuration. At the Point "AIO: 
Adding Local Datacenter and cluster" I get the error message: Could 
not create local datacenter.


Log files are attached.

Does anyone have an idea?

Best regards

Dennis


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


that's a bit odd, looks like you already had a "local" DC in your 
deployment, shouldn't be the case of first boot.

are you booting with it, or it's happening after installation to HD?

Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Ovirt Live 0.8 interactive installer drops back to shell

2012-11-21 Thread Moran Goldboim

On 11/15/2012 01:10 PM, Jorick Astrego wrote:

On 11/15/2012 11:54 AM, Moran Goldboim wrote:

On 11/15/2012 12:15 PM, Jorick Astrego wrote:
We are trying the Ovirt Live iso and when choosing interactive 
installation, I get dropped back to shell with the following error:


--command="sudo /usr/bin/engine-setup";sleep 20
Failed to parse arguments: Argument to "--command/ -e" is not a 
valid command: Text ended before matching quote was found for " . 
(The text was ' " sudo ' )


It appears someone forgot a quote somewhere.



well, you took the road less tested :) , i'll fix it for next release.
in the meanwhile, you can:
-use automatic mode
-run 'sudo engine-setup' from shell, it will run interactive shell 
for installation


as a general note it is recommended to use the (tiny) 
CorePlus-current.iso for demo purposes since all the os (including 
HD) is running from memory.


please let me know how is it going for you.

Moran.
People always tell me to stay on the right path, but I like to walk on 
the grass ;-)


Automatic mode works fine and we did some exploring.

I found another small issue with the Install to harddisk function. 
When I choose "Use all space", the installer crashes. When choosing 
"Replace Existing Linux Partition", the installer works fine.


The CorePlus-current.iso sounds good, but I'm unable to locate it on 
the site. Do I have to compile it?


Jorick




should be on your iso domain already attached to your local domain.
basically create a vm -> change boot order to start from cd -> attach 
core.iso -> start vm

you can install it to disk and play with ovirt functionality

Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Ovirt Live 0.8 interactive installer drops back to shell

2012-11-15 Thread Moran Goldboim

On 11/15/2012 12:15 PM, Jorick Astrego wrote:
We are trying the Ovirt Live iso and when choosing interactive 
installation, I get dropped back to shell with the following error:


--command="sudo /usr/bin/engine-setup";sleep 20
Failed to parse arguments: Argument to "--command/ -e" is not a valid 
command: Text ended before matching quote was found for " . (The text 
was ' " sudo ' )


It appears someone forgot a quote somewhere.



well, you took the road less tested :) , i'll fix it for next release.
in the meanwhile, you can:
-use automatic mode
-run 'sudo engine-setup' from shell, it will run interactive shell for 
installation


as a general note it is recommended to use the (tiny) 
CorePlus-current.iso for demo purposes since all the os (including HD) 
is running from memory.


please let me know how is it going for you.

Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] oVirt-Live-0.8.iso - beta version Nov 15th 2012

2012-11-14 Thread Moran Goldboim


 oVirt-Live-0.8.iso - beta version Nov 15th 2012


   Download

download oVirt-Live-0.8.iso 




   change-log

-mostly changes to make installation work when no Ethernet interface 
connected


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] allinone setup can't add storage

2012-11-07 Thread Moran Goldboim
you are using ovirt-sdk from stable repo and engine from nightly repo, 
those doesn't work together.



On 11/07/2012 01:40 PM, Cristian Falcas wrote:

Hi all,

Can someone help me with this error:

AIO: Adding Local Datacenter and cluster... [ ERROR ]
Error: could not create ovirtsdk API object


trace from the log file

2012-11-07 13:34:44::DEBUG::all_in_one_100::220::root:: Initiating the 
API object
2012-11-07 13:34:44::ERROR::all_in_one_100::231::root:: Traceback 
(most recent call last):
  File "/usr/share/ovirt-engine/scripts/plugins/all_in_one_100.py", 
line 228, in initAPI

ca_file=basedefs.FILE_CA_CRT_SRC,
TypeError: __init__() got an unexpected keyword argument 'ca_file'

2012-11-07 13:34:44::DEBUG::setup_sequences::62::root:: Traceback 
(most recent call last):
  File "/usr/share/ovirt-engine/scripts/setup_sequences.py", line 60, 
in run

function()
  File "/usr/share/ovirt-engine/scripts/plugins/all_in_one_100.py", 
line 232, in initAPI

raise Exception(ERROR_CREATE_API_OBJECT)
Exception: Error: could not create ovirtsdk API object


Versions installed:

ovirt-engine-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-backend-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-cli-3.1.0.6-1.fc17.noarch
ovirt-engine-config-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-dbscripts-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-genericapi-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-notification-service-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-restapi-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-sdk-3.1.0.4-1.fc17.noarch
ovirt-engine-setup-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-setup-plugin-allinone-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-tools-common-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-userportal-3.1.0-3.20121106.git6891171.fc17.noarch
ovirt-engine-webadmin-portal-3.1.0-3.20121106.git6891171.fc17.noarch


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Install on USB stick fails

2012-10-23 Thread Moran Goldboim

On 10/22/2012 01:25 AM, Alexandre Santos wrote:

Hi,
I've been using a 8GB USB stick to boot the oVirt Node but with only 8 
GB i have no swap and less than 1 GB available for log. I bought a 16 
GB but now I can't boot with this one.

It gives 2 warnings:
dracut Warning: Unable to process initqueue
dracut Warning: /dev/mapper/live-rw does not exist

Dropping to debug shell.

dmesg gives the following info:

EXT4-fs (sda2): mounted filessystem without journal. Opts: (null)
then those warnings and the boot stops, going to a dracut shell.

Any ideas?

Alex


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


might be this specific usb dirve.
-try to look here: http://forums.fedoraforum.org/showthread.php?t=281692
-you might try the nested virtualization option - described in the wiki[1]

[1] http://wiki.ovirt.org/wiki/OVirt_Live
Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt-Live-0.7.iso - beta version Oct 23th 2012

2012-10-23 Thread Moran Goldboim

On 10/24/2012 12:11 AM, Jason Brooks wrote:

On 10/23/2012 02:14 PM, Moran Goldboim wrote:

=== oVirt-Live-0.7.iso - beta version Oct 23th 2012 ===

wiki: http://wiki.ovirt.org/wiki/OVirt_Live

 Download 
[http://ovirt.org/releases/3.1/tools/oVirt-Live-0.7.iso download
oVirt-Live-0.7.iso]


Cool, I'll check it out. Might be worth considering making DeltaISOs 
between releases: https://fedoraproject.org/wiki/Delta_ISOs


i'll look into it.


2GB is a big dl, and I imagine there'll be more revs of this.


more revs -yes, there are 2 big iso files contained in it:
-Fedora-17-x86_64-Live-Desktop.iso -645MB - uses for live os on a vm
-ovirt-node-iso-2.5.5-0.1.fc17.iso - 173MB - uses for additional 
installation of a ovirt-node


i think that in the future we can make it more modular.



Also, is the kickstart file this is built from available?


soon to be up on ovirt.org (once v1.0 is out...)
Moran.



Thanks, Jason




 change-log 
-changed wallpapers (thanks Garrett)

-oVirt-setup autostart added

-oVirt-enigne welcome screen (via firefox) after successful setup

-oVirt-setup terminal window stays open after setup (for debug needs)

-Disconnected installs - setup works without outside network connection
(packages wouldn't be updated by vsdm-bootstrap, yum reinstall
vdsm-bootstrap to workaround)

-wlan0 support in vdsm enabled (need someone to test it...)



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] oVirt-Live-0.7.iso - beta version Oct 23th 2012

2012-10-23 Thread Moran Goldboim

=== oVirt-Live-0.7.iso - beta version Oct 23th 2012 ===

wiki: http://wiki.ovirt.org/wiki/OVirt_Live

 Download 
[http://ovirt.org/releases/3.1/tools/oVirt-Live-0.7.iso download 
oVirt-Live-0.7.iso]


 change-log 
-changed wallpapers (thanks Garrett)

-oVirt-setup autostart added

-oVirt-enigne welcome screen (via firefox) after successful setup

-oVirt-setup terminal window stays open after setup (for debug needs)

-Disconnected installs - setup works without outside network connection 
(packages wouldn't be updated by vsdm-bootstrap, yum reinstall 
vdsm-bootstrap to workaround)


-wlan0 support in vdsm enabled (need someone to test it...)



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] oVirt-Live-0.6.iso - alpha version Oct 12th 2012

2012-10-12 Thread Moran Goldboim


 oVirt-Live-0.6.iso - alpha version Oct 12th 2012

wiki: http://wiki.ovirt.org/wiki/OVirt_Live


   Download

download oVirt-Live-0.6.iso 




   change-log

-selinux disabled - workaround to sanlock problem

-added ovirt_live plugin - performs attachment of iso domain to the DC, 
and creating vm with disk and network- thanks to Ofer


-changed ovirt-setup icons

-shorten host installation time by around 4 minutes


 Problems/Bugs

-persistent storage is slow - bigger it gets - slower it does

-currently working with selinux in permissive - problem running vms 
(sanlock)


-ovirt-setup should run as autostart


so a bit more stable version now that actually brings you to a working 
system with vm ready to go (almost) - Thanks to Ofer, and few optimizations.


currently persistent storage is making the system very slow.
i have been starting to look on some FS optimizations, would be nice if 
someone can give a hand here.

some references:
-  http://www.raspberrypi.org/phpBB3/viewtopic.php?f=9&t=850
- 
http://cptl.org/wp/index.php/2010/03/30/tuning-solid-state-drives-in-linux/


Moran.

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Ovirt live USB - aka oVirt on a stick

2012-10-11 Thread Moran Goldboim
well, i think i have something to start playing with, it's still an 
*alpha* version and lots to be done.

go over the wiki [1] and try it out [2].

[1] http://wiki.ovirt.org/wiki/OVirt_Live
[2] http://ovirt.org/releases/3.1/tools/oVirt-Live-0.5.iso

On 09/13/2012 12:55 AM, Moran Goldboim wrote:
In order To improve the ease of installation, we are working on two 
new tools:


1. Fedora oVirt spin

We are planning on integrating oVirt to a live fedora spin[1]

This will simplify the the installation for new users. It will contain 
the oVirt "AllInOne" [2] on top of a Fedora liveCD desktop.
This will allow users to experiment with oVirt before later installing 
it.
The idea is user will install fedora from the CD, then answer the 
questions of the all-in-one setup.



2. Simple demo environment

As a second stage, for simple demo use cases, we want to take this one 
step further.
We'd like to extend this live spin to include a complete environment - 
sample vm/template/iso/node,etc so that a user can boot from a USB 
key  and have a complete environment that's pre-installed and 
configured, this will probably will be done with a script calling one 
of the APIs[3] to create it.


The user would download an image, write it to a USB disk and then boot 
it[4].

the idea is user can copy this iso to a usb disk (or a qcow/vdmk) and
Once booted the user will have a pre-installed, pre-configured oVirt 
Engine, host and local storage domain complete with ISOs, VM and 
template.


any suggestions/help will be appreciated

[1]http://fedoraproject.org/wiki/Spins_Custom
[2]http://wiki.ovirt.org/wiki/Feature/AllInOne
[3]http://wiki.ovirt.org/wiki/CLI  |http://wiki.ovirt.org/wiki/SDK
[4] bare metal or nested virtualization



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt Weekly Meeting Minutes -- 2012-09-19

2012-09-19 Thread Moran Goldboim

On 09/19/2012 06:04 PM, Mike Burns wrote:

Minutes:http://ovirt.org/meetings/ovirt/2012/ovirt.2012-09-19-14.00.html
Minutes (text): http://ovirt.org/meetings/ovirt/2012/ovirt.2012-09-19-14.00.txt
Log:
http://ovirt.org/meetings/ovirt/2012/ovirt.2012-09-19-14.00.log.html

=
#ovirt: oVirt Weekly Sync
=


Meeting started by mburns at 14:00:14 UTC. The full logs are available
at http://ovirt.org/meetings/ovirt/2012/ovirt.2012-09-19-14.00.log.html
.



Meeting summary
---
* agenda and roll call  (mburns, 14:00:22)

* Project Manager Election results  (mburns, 14:02:47)
   * as we were organizing, we decided against the election  (mburns,
 14:03:25)
   * it was agreed that mburns would serve as Project Manager  (mburns,
 14:03:38)
   * and mgoldboi would serve as backup  (mburns, 14:03:49)
   * we'll probably split the role a bit with mgoldboi taking the lead on
 some parts and mburns on others  (mburns, 14:04:35)

* Release Status  (mburns, 14:05:10)
   * Devel freeze currently scheduled for Nov 14  (mburns, 14:05:41)
   * GA currently scheduled for mid Dec  (mburns, 14:06:03)
   * as of right now, the plan is to make the release primarily a bug fix
 and stabilization release  (mburns, 14:06:35)
   * mburns will be working on pulling together feature lists from the
 component maintainers over the next couple weeks  (mburns, 14:07:12)

* subproject status -- Node  (mburns, 14:08:56)
   * still no movement on the nfs issue, though it appears to be
 something to be handled by the vdsm team  (mburns, 14:09:20)
   * mburns working on a centos based node (though not overly close at
 the moment)  (mburns, 14:09:48)
   * team is currently in more of a bug-fix mode than a new feature mode,
 but will have planned features list for 3.2 soon  (mburns, 14:11:07)

* subproject status -- vdsm  (mburns, 14:11:22)
   * nothing to report  (mburns, 14:13:54)

* subproject status -- engine  (mburns, 14:14:04)
   * nothing new to report  (mburns, 14:14:55)

* subproject status -- infra  (mburns, 14:15:08)
   * Infra trying to tie up temporary hosting, Jenkins host turns out to
 be fairly costly need, so I'm collecting the recommendation to see
 if I can get more budget approved for a short term  (quaid,
 14:17:18)
   * we should be able to switch Gerrit over to a better solution under
 the current approved budget spend  (quaid, 14:17:45)
   * Jenkins needs fast IO&  RAID 5 or 10 is expensive under hosting
 solutions  (quaid, 14:19:41)
   * I talked with RHT IT about hosting, that is coming down the pipe
 soon  (quaid, 14:19:57)
   * LINK:
 http://ovirt.org/meetings/ovirt/2012/ovirt.2012-09-18-14.13.html
 (quaid, 14:21:19)

* workshops  (mburns, 14:21:46)
   * for Bangalore workshop, jbrooks dneary quaid have agreed to help
 with surveys  (mburns, 14:24:32)
   * Bangalore split into 2 days, one dev focused, one user focused
 (mburns, 14:24:47)
   * for KVM Forum + oVirt Workshop, jbrooks is working on pre-attendee
 survey  (mburns, 14:25:24)
   * looking for board companies to help spread the word  (mburns,
 14:25:36)
   * lh is stepping into more of a consultant role and attendee outreach
 (mburns, 14:26:28)
   * ACTION: Board companies help spread the word about KVM Forum + oVirt
 (quaid, 14:26:29)
   * Bangalore is currently full  (mburns, 14:26:46)
   * KVM Forum+oVirt is at 25% currently (50 out of 200)  (mburns,
 14:27:40)
   * we need CFP submissions for oVirt Workshop at KVM Forum/LinuxCon
 Europe  (mburns, 14:27:56)
   * workshop at NetApp in planning for January  (mburns, 14:29:45)

* Other Topics  (mburns, 14:30:27)
   * mburns is out for next weeks meeting, mgoldboi will run the meeting
 instead  (mburns, 14:30:49)


just realized that my calender wasn't synced, next wendesday is a 
holly-day in Israel and i wouldn't be able to attend this meeting. we'll 
need to find someone else to run this specific one.

Moran.


* Website  (mburns, 14:31:10)
   * LINK: http://mediawiki-garrett.rhcloud.com/   (garrett_, 14:31:59)
   * LINK: http://mediawiki-garrett.rhcloud.com/   (mburns, 14:32:14)
   * demo version of ovirt.org completely in mediawiki  (mburns,
 14:45:22)
   * some debate about location of search box  (mburns, 14:45:30)
   * works completely with existing wiki content  (mburns, 14:45:50)
   * LINK: http://mediawiki-garrett.rhcloud.com/OVirt_3.1_release_notes ←
 here are the release notes, for example  (garrett_, 14:46:30)
   * plan for deploying this to production is included on the mailing
 lists  (mburns, 14:52:48)
   * please give feedback on site design and plan forward on list
 (mburns, 14:53:10)
   * LINK:
 http://lists.ovirt.org/pipermail/infra/2012-September/001112.html
 (mburns, 14:54:10)
   * LINK:
 http://lists.ovirt.org/pipermail/arch/2012-September/000908.html
 (dneary, 14:54:42)
   * ACTION: qua

[Users] Ovirt live USB - aka oVirt on a stick

2012-09-12 Thread Moran Goldboim

In order To improve the ease of installation, we are working on two new tools:

1. Fedora oVirt spin

We are planning on integrating oVirt to a live fedora spin[1]

This will simplify the the installation for new users. It will contain the oVirt 
"AllInOne" [2] on top of a Fedora liveCD desktop.
This will allow users to experiment with oVirt before later installing it.
The idea is user will install fedora from the CD, then answer the questions of 
the all-in-one setup.


2. Simple demo environment

As a second stage, for simple demo use cases, we want to take this one step 
further.
We'd like to extend this live spin to include a complete environment - sample 
vm/template/iso/node,etc so that a user can boot from a USB key  and have a 
complete environment that's pre-installed and configured, this will probably 
will be done with a script calling one of the APIs[3] to create it.

The user would download an image, write it to a USB disk and then boot it[4].
the idea is user can copy this iso to a usb disk (or a qcow/vdmk) and
Once booted the user will have a pre-installed, pre-configured oVirt Engine, 
host and local storage domain complete with ISOs, VM and template.

any suggestions/help will be appreciated

[1]http://fedoraproject.org/wiki/Spins_Custom
[2]http://wiki.ovirt.org/wiki/Feature/AllInOne
[3]http://wiki.ovirt.org/wiki/CLI  |http://wiki.ovirt.org/wiki/SDK
[4] bare metal or nested virtualization

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] creating and running a vm fails

2012-03-29 Thread Moran Goldboim
,737::resourceManager::486::ResourceManager::(registerResource) Trying 
to register resource 'Storage.13080edc-77ea-11e1-b6a4-525400c49d2a' for lock 
type 'shared'
Thread-55028::DEBUG::2012-03-29 
09:51:22,739::resourceManager::528::ResourceManager::(registerResource) 
Resource 'Storage.13080edc-77ea-11e1-b6a4-525400c49d2a' is free. Now locking as 
'shared' (1 active user)
Thread-55028::DEBUG::2012-03-29 
09:51:22,741::resourceManager::212::ResourceManager.Request::(grant) 
ResName=`Storage.13080edc-77ea-11e1-b6a4-525400c49d2a`ReqID=`8e695a8f-e8b2-4ab6-a464-4447e37f0fe5`::Granted
 request
Thread-55028::DEBUG::2012-03-29 
09:51:22,743::task::817::TaskManager.Task::(resourceAcquired) 
Task=`22afe74b-e4a8-421b-84b3-6c9295dce788`::_resourcesAcquired: 
Storage.13080edc-77ea-11e1-b6a4-525400c49d2a (shared)
Thread-55028::DEBUG::2012-03-29 
09:51:22,745::task::978::TaskManager.Task::(_decref) 
Task=`22afe74b-e4a8-421b-84b3-6c9295dce788`::ref 1 aborting False
Thread-55028::INFO::2012-03-29 
09:51:22,752::logUtils::39::dispatcher::(wrapper) Run and protect: 
getStoragePoolInfo, Return response: {'info': {'spm_id': 1, 'master_uuid': 
'8ed25a57-f53a-4cf0-bb92-781f3ce36a48', 'name': 'Default', 'version': '2', 
'domains': 
u'93e2079e-ef3b-452f-af71-5b3e7eb32ba0:Active,bb13e29f-0e5a-4f79-8bf2-f235a0dbd515:Active,8ed25a57-f53a-4cf0-bb92-781f3ce36a48:Active',
 'pool_status': 'connected', 'isoprefix': 
u'/rhev/data-center/13080edc-77ea-11e1-b6a4-525400c49d2a/93e2079e-ef3b-452f-af71-5b3e7eb32ba0/images/----',
 'type': 'ISCSI', 'master_ver': 1, 'lver': 1}, 'dominfo': 
{u'93e2079e-ef3b-452f-af71-5b3e7eb32ba0': {'status': u'Active', 'diskfree': 
'235838373888', 'alerts': [], 'disktotal': '257822818304'}, 
u'8ed25a57-f53a-4cf0-bb92-781f3ce36a48': {'status': u'Active', 'diskfree': 
'2141846503424', 'alerts': [], 'disktotal': '2147080994816'}, 
u'bb13e29f-0e5a-4f79-8bf2-f235a0dbd515': {'status': u'Active', 'diskfree': 
'5267626524672', 'alerts': [], 'disktotal': '5902284816384'}}}
Thread-55028::DEBUG::2012-03-29 
09:51:22,753::task::1172::TaskManager.Task::(prepare) 
Task=`22afe74b-e4a8-421b-84b3-6c9295dce788`::finished: {'info': {'spm_id': 1, 
'master_uuid': '8ed25a57-f53a-4cf0-bb92-781f3ce36a48', 'name': 'Default', 
'version': '2', 'domains': 
u'93e2079e-ef3b-452f-af71-5b3e7eb32ba0:Active,bb13e29f-0e5a-4f79-8bf2-f235a0dbd515:Active,8ed25a57-f53a-4cf0-bb92-781f3ce36a48:Active',
 'pool_status': 'connected', 'isoprefix': 
u'/rhev/data-center/13080edc-77ea-11e1-b6a4-525400c49d2a/93e2079e-ef3b-452f-af71-5b3e7eb32ba0/images/----',
 'type': 'ISCSI', 'master_ver': 1, 'lver': 1}, 'dominfo': 
{u'93e2079e-ef3b-452f-af71-5b3e7eb32ba0': {'status': u'Active', 'diskfree': 
'235838373888', 'alerts': [], 'disktotal': '257822818304'}, 
u'8ed25a57-f53a-4cf0-bb92-781f3ce36a48': {'status': u'Active', 'diskfree': 
'2141846503424', 'alerts': [], 'disktotal': '2147080994816'}, 
u'bb13e29f-0e5a-4f79-8bf2-f235a0dbd515': {'status': u'Active', 'diskfree': 
'5267626524672', 'alerts': [], 'disktotal': '5902284816384'}}}
Thread-55028::DEBUG::2012-03-29 
09:51:22,756::task::588::TaskManager.Task::(_updateState) 
Task=`22afe74b-e4a8-421b-84b3-6c9295dce788`::moving from state preparing ->  
state finished
Thread-55028::DEBUG::2012-03-29 
09:51:22,757::resourceManager::809::ResourceManager.Owner::(releaseAll) 
Owner.releaseAll requests {} resources 
{'Storage.13080edc-77ea-11e1-b6a4-525400c49d2a':<  ResourceRef 
'Storage.13080edc-77ea-11e1-b6a4-525400c49d2a', isValid: 'True' obj: 'None'>}
Thread-55028::DEBUG::2012-03-29 
09:51:22,759::resourceManager::844::ResourceManager.Owner::(cancelAll) 
Owner.cancelAll requests {}
Thread-55028::DEBUG::2012-03-29 
09:51:22,761::resourceManager::538::ResourceManager::(releaseResource) Trying 
to release resource 'Storage.13080edc-77ea-11e1-b6a4-525400c49d2a'
Thread-55028::DEBUG::2012-03-29 
09:51:22,763::resourceManager::553::ResourceManager::(releaseResource) Released 
resource 'Storage.13080edc-77ea-11e1-b6a4-525400c49d

Re: [Users] creating and running a vm fails

2012-03-29 Thread Moran Goldboim
I suspect something happened to vdsm - can you attach vdsm logs 
(/var/log/vdsm/vdsm.log) from that time and maybe sneak a pick at 
/var/log/core if we have something there.

Moran.

On 03/29/2012 08:07 AM, Rene Rosenberger wrote:

Hi,

the host on which the vm should run is up. It has a green arrow.

Regards, rene


-Ursprüngliche Nachricht-
Von: Itamar Heim [mailto:ih...@redhat.com]
Gesendet: Mittwoch, 28. März 2012 22:07
An: Rene Rosenberger
Cc: users@oVirt.org
Betreff: Re: [Users] creating and running a vm fails

On 03/28/2012 02:33 PM, Rene Rosenberger wrote:

Hi,

when i create a VM with it virtual disk and i want to run it once to
install from imported iso file I get the following error message:

2012-03-28 14:31:35,488
INFO[org.ovirt.engine.core.vdsbroker.CreateVmVDSCommand]
(http--0.0.0.0-8443-5) [cf5d84e] START, CreateVmVDSCommand(vdsId =
0e0403a4-78ae-11e1-9c19-525400c49d2a,
vmId=93220e0a-610a-4b20-986e-3c8b0d39e35f,
vm=org.ovirt.engine.core.common.businessentities.VM@6e69e491), log id:
3fc82aad

2012-03-28 14:31:35,498
INFO[org.ovirt.engine.core.vdsbroker.vdsbroker.CreateVDSCommand]
(http--0.0.0.0-8443-5) [cf5d84e] START, CreateVDSCommand(vdsId =
0e0403a4-78ae-11e1-9c19-525400c49d2a,
vmId=93220e0a-610a-4b20-986e-3c8b0d39e35f,
vm=org.ovirt.engine.core.common.businessentities.VM@6e69e491), log id:
7e63d56b

2012-03-28 14:31:35,620
INFO[org.ovirt.engine.core.vdsbroker.vdsbroker.CreateVDSCommand]
(http--0.0.0.0-8443-5) [cf5d84e]
org.ovirt.engine.core.vdsbroker.vdsbroker.CreateVDSCommand
spiceSslCipherSuite=DEFAULT,memSize=512,kvmEnable=true,boot=dc,smp=1,e
mulatedMachine=pc-0.14,vmType=kvm,keyboardLayout=en-us,pitReinjection=
false,nice=0,display=vnc,tabletEnable=true,smpCoresPerSocket=1,spiceSe
cureChannels=,spiceMonitors=1,cdrom=/rhev/data-center/13080edc-77ea-11
e1-b6a4-525400c49d2a/93e2079e-ef3b-452f-af71-5b3e7eb32ba0/images/1
111----/CentOS-6.2-x86_64-bin-DVD1.iso,timeOff
set=0,transparentHugePages=true,drives=[Ljava.util.Map;@7f0ba1c1,vmId=
93220e0a-610a-4b20-986e-3c8b0d39e35f,acpiEnable=true,vmName=test,cpuTy
pe=Opteron_G3,custom={}

2012-03-28 14:31:35,620
INFO[org.ovirt.engine.core.vdsbroker.vdsbroker.CreateVDSCommand]
(http--0.0.0.0-8443-5) [cf5d84e] FINISH, CreateVDSCommand, log id:
7e63d56b

2012-03-28 14:31:35,625
INFO[org.ovirt.engine.core.vdsbroker.CreateVmVDSCommand]
(http--0.0.0.0-8443-5) [cf5d84e]
IncreasePendingVms::CreateVmIncreasing
vds KVM-DMZ-04 pending vcpu count, now 1. Vm: test

2012-03-28 14:31:35,631
INFO[org.ovirt.engine.core.vdsbroker.CreateVmVDSCommand]
(http--0.0.0.0-8443-5) [cf5d84e] FINISH, CreateVmVDSCommand, return:
WaitForLaunch, log id: 3fc82aad

2012-03-28 14:31:39,316
WARN[org.ovirt.engine.core.vdsbroker.VdsManager]
(QuartzScheduler_Worker-35)
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
0e0403a4-78ae-11e1-9c19-525400c49d2a : KVM-DMZ-04, VDS Network Error,
continuing.

VDSNetworkException:

2012-03-28 14:31:41,328
WARN[org.ovirt.engine.core.vdsbroker.VdsManager]
(QuartzScheduler_Worker-29)
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
0e0403a4-78ae-11e1-9c19-525400c49d2a : KVM-DMZ-04, VDS Network Error,
continuing.

VDSNetworkException:

2012-03-28 14:31:43,340
WARN[org.ovirt.engine.core.vdsbroker.VdsManager]
(QuartzScheduler_Worker-45)
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
0e0403a4-78ae-11e1-9c19-525400c49d2a : KVM-DMZ-04, VDS Network Error,
continuing.

VDSNetworkException:

2012-03-28 14:31:43,519
INFO[org.ovirt.engine.core.bll.storage.SetStoragePoolStatusCommand]
(QuartzScheduler_Worker-38) [7ed2f412] Running command:
SetStoragePoolStatusCommand internal: true. Entities affected :ID:
13080edc-77ea-11e1-b6a4-525400c49d2a Type: StoragePool

2012-03-28 14:31:43,543 ERROR
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(QuartzScheduler_Worker-38) [7ed2f412]
IrsBroker::Failed::GetStoragePoolInfoVDS due to: ConnectException:
Connection refused

2012-03-28 14:31:45,351
WARN[org.ovirt.engine.core.vdsbroker.VdsManager]
(QuartzScheduler_Worker-47)
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
0e0403a4-78ae-11e1-9c19-525400c49d2a : KVM-DMZ-04, VDS Network Error,
continuing.

VDSNetworkException:

2012-03-28 14:31:47,363
WARN[org.ovirt.engine.core.vdsbroker.VdsManager]
(QuartzScheduler_Worker-71)
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
0e0403a4-78ae-11e1-9c19-525400c49d2a : KVM-DMZ-04, VDS Network Error,
continuing.

VDSNetworkException:

2012-03-28 14:31:51,091
INFO[org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo]
(QuartzScheduler_Worker-55) vm test running in db and not running in
vds
- add to rerun treatment. vds KVM-DMZ-04

2012-03-28 14:31:51,104
INFO[org.ovirt.engine.core.bll.InitVdsOnUpCommand]
(QuartzScheduler_Worker-55) [6df61eca] Running command:
InitVdsOnUpCommand internal: true.

2012-03-28 14:31:51,182
INFO[org.ovirt.engine.core.bll.storage.ConnectHostToStoragePoolServ

Re: [Users] nfs storage domain problems

2012-03-27 Thread Moran Goldboim

On 03/26/2012 04:46 PM, Shu Ming wrote:
Is it a master data domain? Does you mean you can not remove the data 
domain from oVirt engine?  It seems that you removed all the meta data 
there, that will make oVirt engine broken. Maybe you need to cleanup 
the engine database.

On 2012-3-26 18:20, Rene Rosenberger wrote:


Hi,

ihave set up an nfs export storage domain under /mnt/nfsexport. Then 
I deleted all folder in there and now it is not longer initialized LI 
also cant remove it. What can I do to get it working again?




-right click on it (storage tab) -> destroy. this will remove it from 
engine db.

-make sure the path is clean
-reconfigure it in ovirt engine.
Moran.


Regards,



___
Users mailing list
Users@ovirt.org  
http://lists.ovirt.org/mailman/listinfo/users



--
Shu Ming  
IBM China Systems and Technology Laboratory


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] VDS Exception in log file

2012-03-26 Thread Moran Goldboim

On 03/26/2012 02:39 PM, Rene Rosenberger wrote:


Hi,

in my logfile i have the following error messages:

org.ovirt.engine.core.vdsbroker.vdsbroker.VDSInfoReturnForXmlRpc@7fecdc36 
 



2012-03-26 14:30:48,897 
INFO[org.ovirt.engine.core.vdsbroker.vdsbroker.BrokerCommandBase] 
(QuartzScheduler_Worker-65) Vds: KVM-DMZ-04


2012-03-26 14:30:48,898 ERROR 
[org.ovirt.engine.core.vdsbroker.VDSCommandBase] 
(QuartzScheduler_Worker-65) Command GetCapabilitiesVDS execution 
failed. Exception: VDSErrorException: VDSGenericException: 
VDSErrorException: Failed to GetCapabilitiesVDS, error = Unexpected 
exception


2012-03-26 14:30:48,996 
WARN[org.ovirt.engine.core.vdsbroker.VdsManager] 
(QuartzScheduler_Worker-65) 
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds = 
5a4af34a-770e-11e1-98fb-1b813bbe4e6a : KVM-DMZ-04, error = 
VDSErrorException: VDSGenericException: VDSErrorException: Failed to 
GetCapabilitiesVDS, error = Unexpected exception, continuing.


2012-03-26 14:30:48,997 ERROR 
[org.ovirt.engine.core.vdsbroker.VdsManager] 
(QuartzScheduler_Worker-65) ResourceManager::refreshVdsRunTimeInfo: 
org.ovirt.engine.core.vdsbroker.vdsbroker.VDSErrorException: 
VDSGenericException: VDSErrorException: Failed to GetCapabilitiesVDS, 
error = Unexpected exception


at 
org.ovirt.engine.core.vdsbroker.vdsbroker.BrokerCommandBase.ProceedProxyReturnValue(BrokerCommandBase.java:189) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.vdsbroker.GetCapabilitiesVDSCommand.ExecuteVdsBrokerCommand(GetCapabilitiesVDSCommand.java:21) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.vdsbroker.VdsBrokerCommand.ExecuteVDSCommand(VdsBrokerCommand.java:75) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.VDSCommandBase.ExecuteCommand(VDSCommandBase.java:60) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.dal.VdcCommandBase.Execute(VdcCommandBase.java:41) 
[engine-dal.jar:]


at 
org.ovirt.engine.core.vdsbroker.VdsManager.refreshCapabilities(VdsManager.java:550) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo.beforeFirstRefreshTreatment(VdsUpdateRunTimeInfo.java:752) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo.refreshVdsRunTimeInfo(VdsUpdateRunTimeInfo.java:420) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo.Refresh(VdsUpdateRunTimeInfo.java:256) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.vdsbroker.VdsManager$1.runInTransaction(VdsManager.java:237) 
[vdsbroker-3.1.0-0001.jar:]


at 
org.ovirt.engine.core.utils.transaction.TransactionSupport.executeInSuppressed(TransactionSupport.java:168) 
[engine-utils.jar:]


at 
org.ovirt.engine.core.utils.transaction.TransactionSupport.executeInScope(TransactionSupport.java:107) 
[engine-utils.jar:]


at 
org.ovirt.engine.core.vdsbroker.VdsManager.OnTimer(VdsManager.java:218) [vdsbroker-3.1.0-0001.jar:] 



at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source) 
[:1.6.0_22]


at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
[:1.6.0_22]


at java.lang.reflect.Method.invoke(Method.java:616) [:1.6.0_22]

at 
org.ovirt.engine.core.utils.timer.JobWrapper.execute(JobWrapper.java:64) 
[engine-scheduler.jar:]


at org.quartz.core.JobRunShell.run(JobRunShell.java:216) 
[quartz-1.8.3.jar:]


at 
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:549) 
[quartz-1.8.3.jar:]


what can I do to get rid of these messages? What do I have to fix?

Regards, rene


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users



you probably have a non-responsive host in your system (no communication 
engine-vdsm) - put it into maintenance and the engine will stop trying 
to sample it.

Moran.

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Vm is in a "Image locked" status

2012-03-14 Thread Moran Goldboim

On 03/14/2012 05:20 PM, Michel van Horssen wrote:

Hi,

Mentioned it before on the Node list but am trying it here as well.

Somehow by stopping and starting stuff, hosts, vm's etc. I ended up with a VM that is in 
an "Image locked" state.

The host (VDSM) the engine reports it's running on is active the storage 
doesn't have a disk for this vm, which it had when I installed it.

This all happened when a migrate went wrong.

My question is how to destroy this vm. It's just a test so I don't mind killing 
it, question is how.

Thnx,

Michel
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users
Michel, can you please open a bug and attach vdsm+ovirt logs when the 
problem happened.

Make sure it's not running on each of the hosts.
try to run : psql  engine -c "SELECT * from vm_static where vm_name 
ilike 'xxx';"
get the vm_guid from it and run: psql  engine -c "update vm_dynamic SET 
status=0 where vm_guid='xxx-xxx-xxx';"


Moran.

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] can not use a standard data domain

2012-03-13 Thread Moran Goldboim


On 03/12/2012 07:47 PM, Dominic Kaiser wrote:
I noticed permisions on files in the that folder are saying group # 96 
what is the 96 group and should it be kvm?  On the /mnt folder should 
the files read owner:vdsm group:kvm on all files?




Yes, user and group should be vdsm:kvm (36:36) on all "/rhev" tree.
Moran.


Dominic

On Mon, Mar 12, 2012 at 10:49 AM, Dominic Kaiser 
mailto:domi...@bostonvineyard.org>> wrote:


Hello Moran,

Thanks for responding.

Here is output you asked for and I have selinux disabled on this host:

ls -lZh c10c25e0-526a-11e1-a5e4-87fa674ffb5d/
lrwxrwxrwx vdsm kvm ?  
 095fcd9d-6203-496f-b254-7a9eafaa8ac2 ->


/rhev/data-center/mnt/10.3.0.248:_mnt_mainstorage_mainstorage_MainStorage_ISO/095fcd9d-6203-496f-b254-7a9eafaa8ac2
lrwxrwxrwx vdsm kvm ?  
 14308dd8-1fd1-452c-a288-2f975ef31de1 ->


/rhev/data-center/mnt/_var_lib_vdsm_storage/14308dd8-1fd1-452c-a288-2f975ef31de1
lrwxrwxrwx vdsm kvm ?  
 340dad49-2ec7-475e-b6c6-668504bdb5b1 ->


/rhev/data-center/mnt/10.3.0.248:_mnt_mainstorage_mainstorage_MainStorage_MS/340dad49-2ec7-475e-b6c6-668504bdb5b1
lrwxrwxrwx vdsm kvm ?  
 651cb693-3ffa-43b6-ab49-43cfb03d179b ->


/rhev/data-center/mnt/ruth.bostonvineyard.org:_mnt_ruthstorage1_mainstorage_data/651cb693-3ffa-43b6-ab49-43cfb03d179b
lrwxrwxrwx vdsm kvm ?  
 bcc2d564-2daa-45ae-990b-0d27a17e47e0 ->


/rhev/data-center/mnt/10.3.0.248:_mnt_mainstorage_mainstorage_MainStorage_Export/bcc2d564-2daa-45ae-990b-0d27a17e47e0
lrwxrwxrwx vdsm kvm ?mastersd ->

/rhev/data-center/mnt/10.3.0.248:_mnt_mainstorage_mainstorage_MainStorage_MS/340dad49-2ec7-475e-b6c6-668504bdb5b1

The one I am having the problem with is the one in red.  It is an
openfiler server called ruth.  I can add it just fine create disks
but cannot start a VM.  It is weird.  Again it is a NFS datacenter
this is a data domain not master data domain.

Thanks,

Dominic


    On Sun, Mar 11, 2012 at 4:20 AM, Moran Goldboim
mailto:mgold...@redhat.com>> wrote:

On 03/10/2012 01:26 AM, Dominic Kaiser wrote:

Here is the error I am getting:

VM fs1 is down. Exit message internal error process exited
while connecting to monitor: qemu-kvm: -drive

file=/rhev/data-center/c10c25e0-526a-11e1-a5e4-87fa674ffb5d/651cb693-3ffa-43b6-ab49-43cfb03d179b/images/7fa8a2e7-214e-4081-9f1f-f78c88b2f96e/49c199b6-cbda-4aa0-9b50-e3dc28341e09,if=none,id=drive-virtio-disk0,format=raw,serial=81-9f1f-f78c88b2f96e,cache=none,werror=stop,rerror=stop,aio=threads:
could not open disk image

/rhev/data-center/c10c25e0-526a-11e1-a5e4-87fa674ffb5d/651cb693-3ffa-43b6-ab49-43cfb03d179b/images/7fa8a2e7-214e-4081-9f1f-f78c88b2f96e/49c199b6-cbda-4aa0-9b50-e3dc28341e09:
Permission denied .

I can add the domain fine.  it is not the master domain and
it is another node. I can create virtual disks but cannot
start vm's.  I saw a post on google that mentions nfs=0 not
nfs=1 i think it was in /usr/sbin/senforce maybe?  Does
anyone recollect this problem and can help me?  Again this is
on a separate node and is a standard data domain  not master.

Thanks,

-- 
Dominic Kaiser

Greater Boston Vineyard
Director of Operations

cell: 617-230-1412 
fax: 617-252-0238 
email: domi...@bostonvineyard.org
<mailto:domi...@bostonvineyard.org>



___
Users mailing list
Users@ovirt.org  <mailto:Users@ovirt.org>
http://lists.ovirt.org/mailman/listinfo/users

Dominic, sounds like you have some permission problem with the
image, can you try with selinux in permissive mode -
"/usr/sbin/setenforce 0"
can you please add the output of "ls -lZh

/rhev/data-center/c10c25e0-526a-11e1-a5e4-87fa674ffb5d/651cb693-3ffa-43b6-ab49-43cfb03d179b/images/7fa8a2e7-214e-4081-9f1f-f78c88b2f96e/49c199b6-cbda-4aa0-9b50-e3dc28341e09"

Moran.




-- 
Dominic Kaiser

Greater Boston Vineyard
Director of Operations

cell: 617-230-1412 
fax: 617-252-0238 
email: domi...@bostonvineyard.org <mailto:domi...@bostonvineyard.org>





--
Dominic Kaiser
Greater Boston Vineyard
Director of Operations

cell: 617-230-1412
fax: 617-252-0238
email: domi...@bostonvineyard.org <mailto:domi...@bostonvineyard.org>




___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] accessing console from firefox.

2012-03-12 Thread Moran Goldboim
Kumar, you are running ovirt (upstream) with rhel hosts and not fadora, 
emulated machine doesn't match the host capabilities, either run it on 
fedora or change the emulated machine value on the database, some 
functionality may be hurt and it's not really supported.

in general ovirt is meant to work with fedora hosts.

Moran.

On 03/12/2012 10:01 AM, kumar shantanu wrote:

Hi Moran.

Thanks for the reply when I try starting vm I can see error in vdsm logs.
Below is the libvirt and vdsm logs.

***
==> libvirt.log <==
13:26:55.967: 6259: debug : virDomainCreateXML:1817 : 
conn=0x7f316801af10, xmlDesc=


Ubuntu
bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16
524288
524288
1



path="/var/lib/libvirt/qemu/channels/Ubuntu.com.redhat.rhevm.vdsm"/>






passwdValidTo="1970-01-01T00:00:01" port="-1" tlsPort="-1" type="spice">


















file="/rhev/data-center/9c3672b4-69e6-11e1-90e5-cf93ece78b91/baa61d41-f111-4a24-a6ed-e643f12833f8/images/559ede25-e21b-4970-b7ef-4731ed95073e/7bc4ca54-f584-4977-9b34-a620165fc329"/>


559ede25-e21b-4970-b7ef-4731ed95073e
type="raw"/>



file="/rhev/data-center/9c3672b4-69e6-11e1-90e5-cf93ece78b91/4d313edd-4904-44de-b761-d828c36d6116/images/----/ubuntu-10.04.3-desktop-amd64.iso"/>






hvm







Red Hat
RHEV Hypervisor
6-2.el6.centos.7
name="serial">4C4C4544-005A-5A10-8052-C8C04F575131_D0:67:E5:1B:04:79

bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16









Westmere



, flags=0
13:26:56.339: 6259: error : virNetClientProgramDispatchError:170 : 
internal error Process exited while reading console log output: 
Supported machines are:

pc RHEL 6.2.0 PC (alias of rhel6.2.0)
rhel6.2.0  RHEL 6.2.0 PC (default)
rhel6.1.0  RHEL 6.1.0 PC
rhel6.0.0  RHEL 6.0.0 PC
rhel5.5.0  RHEL 5.5.0 PC
rhel5.4.4  RHEL 5.4.4 PC
rhel5.4.0  RHEL 5.4.0 PC


==> vdsm.log <==
Thread-179874::DEBUG::2012-03-12 
13:26:56,339::vm::577::vm.Vm::(_startUnderlyingVm) 
vmId=`bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16`::_ongoingCreations released
Thread-179874::ERROR::2012-03-12 
13:26:56,340::vm::601::vm.Vm::(_startUnderlyingVm) 
vmId=`bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16`::The vm start process failed

Traceback (most recent call last):
  File "/usr/share/vdsm/vm.py", line 567, in _startUnderlyingVm
self._run()
  File "/usr/share/vdsm/libvirtvm.py", line 1306, in _run
self._connection.createXML(domxml, flags),
  File "/usr/share/vdsm/libvirtconnection.py", line 82, in wrapper
ret = f(*args, **kwargs)
  File "/usr/lib64/python2.6/site-packages/libvirt.py", line 2087, in 
createXML
if ret is None:raise libvirtError('virDomainCreateXML() failed', 
conn=self)
libvirtError: internal error Process exited while reading console log 
output: Supported machines are:

pc RHEL 6.2.0 PC (alias of rhel6.2.0)
rhel6.2.0  RHEL 6.2.0 PC (default)
rhel6.1.0  RHEL 6.1.0 PC
rhel6.0.0  RHEL 6.0.0 PC
rhel5.5.0  RHEL 5.5.0 PC
rhel5.4.4  RHEL 5.4.4 PC
rhel5.4.0  RHEL 5.4.0 PC

Thread-179874::DEBUG::2012-03-12 
13:26:56,341::vm::919::vm.Vm::(setDownStatus) 
vmId=`bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16`::Changed state to Down: 
internal error Process exited while reading console log output: 
Supported machines are:

pc RHEL 6.2.0 PC (alias of rhel6.2.0)
rhel6.2.0  RHEL 6.2.0 PC (default)
rhel6.1.0  RHEL 6.1.0 PC
rhel6.0.0  RHEL 6.0.0 PC
rhel5.5.0  RHEL 5.5.0 PC
rhel5.4.4  RHEL 5.4.4 PC
rhel5.4.0  RHEL 5.4.0 PC

Thread-179877::DEBUG::2012-03-12 
13:26:57,366::BindingXMLRPC::857::vds::(wrapper) client 
[210.7.64.47]::call vmGetStats with 
('bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16',) {}
Thread-179877::DEBUG::2012-03-12 
13:26:57,367::BindingXMLRPC::863::vds::(wrapper) return vmGetStats 
with {'status': {'message': 'Done', 'code': 0}, 'statsList': 
[{'status': 'Down', 'hash': '0', 'exitMessage': 'internal error 
Process exited while reading console log output: Supported machines 
are:\npc RHEL 6.2.0 PC (alias of rhel6.2.0)\nrhel6.2.0  RHEL 
6.2.0 PC (default)\nrhel6.1.0  RHEL 6.1.0 PC\nrhel6.0.0  RHEL 6.0.0 
PC\nrhel5.5.0  RHEL 5.5.0 PC\nrhel5.4.4  RHEL 5.4.4 PC\nrhel5.4.0  
RHEL 5.4.0 PC\n', 'vmId': 'bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16', 
'timeOffset': '0', 'exitCode': 1}]}


**




On Sun, Mar 11, 2012 at 3:21 PM, Moran Goldboim <mailto:mgold...@redhat.com>> wrote:


Kumar, looks like you have a problem with this vm run itself (vm
Ubuntu running in db and not running in vds), can you please
attach vdsm logs from running host.
I think libvirt has some problems running with cpuType=Westmere,,
try you lower your level of cpu in the cluster to Nehalem and see
  

Re: [Users] accessing console from firefox.

2012-03-11 Thread Moran Goldboim
Kumar, looks like you have a problem with this vm run itself (vm Ubuntu 
running in db and not running in vds), can you please attach vdsm logs 
from running host.
I think libvirt has some problems running with cpuType=Westmere,, try 
you lower your level of cpu in the cluster to Nehalem and see if it helps.


Moran.

On 03/09/2012 06:55 PM, kumar shantanu wrote:

Just to add , I am getting these error message in ovirt engine log.

2012-03-09 22:18:55,228 INFO  
[org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo] 
(QuartzScheduler_Worker-42) Running on vds during rerun failed vm: null
2012-03-09 22:18:55,232 INFO  
[org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo] 
(QuartzScheduler_Worker-42) vm Ubuntu running in db and not running in 
vds - add to rerun treatment. vds Local
2012-03-09 22:18:55,253 ERROR 
[org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo] 
(QuartzScheduler_Worker-42) Rerun vm 
bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16. Called from vds Local
2012-03-09 22:18:55,257 INFO  
[org.ovirt.engine.core.vdsbroker.UpdateVdsDynamicDataVDSCommand] 
(pool-5-thread-50) START, UpdateVdsDynamicDataVDSCommand(vdsId = 
2d40ef8c-69e7-11e1-8c9c-27e55c9bdd2f, 
vdsDynamic=org.ovirt.engine.core.common.businessentities.VdsDynamic@ab1ce897), 
log id: 6b59dd0c
2012-03-09 22:18:55,262 INFO  
[org.ovirt.engine.core.vdsbroker.UpdateVdsDynamicDataVDSCommand] 
(pool-5-thread-50) FINISH, UpdateVdsDynamicDataVDSCommand, log id: 
6b59dd0c
2012-03-09 22:18:55,285 INFO  
[org.ovirt.engine.core.vdsbroker.irsbroker.IsValidVDSCommand] 
(pool-5-thread-50) START, IsValidVDSCommand(storagePoolId = 
9c3672b4-69e6-11e1-90e5-cf93ece78b91, ignoreFailoverLimit = false, 
compatabilityVersion = null), log id: 6d43f31
2012-03-09 22:18:55,287 INFO  
[org.ovirt.engine.core.vdsbroker.irsbroker.IsValidVDSCommand] 
(pool-5-thread-50) FINISH, IsValidVDSCommand, return: true, log id: 
6d43f31
2012-03-09 22:18:55,339 INFO  
[org.ovirt.engine.core.vdsbroker.IsVmDuringInitiatingVDSCommand] 
(pool-5-thread-50) START, IsVmDuringInitiatingVDSCommand(vmId = 
bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16), log id: 76e8162b
2012-03-09 22:18:55,340 INFO  
[org.ovirt.engine.core.vdsbroker.IsVmDuringInitiatingVDSCommand] 
(pool-5-thread-50) FINISH, IsVmDuringInitiatingVDSCommand, return: 
false, log id: 76e8162b
2012-03-09 22:18:55,342 WARN  
[org.ovirt.engine.core.bll.RunVmOnceCommand] (pool-5-thread-50) 
CanDoAction of action RunVmOnce failed. 
Reasons:VAR__ACTION__RUN,VAR__TYPE__VM,VAR__ACTION__RUN,VAR__TYPE__VM,ACTION_TYPE_FAILED_VDS_VM_CLUSTER
2012-03-09 22:19:49,601 INFO  
[org.ovirt.engine.core.vdsbroker.irsbroker.IsValidVDSCommand] 
(http--0.0.0.0-8443-3) START, IsValidVDSCommand(storagePoolId = 
9c3672b4-69e6-11e1-90e5-cf93ece78b91, ignoreFailoverLimit = false, 
compatabilityVersion = null), log id: 2cb8b75f
2012-03-09 22:19:49,602 INFO  
[org.ovirt.engine.core.vdsbroker.irsbroker.IsValidVDSCommand] 
(http--0.0.0.0-8443-3) FINISH, IsValidVDSCommand, return: true, log 
id: 2cb8b75f
2012-03-09 22:19:49,641 INFO  
[org.ovirt.engine.core.vdsbroker.IsVmDuringInitiatingVDSCommand] 
(http--0.0.0.0-8443-3) START, IsVmDuringInitiatingVDSCommand(vmId = 
bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16), log id: 70fdec7a
2012-03-09 22:19:49,642 INFO  
[org.ovirt.engine.core.vdsbroker.IsVmDuringInitiatingVDSCommand] 
(http--0.0.0.0-8443-3) FINISH, IsVmDuringInitiatingVDSCommand, return: 
false, log id: 70fdec7a
2012-03-09 22:19:49,691 INFO  [org.ovirt.engine.core.bll.RunVmCommand] 
(pool-5-thread-50) [6b8a595] Running command: RunVmCommand internal: 
false. Entities affected :  ID: bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16 
Type: VM
2012-03-09 22:19:49,708 INFO  
[org.ovirt.engine.core.vdsbroker.irsbroker.IsoPrefixVDSCommand] 
(pool-5-thread-50) [6b8a595] START, IsoPrefixVDSCommand(storagePoolId 
= 9c3672b4-69e6-11e1-90e5-cf93ece78b91, ignoreFailoverLimit = false, 
compatabilityVersion = null), log id: 2f19c35
2012-03-09 22:19:49,708 INFO  
[org.ovirt.engine.core.vdsbroker.irsbroker.IsoPrefixVDSCommand] 
(pool-5-thread-50) [6b8a595] FINISH, IsoPrefixVDSCommand, return: 
/rhev/data-center/9c3672b4-69e6-11e1-90e5-cf93ece78b91/4d313edd-4904-44de-b761-d828c36d6116/images/----, 
log id: 2f19c35
2012-03-09 22:19:49,709 INFO  
[org.ovirt.engine.core.vdsbroker.CreateVmVDSCommand] 
(pool-5-thread-50) [6b8a595] START, CreateVmVDSCommand(vdsId = 
2d40ef8c-69e7-11e1-8c9c-27e55c9bdd2f, 
vmId=bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16, 
vm=org.ovirt.engine.core.common.businessentities.VM@1aa2def), log id: 
3111b59c
2012-03-09 22:19:49,714 INFO  
[org.ovirt.engine.core.vdsbroker.vdsbroker.CreateVDSCommand] 
(pool-5-thread-50) [6b8a595] START, CreateVDSCommand(vdsId = 
2d40ef8c-69e7-11e1-8c9c-27e55c9bdd2f, 
vmId=bd7c2e08-1ec1-4c6c-9029-b2d9bb4b2c16, 
vm=org.ovirt.engine.core.common.businessentities.VM@1aa2def), log id: 
78110a1
2012-03-09 22:19:49,732 INFO  
[org.ovirt.engine.core.vdsbroker.vdsbroker.CreateVDSCommand] 
(pool-5-thread-50) [6b8a595] 
org.ovirt.engine.core

Re: [Users] can not use a standard data domain

2012-03-11 Thread Moran Goldboim

On 03/10/2012 01:26 AM, Dominic Kaiser wrote:

Here is the error I am getting:

VM fs1 is down. Exit message internal error process exited while 
connecting to monitor: qemu-kvm: -drive 
file=/rhev/data-center/c10c25e0-526a-11e1-a5e4-87fa674ffb5d/651cb693-3ffa-43b6-ab49-43cfb03d179b/images/7fa8a2e7-214e-4081-9f1f-f78c88b2f96e/49c199b6-cbda-4aa0-9b50-e3dc28341e09,if=none,id=drive-virtio-disk0,format=raw,serial=81-9f1f-f78c88b2f96e,cache=none,werror=stop,rerror=stop,aio=threads: 
could not open disk image 
/rhev/data-center/c10c25e0-526a-11e1-a5e4-87fa674ffb5d/651cb693-3ffa-43b6-ab49-43cfb03d179b/images/7fa8a2e7-214e-4081-9f1f-f78c88b2f96e/49c199b6-cbda-4aa0-9b50-e3dc28341e09: 
Permission denied .


I can add the domain fine.  it is not the master domain and it is 
another node. I can create virtual disks but cannot start vm's.  I saw 
a post on google that mentions nfs=0 not nfs=1 i think it was in 
/usr/sbin/senforce maybe?  Does anyone recollect this problem and can 
help me?  Again this is on a separate node and is a standard data 
domain  not master.


Thanks,

--
Dominic Kaiser
Greater Boston Vineyard
Director of Operations

cell: 617-230-1412
fax: 617-252-0238
email: domi...@bostonvineyard.org 



___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users
Dominic, sounds like you have some permission problem with the image, 
can you try with selinux in permissive mode - "/usr/sbin/setenforce 0"
can you please add the output of "ls -lZh 
/rhev/data-center/c10c25e0-526a-11e1-a5e4-87fa674ffb5d/651cb693-3ffa-43b6-ab49-43cfb03d179b/images/7fa8a2e7-214e-4081-9f1f-f78c88b2f96e/49c199b6-cbda-4aa0-9b50-e3dc28341e09"


Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] "permission settings on the specified path do not allow access to the storage"

2012-03-07 Thread Moran Goldboim

On 03/06/2012 05:17 PM, Shu Ming wrote:
The problem was resloved  and It might come from the naming problem 
using 'data' as domain name.


can you please elaborate - i don't know such a limitation, anyhow the 
error shows a permission problem if this isn't the case we should handle it.

Moran.


On 2012-3-6 22:55, Xiaofan wrote:

Manually mount and touch with kvm:qemu user/group and see if success?

2012/3/6 Shu Ming:

It seems that the problem came from the name of the data domain to be
created.  I used "data" to be the name.  Is "data" a reserved name 
for the

storage domain?


On 2012-3-6 17:30, Shu Ming wrote:

Hi,
  My ovirt-engine was setup on a vm host with ip:xxx.xxx.xxx.112.  
And I am
trying to create a new domain with ovirt-engine UI  by the 
"Storage"-->  "New

Domain".  And the following error happened.  However I can mount the
  xxx.xxx.xxx.110:/data by "mount -t nfs xxx.xxx.xxx.110:/data 
/mnt" manually
in the ovirt-engine host, also a new file can be created under the 
mounted

directory with "touch xx".  It looks to me that there is no permission
problem when I access the remote nfs path manually.  So does 
ovirt-engine
enforce additional permission check beside the normal unix file 
permission

check here?


[root@ovirt-engine-112 /]# vim /var/log/ovirt-engine/engine.log
[root@ovirt-engine-112 /]# vim /var/log/ovirt-engine/engine.log
2012-03-06 00:38:51,165 INFO
  
[org.ovirt.engine.core.vdsbroker.vdsbroker.ValidateStorageServerConnectionVDSCommand]

(http--0.0.0.0-8080-6) START,
ValidateStorageServerConnectionVDSCommand(vdsId =
46a83d56-66d9-11e1-8004-5254009e821b, storagePoolId =
----, storageType = NFS, 
connectionList = [{

id: null, connection: xxx.xxx.xxx.110:/data };]), log id: 1899002d
2012-03-06 00:38:51,297 INFO
  
[org.ovirt.engine.core.vdsbroker.vdsbroker.ValidateStorageServerConnectionVDSCommand]
(http--0.0.0.0-8080-6) FINISH, 
ValidateStorageServerConnectionVDSCommand,

return: {----=469}, log id: 1899002d
2012-03-06 00:38:51,300 ERROR
[org.ovirt.engine.core.bll.storage.NFSStorageHelper] 
(http--0.0.0.0-8080-6)
The connection with details xxx.xxx.xxx.110:/data failed because of 
error
code 469 and error message is: permission settings on the specified 
path do

not allow access to the storage.
verify permission settings on the specified storage path.
2012-03-06 00:38:51,300 WARN
  
[org.ovirt.engine.core.bll.storage.AddStorageServerConnectionCommand]
(http--0.0.0.0-8080-6) CanDoAction of action 
AddStorageServerConnection

failed. Reasons:ACTION_TYPE_FAILED_STORAGE_CONNECTION
2012-03-06 00:38:51,425 INFO
  
[org.ovirt.engine.core.bll.storage.RemoveStorageServerConnectionCommand] 

(http--0.0.0.0-8080-4) Running command: 
RemoveStorageServerConnectionCommand

internal: false. Entities affected :  ID:
aaa0----123456789aaa Type: System



--
Shu Ming
IBM China Systems and Technology Laboratory


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Import VM from NFS

2012-02-20 Thread Moran Goldboim

On 02/20/2012 07:29 PM, patrick wrote:

Hello,

How can I import a VM from a NFS Storage? I have reinstalled ovirt
Manager and am unable to import the VM I created before. The
filestructure from my previous installation is still on my NFS
Storage. I wonder what's the best way to get them into ovirt again
after reinstalling.

Thanks in advance
Patrick
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users
Patrick, There isn't a straight forward way to do it, and you'll need to 
hack your way around if you want to do it.
right now the way to move storage around systems/re-installations is 
using an export domain and exporting/importing vms/templates using it or 
backup/restore your database with the storage domains information.


Moran.

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Some naive questions on ovirt...

2012-02-02 Thread Moran Goldboim

On 02/02/2012 01:48 PM, Deepak C Shetty wrote:

Hi All,
I have few naive Qs for getting some understanding on how things 
are not working in my setup.


I have a very very basic/simple setup.. 1 box hosting ovirt-engine and 
1 host running f16,
which is discovered and being managed by the ovirt. I don't have the 
luxury (atleast currently)
to have a shared san/nas storage setup, so with help on irc, i 
configured and setup local dc
with local cluster and added host to the local cluster. Now i am in 
the process of adding a virtual

disk to my VM which i created using ovirt.

1) The virtual disk ovirt helps create, is a disk with all zeroes... 
so even if i am able to


you created a preallocated empty system disk- this is required result.

create the vdisk and attach it to the VM, when i start vm, obviously 
it won't boot, as the boot

disk is not found. How do i let the ovirt use a existing .img


you can use the run once option and change boot-order to boot from a PXE 
server or attach a cd (iso files from iso domain) and boot from cd.
there is a neat option to create an iso domain using the installer 
(creates nfs share on your ovirt server and connects it to ovirt). or 
create an nfs export and attach it to the Data center as a new iso 
storage domain.
once you have an iso domain you can copy images there using 
engine-iso-uploader, or copy it with ownership 36:36 
(path_to_your_share/guid-xxx-xxx/image/----/) 
directly.


Moran.


image file which already has a os
and root fs installed ( i have it from my virt-manager setup). ? I 
tried creatign a new storage
domain of type iso, but not sure how to add my .img for oivrt to 
see/recognize and allow me to
select that while creating a new VM ? Again, this is all local, so i 
created /iso/images
and /data/images directory on my host, and tried keeping my .imgs 
there, but it does not work.


2) Is thin provisioning supported with just 1 host in the dc/cluster ? 
From vdsm_storage pdf
i found on the wiki, there is a diagram which uses 2 hosts to do the 
thin provisioning...
so are 2 hosts a must ? Also it talks abt mailbox LV, where the msgs 
are sent and recd between
vdsm and spm to do the lvextend operation.. i am not clear on where 
physically this LV resides ?
on host 1, host 2 or somewhere else ? Assuming its shared storage, 
does it mean that i cannot

do thin prov, with local storage, as is the setup in my case ?

thanx,
deepak

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Support by Scientific linux?

2012-02-02 Thread Moran Goldboim

Error is:
2012-02-02 06:54:49,760 ERROR 
[org.ovirt.engine.core.bll.AddImageFromScratchCommand] 
(http--0.0.0.0-8080-1) AddDiskImageToDB::Failed adding new created 
snapshot into the db: org.springframework.jdbc.BadSqlGrammarException: 
PreparedStatementCallback; bad SQL grammar [select * from  
getdiskbydiskid(?)]; nested exception is 
org.postgresql.util.PSQLException: ERROR: structure of query does not 
match function result type
  Detail: Number of returned columns (7) does not match expected column 
count (8).

  Where: PL/pgSQL function "getdiskbydiskid" line 2 at RETURN QUERY

can you check that your DB scheme is uptodate:
cd /usr/share/ovirt-engine/dbscripts;./upgrade.sh -u postgres

Moran.


On 02/02/2012 03:19 PM, зоррыч wrote:


Hi.

I installed the rpm package - 
http://ftp.redhat.com/pub/redhat/linux/enterprise/6Server/en/RHEV/SRPMS/vdsm-4.9-112.4.el6_2.src.rpm 
and 
http://ftp.redhat.com/pub/redhat/linux/enterprise/6Server/en/RHEV/SRPMS/vhostmd-0.4-2.4.el6.src.rpm 
operating system will detect true.


Thank you.

A new problem:

When adding a virtual disk, virtual server, an error occurs: Error 
while executing action AddDiskToVm: Database error.


Log attached.

With what may be the reason?

>  We have plenty of native Russian speakers on this list ;-)

Может быть я буду просто писать на русском? =)

*From:*users-boun...@ovirt.org [mailto:users-boun...@ovirt.org] *On 
Behalf Of *Haim Ateya

*Sent:* Monday, January 30, 2012 11:28 AM
*To:* users@ovirt.org
*Subject:* Re: [Users] Support by Scientific linux?

On 01/30/2012 07:15 AM, Brown, Chris (GE Healthcare) wrote:

If you would like to use SL 6.2 as a node:
- Change the contents of /etc/redhat-release to "Red Hat Enterprise Linux Server 
release 6.2 (Santiago"
- Build the latest version of RHEV/RHEL 6.x vdsm srpm 
here:http://ftp.redhat.com/pub/redhat/linux/enterprise/6Server/en/RHEV/SRPMS/
- Add the resulting rpms to a yum repo or create one using createrepo and serve 
it up where your SL node can get to it
- Register that repo with yum EG: add a repo file in /etc/yum.repos.d pointing 
to it
- Finally you will have to edit a value in the postgres database to actually 
get ovirt to execute vms on the SL (EL6) node once it is added
- since ovirt is built around FC16 it will pass "emulatedmachine" or the "-M" value to KVM as 
"pc-0.14" whereas on EL6 the value passed is "rhel6.2.0"
- thus to change it to what we desire run the following: psql -U postgres -d engine 
-c "update vdc_options set option_value='rhel6.2.0'
where option_name='EmulatedMachine' and version='3.0';"
-  after that make sure to restart the jboss service as the previous values are 
cached
  
- Chris
  

  
From:users-boun...@ovirt.org    on behalf of Dan Kenigsberg

Sent: Sun 1/29/2012 3:53 AM
To: ??
Cc:users@ovirt.org  
Subject: Re: [Users] Support by Scientific linux?
  
  
  
On Sun, Jan 29, 2012 at 05:12:09AM +0400, ?? wrote:


Hi.

  


Testing work Ovirt on scientific linux 6.1.

  


Compiling from source oVirt-engine

(http://www.ovirt.org/wiki/Building_Ovirt_Engine) is successful.

  


However, if you add a node incorrectly determined the operating system:

  


OS Version: unknown.

  


Nodes perform the installation instructions on:

http://www.ovirt.org/wiki/Building_Ovirt_Engine

  


Analyzing the log files are found incorrect answer vdsm (Node status

NonOperational.  nonOperationalReason = VERSION_INCOMPATIBLE_WITH_CLUSTER)

I agree with Dan and Chris comments, however, the reason engine-core 
decided to move host to non-operational is as it doesn't fit cluster 
minimum requirements; any chance to see a full engine-core log when 
you try to activate the host ?



  

  


/var/log/vdsm/vdsm.log:

  


Thread-16::DEBUG::2012-01-28 14:08:09,200::clientIF::48::vds::(wrapper)

return getVdsCapabilities with {'status': {'message': 'Done', 'code': 0},

'info': {'HBAInventory': {'iSCSI': [{'InitiatorName':

'iqn.1994-05.com.redhat:4052e3fcadb'}], 'FC': []}, 'packages2': {'kernel':

{'release': '220.el6.x86_64', 'buildtime': '0', 'version': '2.6.32'},

'spice-server': {'release': '5.el6', 'buildtime': '1323492018', 'version':

'0.8.2'}, 'vdsm': {'release': '63.el6', 'buildtime': '1327784725',

'version': '4.9'}, 'qemu-kvm': {'release': '2.209.el6_2.4', 'buildtime':

'1327361568', 'version': '0.12.1.2'}, 'libvirt': {'release': '23.el6',

'buildtime': '1323231757', 'version': '0.9.4'}, 'qemu-img': {'release':

'2.209.el6_2.4', 'buildtime': '1327361568', 'version': '0.12.1.2'}},

'cpuModel': 'Intel(R) Xeon(R) CPU5140  @ 2.33GHz', 'hooks': {},

'networks': {'virbr0': {'cfg': {}, 'netmask': '255.255.255.0', 'stp': 'on',

'ports': ['virbr0-nic'], 'addr': '192.168.122.1'}}, 'vmTypes': ['kvm',

'qemu'], 'cpuFlags':

u'fpu,vm

Re: [Users] VDSM failing to start because iscsid fails to start

2012-01-31 Thread Moran Goldboim

On 02/01/2012 07:23 AM, Dave Allan wrote:

I just installed the engine and a few nodes from RPMs all on F16 per
the instructions at:

http://www.ovirt.org/wiki/Installing_ovirt-engine_from_rpm

After installing the engine, I installed a few nodes by installing the
minimal F16 package set + wget, configuring the ovirt repo on the
nodes and using the 'New' button in the hosts tab of the engine GUI.
The installation went fine, but after the nodes rebooted they were
listed as non-reponsive.  It turned out that VDSM was failing to start
because iscsid was failing to start.  I turned up the debug level on
iscsid but didn't find any culprit.  Manually force-starting iscsid
and then manually starting the vdsm service caused the nodes to change
status to Up.  Anybody seen this or have any thoughts about what might
be wrong?

Dave
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


https://bugzilla.redhat.com/show_bug.cgi?id=786174
Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Host discovery failing due to host network being lost

2012-01-31 Thread Moran Goldboim

On 01/31/2012 05:09 PM, Itamar Heim wrote:

On 01/31/2012 04:55 PM, Deepak C Shetty wrote:

Hi Itamar,
My reply with the attachments is on hold since the size is around 114KB
I tried with and without .tar, the same happens, so not sure how to send
the attachments
otherwise to this email thread.



1. i got it, since you cc'd me directly.
2. karsten - can we change the limit on users@ovirt.org to something 
in MBs?


thanks
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Deepak, can you please look for SetVdsStatusVDSCommand following a 
MaintananceVdsCommand in /var/log/ovirt-engine/engine.log
if you were having a problem with this command it is most likely for an 
ERROR to appear around there.


Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Host discovery failing due to host network being lost

2012-01-31 Thread Moran Goldboim

On 01/31/2012 01:07 PM, Deepak C Shetty wrote:

On 01/31/2012 12:29 PM, Moran Goldboim wrote:

On 01/31/2012 07:23 AM, Deepak C Shetty wrote:


Host cannot be moved to Maintenance mode, since there is no network 
connectivity between ovirt and host (due to the above issues).. 
ovirt tries to put the host into maint mode, but does not and 
reverts the status back to non responsive, because of this I am 
never ever able to delete the host.. i think this is a bug because 
such issues will  be common
in user environments & there should be a way for the user to delete 
the host and start afresh irrespective of the
host status.. any reason why Remove is disabled when host is in non 
responsive state ?


not being able to move the host to maintenance sounds like a bug 
indeed, can you please attach engine logs to the bug.
for the network issue- i would have looked at 
https://bugzilla.redhat.com/show_bug.cgi?id=785557 as well, to see 
this isn't your problem.

Moran.


Where are the engine logs, in /tmp, i tried to look but could not find.


you can find the engine logs at : /var/log/ovirt-engine/
the log needed for that matter is engine.log (latest), you can also use 
the engine-log-collector tool installed.


Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Host discovery failing due to host network being lost

2012-01-30 Thread Moran Goldboim

On 01/31/2012 07:23 AM, Deepak C Shetty wrote:

On 01/28/2012 03:24 PM, Haim Ateya wrote:



Hi,
I forgot to backup the ifcfg-eth0 for ovirtmgmt but i think 
ONBOOT was probably not there.
BTW, before i attach any files here, is there a way to remove the 
host and re-discover it afresh ?
ovirt web gui does not give me any option to remove.. the Remove is 
diabled and host is in Non Responsive state.
How do i remove and start from scratch and then i can try to see if 
i can fix ifcfg-eth0 for ovirtmgmt ? Currently i am unable to remove 
the host.


Please move host to maintenance, under 'general' tab, you will find 
re-install option, or slightly remove the host and add it again.

Please make sure to delete ovirtmgmt bridge before the re-install phase.



Host cannot be moved to Maintenance mode, since there is no network 
connectivity between ovirt and host (due to the above issues).. ovirt 
tries to put the host into maint mode, but does not and reverts the 
status back to non responsive, because of this I am never ever able to 
delete the host.. i think this is a bug because such issues will  be 
common
in user environments & there should be a way for the user to delete 
the host and start afresh irrespective of the
host status.. any reason why Remove is disabled when host is in non 
responsive state ?


not being able to move the host to maintenance sounds like a bug indeed, 
can you please attach engine logs to the bug.
for the network issue- i would have looked at 
https://bugzilla.redhat.com/show_bug.cgi?id=785557 as well, to see this 
isn't your problem.

Moran.

___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] test day: using VM has host for vdsm

2012-01-18 Thread Moran Goldboim

On 01/18/2012 11:13 PM, Ryan Harper wrote:

* Itamar Heim  [2012-01-18 13:46]:

On 01/18/2012 07:26 PM, Ryan Harper wrote:

* Ryan Harper   [2012-01-18 06:59]:

I've created some f16 VMs that contain both ovirt-engine and a few
to run vdsm as nodes.  When I add in the VM host into the engine and it
attempts to install vdsm (even though I've already installed vdsm) the
install fails because the vdsm install script is checking to see if the
host has virt capabilities; since I'm not running nested KVM, this
fails.  Is there a way to work around this can enable a VM to be a host
in oVirt?  I had heard in the past there was a way to create fake VMs
when attempting to do ovirt-engine stress testing, wondering if that
might be of help here.

Now that I have one VM as a host in the UP state in ovirt-engine, let me
capture what I needed to get that to work:


On my F16-node, since I was following the test day instructions which
asked to install vdsm/vdsm-cli and this is already done by ovirt-engine
bootstrap.

1) uninstall vdsm and vdsm-cli
 - ovirt-engine will push down a vdsm package during the bootstrap
 process

2) disable selinux
 - edit /etc/sysconfig/selinux and set SELINUX=disabled
 - reboot

3) ensure ssl=false and fake_kvm_support=true in /etc/vdsm/vdsm.conf

4) restart vdsmd


On the ovirt-engine instanes

# we have a gateway in the way so we're using ssh tunneling to access
# the ovirt-engine VM instance

1) re-install ovirt-engine and don't use localhost as the hostname since
this value is passed to the host you install vdsm on and it will fail to
push the bootstrap script down.  This means that after you setup your
tunnel, to get to the admin interface, you need to manually enter:

 http://localhost:8080/webadmin

2) edit
/usr/share/ovirt-engine/engine.ear/components.war/vds/vds_bootstrap.py
and comment out lines 836->839, like this.

#if not oDeploy.virtExplorer(random_num):
#logging.error('virtExplorer test failed')
#return False

3) some misc stuff (not sure if it is needed, but looks harmless enough)

mkdir  /var/lock/ovirt-engine/
chown  jboss-as:jboss-as -R /var/lock/ovirt-engine
restorecon -Fvv  /var/lock/ovirt-engine

4) update jboss configuration to not use ssl

psql -U postgres engine -c "update vdc_options set option_value='false'
where
+option_name='UseSecureConnectionWithServers' and version='general';"

5) restart jboss

service restart jboss-as


Also, are their vdsm rpms built for RHEL6.x available?

you can set InstallVds to false in engine config, which will only add

what does this command look like?  I plan to update the installing vdsm
wiki page.


Itamar, i think this value is missing on engine-config - will look into 
it tomorrow:

engine-config -l | grep -i install
oVirtISOsRepositoryPath: "The RHEV-H installation files path" (Value 
Type: String)
VdcBootStrapUrl: "Host Installation Bootstrap Script URL" (Value Type: 
String)


Ryan, you can change it on DB:
UPDATE vdc_options SET option_value = false where option_name = 
'InstallVds';


Moran.



the host without doing any communication to it.
together with disabling ssl/secure connections should be easy enough to use.
you would need to install vdsm manually and configure the ovirtmgmt bridge.

That sounds good; it'd probably be good to mention that on the
installing VDSM page which walks folks through installing vdsm.





___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] oVirt test day is coming tomorrow - Jan 18th - Reminder

2012-01-17 Thread Moran Goldboim

All are invited to join and share your ideas, tests, and results.
all details available at http://www.ovirt.org/wiki/Testing/OvirtTestDay


IRC - #ovirt at irc.oftc.net

hope to see you there.
Moran.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt test day is coming - Jan 16th - Deferred to Jan 18th

2012-01-16 Thread Moran Goldboim

On 01/16/2012 03:36 PM, Anthony Liguori wrote:

On 01/15/2012 09:36 AM, Moran Goldboim wrote:

Due to a late re-base we have decided to defer the testday in 2 days to
Wednesday Jan 18th.
Sorry for the late notice, hope to see you all there.


Not that I mind the test day being moved, but how was it decided to 
move the test day?  I don't see any discussion on any of the various 
lists (at list, that I'm on).


We are planning on participating and would have liked to provide some 
input in the decision.


Regards,

Anthony Liguori


Anthony, this issue has been discussed at oVirt Weekly Sync Meeting on 
Jan 11th, in which it was decided that if a late branching will happen 
testday will be deferred by one or two days.


Moran.





Moran.


On 01/11/2012 03:35 PM, Moran Goldboim wrote:

Looking forward to ovirt first release on Jan 31th.
we would like all to participate in oVirt test day on the 16Th. This 
would be
an opportunity to exercise a oVirt for the upcoming release. Each 
Test Day
brings something unique and you're encouraged to join and share your 
ideas,

tests, and results.
all needed information is available in
http://www.ovirt.org/wiki/Testing/OvirtTestDay
please review it, subscribe and have fun with it.

Moran.


___
Arch mailing list
a...@ovirt.org
http://lists.ovirt.org/mailman/listinfo/arch




___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users