Re: [Users] Fwd: ovirt cli commands / script wont exit the shell

2012-10-08 Thread Yaniv Kaul

On 10/09/2012 12:15 AM, Alex Leonhardt wrote:



On 10/08/2012 10:26 PM, Yaniv Kaul wrote:

On 10/08/2012 11:17 PM, Alex Leonhardt wrote:

Aha - cool - thanks! :)

Now, I was also looking at the REST API - is there a simple shell 
based way to read / query the resulting XML ? Or would you suggest 
to write python scripts to e.g. start/stop instance, get a list of 
VMs / their IDs, etc. ?


If you are already planning on Python, why not use the SDK instead of 
doing REST?

some examples @ http://wiki.ovirt.org/wiki/Testing/PythonApi
Y.


Hi Yaniv,

thanks - had a quick look - is the PyAPI able to get the current usage 
of the VMs (e.g. Memory/CPU/etc. usage) - it's the main reason (for 
monitoring & trending) that I need this ..


Thanks!
Alex



It does. The SDK is auto-generated from the REST interface so you can 
get the statistics sub-collection and use it.

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


Re: [Users] Fwd: ovirt cli commands / script wont exit the shell

2012-10-08 Thread Alex Leonhardt



On 10/08/2012 10:26 PM, Yaniv Kaul wrote:

On 10/08/2012 11:17 PM, Alex Leonhardt wrote:

Aha - cool - thanks! :)

Now, I was also looking at the REST API - is there a simple shell 
based way to read / query the resulting XML ? Or would you suggest to 
write python scripts to e.g. start/stop instance, get a list of VMs / 
their IDs, etc. ?


If you are already planning on Python, why not use the SDK instead of 
doing REST?

some examples @ http://wiki.ovirt.org/wiki/Testing/PythonApi
Y.


Hi Yaniv,

thanks - had a quick look - is the PyAPI able to get the current usage 
of the VMs (e.g. Memory/CPU/etc. usage) - it's the main reason (for 
monitoring & trending) that I need this ..


Thanks!
Alex

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


Re: [Users] Increase storage domain

2012-10-08 Thread Ayal Baron


- Original Message -
> On Sat, Sep 29, 2012 at 3:47 PM, Ayal Baron < aba...@redhat.com >
> wrote:
> 
> 
> 
> 
> > > However, as I read this email, it occurred that some other things
> > > might not be equal. Specifically, using multiple LUNs could
> > > provide
> > > a means of shrinking the storage domain in the future. LVM
> > > provides
> > > a simple means to remove a PV from a VG, but does the engine
> > > support
> > > this in the CLI or GUI? That is, if the a storage domain has
> > > multiple LUNs in it, can those be removed at a later date?
> > 
> > Not yet.
> > 
> > 
> > Does this mean it is in the works? If not, where could I put in
> > such
> > feature request?
> > 
> > 
> > Certainly, I have no pressing need of this, but it seems like a
> > fairly simple thing to implement since I have done it so easily in
> > the past with a just a couple of commands outside of an oVirt
> > environment. I believe the primary purpose of the LVM functionality
> > was to enable removal of dying PVs before they take out an entire
> > VG. No reason it would not work just as well to remove a healthy
> > PV.
> > It can take a long time to move all the extents off the PV
> > requested, but there is command to show the progress, so it would
> > also be easy to wrap that in to the GUI.
> 
> What's simple in a single host environment is really not that simple
> when it comes to clusters.
> The tricky part is the coordination between the different hosts and
> doing it live or with minimal impact.
> 
> 
> 
> Fair enough, but it seems that the cluster environment has been
> addressed with the SPM mechanism for all things LVM. Certainly,
> initial coding the feature would be fairly trivial, but I can
> imagine that testing in the cluster environment might expose
> additional complexity.

The actual data move is done by the SPM and is a simple pvmove command as 
you've stated.
The simple way of doing this would be to put the domain in maintenance mode and 
then pvmove on the SPM (currently you can't run such operations while domain is 
in maintenance, but it just makes sense to do it) and then activate the domain.
This means however that you would not be able to run any VM that has disks on 
this VG, even ones that reside entirely on other PVs.
If, however, we'd want to do it 'semi live' then it would become much more 
complex.
First you need to realize that LVs are not neatly dispersed between PVs.  You 
can have extents from different PVs for the same LV (esp. after lvextend which 
happens automatically in the system when there are snapshots).
So we'd need to map all the LVs which are affected and prevent running any VM 
that uses these LVs.
Then we'd need to also guarantee there is enough space to move these extents to 
(again, in addition to user creating new objects, there are automatic lvextend 
operations going on so we'd need a way to reserve space on the VG for this 
operation).
Once we've done this we'd need to run the op and then we'd need to make sure 
that all the hosts see things properly.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Fwd: ovirt cli commands / script wont exit the shell

2012-10-08 Thread Yaniv Kaul

On 10/08/2012 11:17 PM, Alex Leonhardt wrote:

Aha - cool - thanks! :)

Now, I was also looking at the REST API - is there a simple shell 
based way to read / query the resulting XML ? Or would you suggest to 
write python scripts to e.g. start/stop instance, get a list of VMs / 
their IDs, etc. ?


If you are already planning on Python, why not use the SDK instead of 
doing REST?

some examples @ http://wiki.ovirt.org/wiki/Testing/PythonApi
Y.



I'm not a great programmer so rather look for something already 
existing rather than me fiddling for a comparable looong time ;)


Alex


On 10/07/2012 11:31 AM, Michael Pasternak wrote:

Hi Alex,

This is a bug [1], fix available in 3.2.0.1, latest available cli version
is 3.2.0.5.


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


 Original Message 
Subject: [Users] ovirt cli commands / script wont exit the shell
Date: Sat, 06 Oct 2012 20:44:44 +0100
From: Alex Leonhardt
To:users@ovirt.org



hi there,

i'm playing with the Ovirt CLI and started to script a few things, but
it seems as if the console stays connected when I execute the commands -
I even included a "exit" and tried "disconnect", but nothing would do it
- any hints / clues ?

the script is very simple :

---
action vm vm2 start
exit
---

or

---
action vm vm1 stop
disconnect
exit
---

I always end up back here :

###

   ==
   >>> connected to oVirt manager 3.1.0.0 <<<
   ==

[oVirt shell (connected)]# action vm vm2 start


status-state: complete

[oVirt shell (connected)]# exit

[oVirt shell (connected)]#

###

Thanks
Alex






___
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] Fwd: ovirt cli commands / script wont exit the shell

2012-10-08 Thread Alex Leonhardt

Aha - cool - thanks! :)

Now, I was also looking at the REST API - is there a simple shell based 
way to read / query the resulting XML ? Or would you suggest to write 
python scripts to e.g. start/stop instance, get a list of VMs / their 
IDs, etc. ?


I'm not a great programmer so rather look for something already existing 
rather than me fiddling for a comparable looong time ;)


Alex


On 10/07/2012 11:31 AM, Michael Pasternak wrote:

Hi Alex,

This is a bug [1], fix available in 3.2.0.1, latest available cli version
is 3.2.0.5.


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


 Original Message 
Subject: [Users] ovirt cli commands / script wont exit the shell
Date: Sat, 06 Oct 2012 20:44:44 +0100
From: Alex Leonhardt
To: users@ovirt.org



hi there,

i'm playing with the Ovirt CLI and started to script a few things, but
it seems as if the console stays connected when I execute the commands -
I even included a "exit" and tried "disconnect", but nothing would do it
- any hints / clues ?

the script is very simple :

---
action vm vm2 start
exit
---

or

---
action vm vm1 stop
disconnect
exit
---

I always end up back here :

###

   ==
   >>>  connected to oVirt manager 3.1.0.0<<<
   ==

[oVirt shell (connected)]# action vm vm2 start


status-state: complete

[oVirt shell (connected)]# exit

[oVirt shell (connected)]#

###

Thanks
Alex





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


Re: [Users] Spice windows xp, vista and 7.

2012-10-08 Thread Itamar Heim

On 10/08/2012 08:02 PM, victor nunes wrote:

Thanks for the reply.

Is showing an error when using virt-viewer to connect to the VM.

The message "unable to connect to server graphic"

I cleaned all iptables rules and let the INPUT, OUTPUT, FORWARD, all
like ACCEPT, but still the message keeps appearing.



i may have missed this, but i don't remember seeing --spice-host-subject 
in your command line.
i may have also missed you stating if this worked or not, but can you 
first try with ovirt-shell or spice-xpi from a linux client?






Anyone had this kind of problem?

Em 10 de setembro de 2012 05:30, Itamar Heim mailto:ih...@redhat.com>> escreveu:

On 09/10/2012 05:06 AM, victor nunes wrote:

Hello, use of spice in windows xp and 7 environments possible?
Where can I find some tips on how I can install on windows spice?


http://wiki.ovirt.org/wiki/__How_to_Connect_to_SPICE___Console_With_Portal


http://wiki.ovirt.org/wiki/__How_to_Connect_to_SPICE___Console_Without_Portal


Att,



--
“Encarada do ponto de vista da juventude, a vida parece um futuro
indefinidamente longo, ao passo que, na velhice, ela parece um
passado
deveras curto. Assim, a vida no seu início se apresenta do mesmo
modo
que as coisas quando as olhamos através de um binóculo usado ao
contrário; mas, ao
seu final, ela se parece com as coisas  tal qual são vistas quando o
binóculo
é usado de modo normal. Um homem precisa ter envelhecido e vivido
bastante para perceber como a vida é curta”.

   (Poema de Arthur Schopenhauer)


_
Users mailing list
Users@ovirt.org 
http://lists.ovirt.org/__mailman/listinfo/users







--
“Encarada do ponto de vista da juventude, a vida parece um futuro
indefinidamente longo, ao passo que, na velhice, ela parece um passado
deveras curto. Assim, a vida no seu início se apresenta do mesmo modo
que as coisas quando as olhamos através de um binóculo usado ao
contrário; mas, ao
seu final, ela se parece com as coisas  tal qual são vistas quando o
binóculo
é usado de modo normal. Um homem precisa ter envelhecido e vivido
bastante para perceber como a vida é curta”.

  (Poema de Arthur Schopenhauer)



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


Re: [Users] Increase storage domain

2012-10-08 Thread Alan Johnson
On Sat, Sep 29, 2012 at 3:47 PM, Ayal Baron  wrote:

> > > However, as I read this email, it occurred that some other things
> > > might not be equal. Specifically, using multiple LUNs could provide
> > > a means of shrinking the storage domain in the future. LVM provides
> > > a simple means to remove a PV from a VG, but does the engine
> > > support
> > > this in the CLI or GUI? That is, if the a storage domain has
> > > multiple LUNs in it, can those be removed at a later date?
> >
> > Not yet.
> >
> >
> > Does this mean it is in the works? If not, where could I put in such
> > feature request?
> >
> >
> > Certainly, I have no pressing need of this, but it seems like a
> > fairly simple thing to implement since I have done it so easily in
> > the past with a just a couple of commands outside of an oVirt
> > environment. I believe the primary purpose of the LVM functionality
> > was to enable removal of dying PVs before they take out an entire
> > VG. No reason it would not work just as well to remove a healthy PV.
> > It can take a long time to move all the extents off the PV
> > requested, but there is command to show the progress, so it would
> > also be easy to wrap that in to the GUI.
>
> What's simple in a single host environment is really not that simple when
> it comes to clusters.
> The tricky part is the coordination between the different hosts and doing
> it live or with minimal impact.
>
>
Fair enough, but it seems that the cluster environment has been addressed
with the SPM mechanism for all things LVM.  Certainly, initial coding the
feature would be fairly trivial, but I can imagine that testing in the
cluster environment might expose additional complexity.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Jboss service.Check Error During Install

2012-10-08 Thread Alon Bar-Lev


- Original Message -
> From: "Jason Scalia" 
> To: users@ovirt.org
> Sent: Monday, October 8, 2012 8:55:10 PM
> Subject: Re: [Users] Jboss service.Check Error During Install
> 
> 
> Hello,
> 
> 
> I actually got a different error on this install:
> 
> 
> 
> Configuring HTTPD... [ DONE ]
> AIO: Creating storage directory... [ DONE ]
> AIO: Adding Local Datacenter and cluster... [ ERROR ]
> Error: could not create ovirtsdk API object
> Please check log file
> /var/log/ovirt-engine/engine-setup_2012_10_08_14_24_47.log for more
> information

This relates to the all-in-one plugin.

If you are not using it (not running VMs on the same host as the manager), 
simply install ovirt-engine instead of ovirt-engine-setup-plugin-allinone.

Can you provide the logs, I am CCing Moran to look into this.

Thanks,
Alon

> 
> However, like my initial install, the web UI is still present and I
> can login. I'm assuming these are just warnings during the install
> and I can proceed from here on out. Thanks for all of the assistance
> everyone, it is greatly appreciated.
> 
> 
> On Mon, Oct 8, 2012 at 11:17 AM, Jason Scalia < jsca...@gmail.com >
> wrote:
> 
> 
> Hello Juan,
> 
> 
> I checked the URL and get the following:
> 
> 
> 
> DB Up!Welcome to Health Status!
> 
> 
> This is after using the nightly builds:
> 
> 
> 
> 
> [root@alpha ~]# rpm -qa | grep ovirt
> ovirt-engine-setup-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-config-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-sdk-3.2.0.2-1.20120927.git663b765.fc17.noarch
> ovirt-engine-dbscripts-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
> ovirt-engine-userportal-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
> ovirt-log-collector-3.1.0-1.fc17.noarch
> ovirt-engine-genericapi-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-webadmin-portal-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-release-fedora-4-2.noarch
> ovirt-engine-tools-common-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-restapi-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-backend-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-cli-3.2.0.5-1.20120924.git46347f0.fc17.noarch
> ovirt-engine-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-notification-service-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-setup-plugin-allinone-3.1.0-3.1345126685.git7649eed.fc17.noarch
> 
> 
> I take that back regarding errors in the web GUI as I am now browsing
> it without issue. However, I received the same error during install:
> 
> 
> 
> 
> Error: There's a problem with JBoss service.Check that it's up and
> rerun setup.
> Please check log file
> /var/log/ovirt-engine/engine-setup_2012_10_08_10_54_18.log for more
> information
> 
> 
> I'm going to setup a new test fedora f17 VM and try the install on
> there to see if I can replicate the issue. I'll report back with my
> findings.
> 
> 
> Thanks again everyone for all of the assistance.
> 
> 
> 
> On Mon, Oct 8, 2012 at 10:08 AM, Juan Hernandez < jhern...@redhat.com
> > wrote:
> 
> 
> 
> On 10/08/2012 03:59 PM, Jason Scalia wrote:
> > Hello Alon,
> > 
> 
> > Thanks for looking into this. I will try a nightly build and see if
> > I have
> > better success.
> > 
> > Hello Juan,
> > 
> > Once I encounter the error, I am indeed able to login to the web
> > GUI and
> > the administrative portal. However, I am presented with errors. Per
> > Alon's
> > suggestion, I will try a nightly build and see if I have better
> > success.
> 
> Which errors are you presented with?
> 
> My impression is that during installation you are using a host name
> that
> has some resolution problems, and that the installation process is
> not
> being able to finish because it can't connect to the status servlet
> to
> verify that the server is up and running. The URL that the
> installation
> program is trying to access is this:
> 
> http://alpha.downontheupside.net:80/OvirtEngineWeb/HealthStatus
> 
> Can you try that URL in your environment? It should give you a page
> with
> the following text:
> 
> DB Up!Welcome to Health Status!
> 
> If the engine is up and running but that fails, it probably means
> that
> you are using the wrong name or that the name doesn't resolve to an
> IP
> address correctly.
> 
> Appart from that everything seems normal in the logs that you provide
> (even the WARN and ERROR messages).
> 
> 
> 
> > 
> > Thanks all for your input. I'll report back with my findings after
> > I try a
> > nightly build.
> > 
> > On Mon, Oct 8, 2012 at 4:19 AM, Juan Hernandez <
> > jhern...@redhat.com > wrote:
> > 
> >> Jason, I guess that your engine is running. Can you check that:
> >> 
> >> service ovirt-engine status
> >> 
> >> Try to connect to the GUI ( https://yourmachine ) and see if it is
> >> available. Can you log in to the administrator portal?
> >> 
> >> On 10/08/2012 12:42 AM, Jason Scalia wrote:
>

Re: [Users] Jboss service.Check Error During Install

2012-10-08 Thread Jason Scalia
Hello,

I actually got a different error on this install:

Configuring HTTPD...   [ DONE ]
AIO: Creating storage directory... [ DONE ]
AIO: Adding Local Datacenter and cluster... [ ERROR ]
Error: could not create ovirtsdk API object
Please check log file
/var/log/ovirt-engine/engine-setup_2012_10_08_14_24_47.log for more
information

However, like my initial install, the web UI is still present and I can
login. I'm assuming these are just warnings during the install and I can
proceed from here on out. Thanks for all of the assistance everyone, it is
greatly appreciated.

On Mon, Oct 8, 2012 at 11:17 AM, Jason Scalia  wrote:

> Hello Juan,
>
> I checked the URL and get the following:
>
> DB Up!Welcome to Health Status!
>
> This is after using the nightly builds:
>
> [root@alpha ~]# rpm -qa | grep ovirt
> ovirt-engine-setup-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-config-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-sdk-3.2.0.2-1.20120927.git663b765.fc17.noarch
> ovirt-engine-dbscripts-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
> ovirt-engine-userportal-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
> ovirt-log-collector-3.1.0-1.fc17.noarch
> ovirt-engine-genericapi-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-webadmin-portal-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-release-fedora-4-2.noarch
> ovirt-engine-tools-common-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-restapi-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-backend-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-cli-3.2.0.5-1.20120924.git46347f0.fc17.noarch
> ovirt-engine-3.1.0-3.1345126685.git7649eed.fc17.noarch
> ovirt-engine-notification-service-3.1.0-3.1345126685.git7649eed.fc17.noarch
>
> ovirt-engine-setup-plugin-allinone-3.1.0-3.1345126685.git7649eed.fc17.noarch
>
> I take that back regarding errors in the web GUI as I am now browsing it
> without issue. However, I received the same error during install:
>
> Error: There's a problem with JBoss service.Check that it's up and rerun
> setup.
> Please check log file
> /var/log/ovirt-engine/engine-setup_2012_10_08_10_54_18.log for more
> information
>
> I'm going to setup a new test fedora f17 VM and try the install on there
> to see if I can replicate the issue. I'll report back with my findings.
>
> Thanks again everyone for all of the assistance.
>
> On Mon, Oct 8, 2012 at 10:08 AM, Juan Hernandez wrote:
>
>> On 10/08/2012 03:59 PM, Jason Scalia wrote:
>> > Hello Alon,
>> >
>> > Thanks for looking into this. I will try a nightly build and see if I
>> have
>> > better success.
>> >
>> > Hello Juan,
>> >
>> > Once I encounter the error, I am indeed able to login to the web GUI and
>> > the administrative portal. However, I am presented with errors. Per
>> Alon's
>> > suggestion, I will try a nightly build and see if I have better success.
>>
>> Which errors are you presented with?
>>
>> My impression is that during installation you are using a host name that
>> has some resolution problems, and that the installation process is not
>> being able to finish because it can't connect to the status servlet to
>> verify that the server is up and running. The URL that the installation
>> program is trying to access is this:
>>
>> http://alpha.downontheupside.net:80/OvirtEngineWeb/HealthStatus
>>
>> Can you try that URL in your environment? It should give you a page with
>> the following text:
>>
>> DB Up!Welcome to Health Status!
>>
>> If the engine is up and running but that fails, it probably means that
>> you are using the wrong name or that the name doesn't resolve to an IP
>> address correctly.
>>
>> Appart from that everything seems normal in the logs that you provide
>> (even the WARN and ERROR messages).
>>
>> >
>> > Thanks all for your input. I'll report back with my findings after I
>> try a
>> > nightly build.
>> >
>> > On Mon, Oct 8, 2012 at 4:19 AM, Juan Hernandez 
>> wrote:
>> >
>> >> Jason, I guess that your engine is running. Can you check that:
>> >>
>> >> service ovirt-engine status
>> >>
>> >> Try to connect to the GUI (https://yourmachine) and see if it is
>> >> available. Can you log in to the administrator portal?
>> >>
>> >> On 10/08/2012 12:42 AM, Jason Scalia wrote:
>> >>> Hello Alon,
>> >>>
>> >>> To clarify, I am using the ovirt stable packages provided in the ovirt
>> >> yum
>> >>> repo:
>> >>>
>> >>> [root@alpha ~]# rpm -qa | grep ovirt
>> >>> ovirt-engine-3.1.0-2.fc17.noarch
>> >>> ovirt-engine-tools-common-3.1.0-2.fc17.noarch
>> >>> ovirt-engine-genericapi-3.1.0-2.fc17.noarch
>> >>> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
>> >>> ovirt-engine-setup-3.1.0-2.fc17.noarch
>> >>> ovirt-engine-config-3.1.0-2.fc17.noarch
>> >>> ovirt-engine-sdk-3.2.0.2-1.fc17.noarch
>> >>> ovirt-image-uploader-3.1.0-0.gi

Re: [Users] Spice windows xp, vista and 7.

2012-10-08 Thread victor nunes
Thanks for the reply.

Is showing an error when using virt-viewer to connect to the VM.

The message "unable to connect to server graphic"

I cleaned all iptables rules and let the INPUT, OUTPUT, FORWARD, all like
ACCEPT, but still the message keeps appearing.


Anyone had this kind of problem?

Em 10 de setembro de 2012 05:30, Itamar Heim  escreveu:

> On 09/10/2012 05:06 AM, victor nunes wrote:
>
>> Hello, use of spice in windows xp and 7 environments possible?
>> Where can I find some tips on how I can install on windows spice?
>>
>>
> http://wiki.ovirt.org/wiki/**How_to_Connect_to_SPICE_**Console_With_Portal
> http://wiki.ovirt.org/wiki/**How_to_Connect_to_SPICE_**
> Console_Without_Portal
>
>  Att,
>>
>>
>>
>> --
>> “Encarada do ponto de vista da juventude, a vida parece um futuro
>> indefinidamente longo, ao passo que, na velhice, ela parece um passado
>> deveras curto. Assim, a vida no seu início se apresenta do mesmo modo
>> que as coisas quando as olhamos através de um binóculo usado ao
>> contrário; mas, ao
>> seu final, ela se parece com as coisas  tal qual são vistas quando o
>> binóculo
>> é usado de modo normal. Um homem precisa ter envelhecido e vivido
>> bastante para perceber como a vida é curta”.
>>
>>   (Poema de Arthur Schopenhauer)
>>
>>
>> __**_
>> Users mailing list
>> Users@ovirt.org
>> http://lists.ovirt.org/**mailman/listinfo/users
>>
>>
>
>


-- 
“Encarada do ponto de vista da juventude, a vida parece um futuro
indefinidamente longo, ao passo que, na velhice, ela parece um passado
deveras curto. Assim, a vida no seu início se apresenta do mesmo modo
que as coisas quando as olhamos através de um binóculo usado ao contrário;
mas, ao
seu final, ela se parece com as coisas  tal qual são vistas quando o
binóculo
é usado de modo normal. Um homem precisa ter envelhecido e vivido
bastante para perceber como a vida é curta”.

 (Poema de Arthur Schopenhauer)
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Ceph / rbd and ovirt

2012-10-08 Thread Josh Logan
We had to put oVirt work on hold when F17 would not work on the target
hardware.  A bug with SAS controllers and grub.

Once F18 is out we will take another look.

For now I'm working on using Foreman with libvirt, but I also need to work
on Ceph support there as well.

Thanks, JOSH


On Fri, Oct 5, 2012 at 5:02 PM, Ayal Baron  wrote:

> Hi Josh,
>
> - Original Message -
> >
> >
> >
> > On Sun, Sep 23, 2012 at 8:41 AM, Itamar Heim < ih...@redhat.com >
> > wrote:
> >
> >
> >
> > On 09/23/2012 05:33 PM, Josh Logan wrote:
> >
> >
> >
> >
> > On Sun, Sep 23, 2012 at 6:10 AM, Itamar Heim < ih...@redhat.com
> >
> >
> > > wrote:
> >
> > On 09/22/2012 08:58 AM, Josh Logan wrote:
> >
> >
> > I'm currently setting up an ovirt cluster and so far it looks
> > good. I
> > like the integration with Foreman http://theforeman.org/ .
> >
> > I would like to use Ceph / rbd for my storage. I saw some
> > mention of
> > patches coming in May, but I did not find any new posts.
> >
> > What is the status of this work? Is there some patches I can
> > try out?
> > I have a working Ceph cluster and a working ovirt cluster, I
> > just need a
> > way to bring them together.
> >
> > Thanks, JOSH
> >
> >
> >
> > I don't remember any active work on this right now (for sure nothing
> > like the gluster integration being done).
> > but iiuc, ceph provides posixfs support - did you try creating a
> > posixfs based storage domain?
> > (you would need a "full" host (not ovirt-node) to install ceph
> > client components on).
> >
> > Thanks,
> > Itamar
> >
> >
> >
> > I am doing my work on Fedora 17 hosts, not ovirt-node, since I know
> > this
> > will need more OS support.
> >
> > There are a few different Ceph filesystems. But the posix based one
> > is
> > the least ready for production. The rbd filesystem is integrated into
> > qemu and libvirt is the most suited for VM images.
> >
> > Are the Gluster patches available? I would like to see what that
> > feature looks like and if I can modify them for Ceph.
> > If there is a better filesystem to investigate please let me know.
> >
> > Thanks, JOSH
> >
> >
> > gluster as a native storage domain (rather than posixfs) is still in
> > reviews (and has patches only for vdsm side).
> > http://gerrit.ovirt.org/#/c/ 6856/
> >
> > you can also use NFS in the meantime if relevant for ceph.
> >
> >
> >
> > Thanks for the pointer. I'll follow that and see what I learn.
> >
> > The vdsm side may be similar since both are network disk device.
> > There are only 2 steps needed to start up a VM with rbd.
> >
> > qemu-img create -f rbd rbd:data/host1 10G
> >
> > Then to start the image for qemu add -drive
> > file=rbd:data/host1,if=none,id=drive-virtio-disk0,format=raw
> >
> > or within libvirt:
> > 
> > 
> > 
> > 
> >  > function='0x0'/>
> > 
> >
> > So the steps are simple, and maybe Gluster is more complex then I
> > should use as an example.
>
> Have you followed up on this?
> Do you need more pointers?
>
> Regards,
> Ayal.
>
> >
> > Thanks, JOSH
> >
> > ___
> > 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] Jboss service.Check Error During Install

2012-10-08 Thread Jason Scalia
Hello Juan,

I checked the URL and get the following:

DB Up!Welcome to Health Status!

This is after using the nightly builds:

[root@alpha ~]# rpm -qa | grep ovirt
ovirt-engine-setup-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-config-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-sdk-3.2.0.2-1.20120927.git663b765.fc17.noarch
ovirt-engine-dbscripts-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
ovirt-engine-userportal-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
ovirt-log-collector-3.1.0-1.fc17.noarch
ovirt-engine-genericapi-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-webadmin-portal-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-release-fedora-4-2.noarch
ovirt-engine-tools-common-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-restapi-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-backend-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-cli-3.2.0.5-1.20120924.git46347f0.fc17.noarch
ovirt-engine-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-notification-service-3.1.0-3.1345126685.git7649eed.fc17.noarch
ovirt-engine-setup-plugin-allinone-3.1.0-3.1345126685.git7649eed.fc17.noarch

I take that back regarding errors in the web GUI as I am now browsing it
without issue. However, I received the same error during install:

Error: There's a problem with JBoss service.Check that it's up and rerun
setup.
Please check log file
/var/log/ovirt-engine/engine-setup_2012_10_08_10_54_18.log for more
information

I'm going to setup a new test fedora f17 VM and try the install on there to
see if I can replicate the issue. I'll report back with my findings.

Thanks again everyone for all of the assistance.

On Mon, Oct 8, 2012 at 10:08 AM, Juan Hernandez  wrote:

> On 10/08/2012 03:59 PM, Jason Scalia wrote:
> > Hello Alon,
> >
> > Thanks for looking into this. I will try a nightly build and see if I
> have
> > better success.
> >
> > Hello Juan,
> >
> > Once I encounter the error, I am indeed able to login to the web GUI and
> > the administrative portal. However, I am presented with errors. Per
> Alon's
> > suggestion, I will try a nightly build and see if I have better success.
>
> Which errors are you presented with?
>
> My impression is that during installation you are using a host name that
> has some resolution problems, and that the installation process is not
> being able to finish because it can't connect to the status servlet to
> verify that the server is up and running. The URL that the installation
> program is trying to access is this:
>
> http://alpha.downontheupside.net:80/OvirtEngineWeb/HealthStatus
>
> Can you try that URL in your environment? It should give you a page with
> the following text:
>
> DB Up!Welcome to Health Status!
>
> If the engine is up and running but that fails, it probably means that
> you are using the wrong name or that the name doesn't resolve to an IP
> address correctly.
>
> Appart from that everything seems normal in the logs that you provide
> (even the WARN and ERROR messages).
>
> >
> > Thanks all for your input. I'll report back with my findings after I try
> a
> > nightly build.
> >
> > On Mon, Oct 8, 2012 at 4:19 AM, Juan Hernandez 
> wrote:
> >
> >> Jason, I guess that your engine is running. Can you check that:
> >>
> >> service ovirt-engine status
> >>
> >> Try to connect to the GUI (https://yourmachine) and see if it is
> >> available. Can you log in to the administrator portal?
> >>
> >> On 10/08/2012 12:42 AM, Jason Scalia wrote:
> >>> Hello Alon,
> >>>
> >>> To clarify, I am using the ovirt stable packages provided in the ovirt
> >> yum
> >>> repo:
> >>>
> >>> [root@alpha ~]# rpm -qa | grep ovirt
> >>> ovirt-engine-3.1.0-2.fc17.noarch
> >>> ovirt-engine-tools-common-3.1.0-2.fc17.noarch
> >>> ovirt-engine-genericapi-3.1.0-2.fc17.noarch
> >>> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
> >>> ovirt-engine-setup-3.1.0-2.fc17.noarch
> >>> ovirt-engine-config-3.1.0-2.fc17.noarch
> >>> ovirt-engine-sdk-3.2.0.2-1.fc17.noarch
> >>> ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
> >>> ovirt-engine-backend-3.1.0-2.fc17.noarch
> >>> ovirt-engine-setup-plugin-allinone-3.1.0-2.fc17.noarch
> >>> ovirt-engine-userportal-3.1.0-2.fc17.noarch
> >>> ovirt-engine-restapi-3.1.0-2.fc17.noarch
> >>> ovirt-engine-notification-service-3.1.0-2.fc17.noarch
> >>> ovirt-log-collector-3.1.0-0.git10d719.fc17.noarch
> >>> ovirt-engine-webadmin-portal-3.1.0-2.fc17.noarch
> >>> ovirt-engine-dbscripts-3.1.0-2.fc17.noarch
> >>> ovirt-release-fedora-4-2.noarch
> >>>
> >>> To install ovirt, I ran the following after adding the repo:
> >>>
> >>> yum install ovirt-engine-setup-plugin-allinone
> >>>
> >>> I've followed your steps provided and attached the logs.
> >>>
> >>> Thanks again for your assistance.
> >>>
> >>> On Sun, Oct 7, 2012 at 6:27 PM, Alon Bar-Lev 
> wrote:
> >>>
> 
>  - Original Message -
> > From: "Jason Scalia" 

Re: [Users] [oVirt 3.1] Spice USB support

2012-10-08 Thread Andres Gonzalez
On Mon, Oct 8, 2012 at 12:02 PM, Itamar Heim  wrote:

> On 10/08/2012 03:29 PM, Andres Gonzalez wrote:
>
>> On Mon, Oct 8, 2012 at 4:02 AM, Itamar Heim > > wrote:
>>
>> On 10/08/2012 04:29 AM, Andres Gonzalez wrote:
>>
>> Hi !!
>>
>> I have a Windows 7 VM with spice protocol with usb redirection
>> enabled
>> but I cannot access to e.g. to a pendrive.
>> It's already supported this feature ?
>>
>>
>> (adding spice-devel)
>> please note only the native spice usb mode is supported (legacy is
>> not).
>> which client?
>> which guest?
>> which ovirt version?
>>
>>
>>
>> The mode is set yo legacy, I tried to switch to native but the VM
>> doesn't starts, and show the following error: VM Win7 is down. Exit
>> message: internal error Process exited while reading console log output:
>> qemu-kvm: -device piix3-usb-uhci,id=usb,bus=pci.**0,addr=0x1.0x2:
>> Duplicate ID 'usb' for device .
>>
>
> legacy isn't relevant to ovirt (its legacy...).
> the native error was already fixed.
> which versions of ovirt engine are you using?
>
>
- oVirt version: oVirt Engine Version:3.1.0-3.19.el6

>
>
>> - client:
>> RHEV-Agent 3.0.10
>> RHEV-Block 3.0.8
>> RHEV-Network 3.0.6
>> RHEV-Serial 3.0.5
>> RHEV-Spice 3.0.5
>> RHEV-Spice-Agent 3.0.4
>> RHEV-Tools 3.0.37
>> RHEV-USB 3.0.8
>>
>
> wait, these are rhev, not ovirt?
> (rhev does have legacy usb mode)
>
>
I downloaded those package from the Internet, what are the guest packages
supposed to be installed ?

Thanks.-


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


Re: [Users] Jboss service.Check Error During Install

2012-10-08 Thread Juan Hernandez
On 10/08/2012 03:59 PM, Jason Scalia wrote:
> Hello Alon,
> 
> Thanks for looking into this. I will try a nightly build and see if I have
> better success.
> 
> Hello Juan,
> 
> Once I encounter the error, I am indeed able to login to the web GUI and
> the administrative portal. However, I am presented with errors. Per Alon's
> suggestion, I will try a nightly build and see if I have better success.

Which errors are you presented with?

My impression is that during installation you are using a host name that
has some resolution problems, and that the installation process is not
being able to finish because it can't connect to the status servlet to
verify that the server is up and running. The URL that the installation
program is trying to access is this:

http://alpha.downontheupside.net:80/OvirtEngineWeb/HealthStatus

Can you try that URL in your environment? It should give you a page with
the following text:

DB Up!Welcome to Health Status!

If the engine is up and running but that fails, it probably means that
you are using the wrong name or that the name doesn't resolve to an IP
address correctly.

Appart from that everything seems normal in the logs that you provide
(even the WARN and ERROR messages).

> 
> Thanks all for your input. I'll report back with my findings after I try a
> nightly build.
> 
> On Mon, Oct 8, 2012 at 4:19 AM, Juan Hernandez  wrote:
> 
>> Jason, I guess that your engine is running. Can you check that:
>>
>> service ovirt-engine status
>>
>> Try to connect to the GUI (https://yourmachine) and see if it is
>> available. Can you log in to the administrator portal?
>>
>> On 10/08/2012 12:42 AM, Jason Scalia wrote:
>>> Hello Alon,
>>>
>>> To clarify, I am using the ovirt stable packages provided in the ovirt
>> yum
>>> repo:
>>>
>>> [root@alpha ~]# rpm -qa | grep ovirt
>>> ovirt-engine-3.1.0-2.fc17.noarch
>>> ovirt-engine-tools-common-3.1.0-2.fc17.noarch
>>> ovirt-engine-genericapi-3.1.0-2.fc17.noarch
>>> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
>>> ovirt-engine-setup-3.1.0-2.fc17.noarch
>>> ovirt-engine-config-3.1.0-2.fc17.noarch
>>> ovirt-engine-sdk-3.2.0.2-1.fc17.noarch
>>> ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
>>> ovirt-engine-backend-3.1.0-2.fc17.noarch
>>> ovirt-engine-setup-plugin-allinone-3.1.0-2.fc17.noarch
>>> ovirt-engine-userportal-3.1.0-2.fc17.noarch
>>> ovirt-engine-restapi-3.1.0-2.fc17.noarch
>>> ovirt-engine-notification-service-3.1.0-2.fc17.noarch
>>> ovirt-log-collector-3.1.0-0.git10d719.fc17.noarch
>>> ovirt-engine-webadmin-portal-3.1.0-2.fc17.noarch
>>> ovirt-engine-dbscripts-3.1.0-2.fc17.noarch
>>> ovirt-release-fedora-4-2.noarch
>>>
>>> To install ovirt, I ran the following after adding the repo:
>>>
>>> yum install ovirt-engine-setup-plugin-allinone
>>>
>>> I've followed your steps provided and attached the logs.
>>>
>>> Thanks again for your assistance.
>>>
>>> On Sun, Oct 7, 2012 at 6:27 PM, Alon Bar-Lev  wrote:
>>>

 - Original Message -
> From: "Jason Scalia" 
> To: "Alon Bar-Lev" 
> Cc: users@ovirt.org
> Sent: Monday, October 8, 2012 12:13:58 AM
> Subject: Re: [Users] Jboss service.Check Error During Install
>
> Hello,
>
>
> The requested files are attached.
>
>
> Thanks.

 I see many issues, which may or may not be related.

 2012-10-04 22:12:37,015 ERROR
 [org.ovirt.engine.core.engineencryptutils.EncryptionUtils] (MSC service
 thread 1-3) Failed to decryptData must start with zero
 2012-10-04 22:12:37,016 ERROR
 [org.ovirt.engine.core.dal.dbbroker.generic.DBConfigUtils] (MSC service
 thread 1-3) Failed to decrypt value for property TruststorePass will be
 used encrypted value
 2012-10-04 22:33:34,020 WARN
  [org.ovirt.engine.core.dal.dbbroker.DbFacadeLocator] (MSC service
>> thread
 1-9)

 Are you use git checkout or some other version? I see this is not
>> updated
 git master.

 Can you please:
 1. stop the ovirt-engine service.
 2. execute engine-cleanup
 3. remove /var/log/ovirt-engine/*
 4. start over with engine-setup
 5. resend the logs?

 Thanks!
 Alon.

>>>
>>>
>>>
>>> ___
>>> Users mailing list
>>> Users@ovirt.org
>>> http://lists.ovirt.org/mailman/listinfo/users
>>>
>>
>>
>> --
>> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
>> 3ºD, 28016 Madrid, Spain
>> Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
>>
> 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 


-- 
Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
3ºD, 28016 Madrid, Spain
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] [oVirt 3.1] Spice USB support

2012-10-08 Thread Itamar Heim

On 10/08/2012 03:29 PM, Andres Gonzalez wrote:

On Mon, Oct 8, 2012 at 4:02 AM, Itamar Heim mailto:ih...@redhat.com>> wrote:

On 10/08/2012 04:29 AM, Andres Gonzalez wrote:

Hi !!

I have a Windows 7 VM with spice protocol with usb redirection
enabled
but I cannot access to e.g. to a pendrive.
It's already supported this feature ?


(adding spice-devel)
please note only the native spice usb mode is supported (legacy is not).
which client?
which guest?
which ovirt version?



The mode is set yo legacy, I tried to switch to native but the VM
doesn't starts, and show the following error: VM Win7 is down. Exit
message: internal error Process exited while reading console log output:
qemu-kvm: -device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2:
Duplicate ID 'usb' for device .


legacy isn't relevant to ovirt (its legacy...).
the native error was already fixed.
which versions of ovirt engine are you using?



- client:
RHEV-Agent 3.0.10
RHEV-Block 3.0.8
RHEV-Network 3.0.6
RHEV-Serial 3.0.5
RHEV-Spice 3.0.5
RHEV-Spice-Agent 3.0.4
RHEV-Tools 3.0.37
RHEV-USB 3.0.8


wait, these are rhev, not ovirt?
(rhev does have legacy usb mode)



- guest: Windows 7 bit or XP 32 bit
- oVirt version: oVirt Engine Version:3.1.0-3.19.el6




--
AGD



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


Re: [Users] Jboss service.Check Error During Install

2012-10-08 Thread Jason Scalia
Hello Alon,

Thanks for looking into this. I will try a nightly build and see if I have
better success.

Hello Juan,

Once I encounter the error, I am indeed able to login to the web GUI and
the administrative portal. However, I am presented with errors. Per Alon's
suggestion, I will try a nightly build and see if I have better success.

Thanks all for your input. I'll report back with my findings after I try a
nightly build.

On Mon, Oct 8, 2012 at 4:19 AM, Juan Hernandez  wrote:

> Jason, I guess that your engine is running. Can you check that:
>
> service ovirt-engine status
>
> Try to connect to the GUI (https://yourmachine) and see if it is
> available. Can you log in to the administrator portal?
>
> On 10/08/2012 12:42 AM, Jason Scalia wrote:
> > Hello Alon,
> >
> > To clarify, I am using the ovirt stable packages provided in the ovirt
> yum
> > repo:
> >
> > [root@alpha ~]# rpm -qa | grep ovirt
> > ovirt-engine-3.1.0-2.fc17.noarch
> > ovirt-engine-tools-common-3.1.0-2.fc17.noarch
> > ovirt-engine-genericapi-3.1.0-2.fc17.noarch
> > ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
> > ovirt-engine-setup-3.1.0-2.fc17.noarch
> > ovirt-engine-config-3.1.0-2.fc17.noarch
> > ovirt-engine-sdk-3.2.0.2-1.fc17.noarch
> > ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
> > ovirt-engine-backend-3.1.0-2.fc17.noarch
> > ovirt-engine-setup-plugin-allinone-3.1.0-2.fc17.noarch
> > ovirt-engine-userportal-3.1.0-2.fc17.noarch
> > ovirt-engine-restapi-3.1.0-2.fc17.noarch
> > ovirt-engine-notification-service-3.1.0-2.fc17.noarch
> > ovirt-log-collector-3.1.0-0.git10d719.fc17.noarch
> > ovirt-engine-webadmin-portal-3.1.0-2.fc17.noarch
> > ovirt-engine-dbscripts-3.1.0-2.fc17.noarch
> > ovirt-release-fedora-4-2.noarch
> >
> > To install ovirt, I ran the following after adding the repo:
> >
> > yum install ovirt-engine-setup-plugin-allinone
> >
> > I've followed your steps provided and attached the logs.
> >
> > Thanks again for your assistance.
> >
> > On Sun, Oct 7, 2012 at 6:27 PM, Alon Bar-Lev  wrote:
> >
> >>
> >> - Original Message -
> >>> From: "Jason Scalia" 
> >>> To: "Alon Bar-Lev" 
> >>> Cc: users@ovirt.org
> >>> Sent: Monday, October 8, 2012 12:13:58 AM
> >>> Subject: Re: [Users] Jboss service.Check Error During Install
> >>>
> >>> Hello,
> >>>
> >>>
> >>> The requested files are attached.
> >>>
> >>>
> >>> Thanks.
> >>
> >> I see many issues, which may or may not be related.
> >>
> >> 2012-10-04 22:12:37,015 ERROR
> >> [org.ovirt.engine.core.engineencryptutils.EncryptionUtils] (MSC service
> >> thread 1-3) Failed to decryptData must start with zero
> >> 2012-10-04 22:12:37,016 ERROR
> >> [org.ovirt.engine.core.dal.dbbroker.generic.DBConfigUtils] (MSC service
> >> thread 1-3) Failed to decrypt value for property TruststorePass will be
> >> used encrypted value
> >> 2012-10-04 22:33:34,020 WARN
> >>  [org.ovirt.engine.core.dal.dbbroker.DbFacadeLocator] (MSC service
> thread
> >> 1-9)
> >>
> >> Are you use git checkout or some other version? I see this is not
> updated
> >> git master.
> >>
> >> Can you please:
> >> 1. stop the ovirt-engine service.
> >> 2. execute engine-cleanup
> >> 3. remove /var/log/ovirt-engine/*
> >> 4. start over with engine-setup
> >> 5. resend the logs?
> >>
> >> Thanks!
> >> Alon.
> >>
> >
> >
> >
> > ___
> > Users mailing list
> > Users@ovirt.org
> > http://lists.ovirt.org/mailman/listinfo/users
> >
>
>
> --
> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
> 3ºD, 28016 Madrid, Spain
> Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] [oVirt 3.1] Spice USB support

2012-10-08 Thread Andres Gonzalez
On Mon, Oct 8, 2012 at 4:02 AM, Itamar Heim  wrote:

> On 10/08/2012 04:29 AM, Andres Gonzalez wrote:
>
>> Hi !!
>>
>> I have a Windows 7 VM with spice protocol with usb redirection enabled
>> but I cannot access to e.g. to a pendrive.
>> It's already supported this feature ?
>>
>
> (adding spice-devel)
> please note only the native spice usb mode is supported (legacy is not).
> which client?
> which guest?
> which ovirt version?
>


The mode is set yo legacy, I tried to switch to native but the VM doesn't
starts, and show the following error: VM Win7 is down. Exit message:
internal error Process exited while reading console log output: qemu-kvm:
-device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2: Duplicate ID 'usb'
for device .

- client:
RHEV-Agent 3.0.10
RHEV-Block 3.0.8
RHEV-Network 3.0.6
RHEV-Serial 3.0.5
RHEV-Spice 3.0.5
RHEV-Spice-Agent 3.0.4
RHEV-Tools 3.0.37
RHEV-USB 3.0.8

- guest: Windows 7 bit or XP 32 bit
- oVirt version: oVirt Engine Version: 3.1.0-3.19.el6




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


Re: [Users] Run Once won't change boot sequence

2012-10-08 Thread Alexandre Santos
Ok! Will do that next time :-)
Thanks a lot!

Alex

2012/10/8 Mike Burns 

> On Mon, 2012-10-08 at 11:40 +0100, Alexandre Santos wrote:
> > Hello again,
> > to install my VMs, I create them without CDROM and booting firstly
> > from the HD. Then I go and choose "Run Once" and choose the ISO I want
> > to use and boot from CDROM, on boot options. After installing the OS,
> > I reboot and the first boot is again the CDROM. I have to shutdown the
> > VM so the configuration chosen with HD being the first boot option is
> > again the default.
> >
>
> This sounds like the VM was just rebooted after installation.  The boot
> order is kept from the time you say Run Once until the VM is shutdown
> completely.  A reboot keeps it the same.
>
> One option to solve this is to set the HD as the first boot device and
> the CDRom as the second.  Then, when it boots the first time, since
> there is nothing installed, it will boot from CD, then on reboot, it
> will boot from HD.
>
> You could also detach the cd from the VM before rebooting.
>
> Mike
>
> > Alex
> > ___
> > 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] Call for Agenda Items -- oVirt Weekly Sync 2012-10-10

2012-10-08 Thread Mike Burns
Meeting Time and Place
oVirt Weekly Sync
  * Wednesdays @ 15:00 UTC (may change during DST changes) - always
at 7:00am US Pacific, 10:00am US Eastern.
  * To see in your timezone date -d 'WEDNESDAY 1000 EDT'
  * On IRC: #ovirt on irc.oftc.net

This is the agenda for the 2012-10-10 meeting:

* Status of Next Release
* Sub-project reports (engine, vdsm, node, infra)
* Workshops

If you have other topics, please reply to me and I will add them to the
agenda.  If you propose a topic, please be prepared to lead the
discussion during the meeting.

Thanks

Mike

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


Re: [Users] Nightly Builds, was Authentication for REST APIs?

2012-10-08 Thread Mike Burns
On Fri, 2012-10-05 at 14:02 -0400, Steve Gordon wrote:
> - Original Message -
> > From: "Brian Vetter" 
> > To: "Itamar Heim" 
> > Cc: users@ovirt.org
> > Sent: Friday, October 5, 2012 12:03:13 PM
> > Subject: Re: [Users] Nightly Builds, was Authentication for REST APIs?
> > 
> > I found instructions on the wiki for using nightly builds at:
> > 
> > http://wiki.ovirt.org/wiki/Installing_ovirt-engine_from_rpm
> > 
> > The instructions didn't work. In particular, the ovirt-engine.repo
> > file was not found at the provided url.
> > http://www.ovirt.org/releases/nightly/fedora/16/ovirt-engine.repo
> > 
> > I did find an ovirt-engine.repo file at:
> > http://www.ovirt.org/releases/nightly/rpm/Fedora/17/ovirt-engine.repo
> > 
> > The contents of that repo file point it back to the
> > releases/3.1/rpm/Fedora/17 directory. I'm presuming that if I change
> > the baseurl to releases/nightly/rpm/... it will all work (which I'll
> > be doing this afternoon).
> > 
> > In any case, someone might want to fix the ovirt-engine.repo file in
> > the nightly tree and then update the urls in the wiki.
> > 
> > Brian
> 
> I would recommend using this package to install the repo file:
> 
> http://www.ovirt.org/releases/ovirt-release-fedora.noarch.rpm
> 
> It includes definitions for both the stable and nightly repositories - 
> defaulting to stable. You can:
> 
> yum install ovirt-engine --enablerepo=ovirt-nightly
> 
> Or enable it in the /etc/yum.repos.d/ovirt.repo file. Agree that the other 
> repo files littering the directory structure should be cleaned up (I thought 
> they already had been). Who has access to do that?

Done.  All .repo files removed from releases.

Mike
> 
> Steve
> ___
> 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-node install hangs

2012-10-08 Thread Mike Burns
On Mon, 2012-10-08 at 09:54 +0100, Alexandre Santos wrote:
> 
> 
> 2012/10/8 Fabian Deutsch 
> Am Montag, den 08.10.2012, 09:24 +0100 schrieb Alexandre
> Santos:
> > 2012/10/8 Fabian Deutsch 
> > Hey,
> >
> > Am Sonntag, den 07.10.2012, 15:29 +0100 schrieb
> Alexandre
> > Santos:
> > > Hi,
> > > I'm trying to install the ovirt-node iso image on
> a SATA
> > disk and when
> > > it gets to the screen where it shows 25% completed
> the
> > kernel hangs. I
> > > can't connect using a serial console to see what
> has
> > happened. If I
> > > reboot using a usb linux disk I see that the SATA
> disk has
> > been
> > > formated and the partitions that existed before
> disappeared,
> > being
> > > there just one partition of type "ee"
> >
> >
> > Is there any error displayed when kernel hangs at
> 25%? And it
> > can take
> > some time to pass the 25% (up to ~2min or so).
> >
> > No, I think it's a kernel hang because the lights on the
> keyboard halt
> > and I can't change to tty2, etc.. I even changed to tty2 and
> waited to
> > see if there were some errors but nothing. I've read that
> "tty8" was
> > the logging console but no luck also.
> > BTW, I tried with an IDE disk and the result was the same.
> 
> 
> Mh, okay.
> Could you try booting without the rhgb and quiet kernel
> arguments. I
> hope that some errors will be displayed on the screen so we
> get an idea
> about the problem.
> 
> >
> > > If I use a 8 GB usb pen-drive instead of the SATA
> disk, the
> > > installation comes to an end and I reboot but then
> I get
> > some error
> > > about not getting /dev/mapper/by-name/Root and the
> boot
> > fails to a
> > > dracut shell.
> > > Any ideas?
> >
> >
> > In the dracut shell, could you run blkid and post
> the results?
> >
> > I noticed that the USB Disk was named RootBackup instead of
> Root... I
> > then rebooted and chose uninstall and then installed oVirt
> Node from
> > scratch and now it worked.

Glad it worked the second time.  There should be 4 partitions on the
disk.  

Partition 1 is for UEFI or bios_boot depending on your machine type.
Partition 2 and Partition 3 are Root and RootBackup.  So seeing a
RootBackup is correct.  Not seeing a Root is incorrect.  If you rebooted
the host in the middle of the install, or if the install hung for some
reason, I can see that situation happening and see it working after
uninstall/install.  

> > I can't activate Networking because I have that "no
> hostname" error
> > mentioned in another post. I think it's related to that...

You can't activate networking at all?  That is news to me.  The node
should work perfectly fine with or without a FQDN.

> 
> 
> Yes, I've also seen the hostname error. And I've also seen
> some problems
> with the rootfs lately.

Have you seen these issues with the 2.5.2 build?  Or only master branch
builds?  

> Could you provide a screenshot/dump of the console with that
> error?
> 
> - fabian
> 
> 
> Ok! I'll send them as soon as possible.
> 
> Alex 
> 
> 
> ___
> 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] Run Once won't change boot sequence

2012-10-08 Thread Mike Burns
On Mon, 2012-10-08 at 11:40 +0100, Alexandre Santos wrote:
> Hello again,
> to install my VMs, I create them without CDROM and booting firstly
> from the HD. Then I go and choose "Run Once" and choose the ISO I want
> to use and boot from CDROM, on boot options. After installing the OS,
> I reboot and the first boot is again the CDROM. I have to shutdown the
> VM so the configuration chosen with HD being the first boot option is
> again the default.
> 

This sounds like the VM was just rebooted after installation.  The boot
order is kept from the time you say Run Once until the VM is shutdown
completely.  A reboot keeps it the same.

One option to solve this is to set the HD as the first boot device and
the CDRom as the second.  Then, when it boots the first time, since
there is nothing installed, it will boot from CD, then on reboot, it
will boot from HD.  

You could also detach the cd from the VM before rebooting.

Mike

> Alex
> ___
> 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 Node 2.5.2 ISO - hostname (command) missing

2012-10-08 Thread Mike Burns
On Mon, 2012-10-08 at 10:38 +0200, Fabian Deutsch wrote:
> Am Sonntag, den 07.10.2012, 17:01 +0200 schrieb Winfried de Heiden:
> > Hi all,
> > 
> > While setting up the network, oVirt node is complaining hostname is 
> > missing. And yes it is: the hostname command is not installed:
> > 
> > [root@localhost vdsm]# which hostname
> > /usr/bin/which: no hostname in 
> > (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
> 
> Thanks,
> 
> I opened https://bugzilla.redhat.com/show_bug.cgi?id=863975 for this
> issue.

This bug is fixed, just after the branch for 2.5.x builds.  

http://gerrit.ovirt.org/#/c/7296/

Mike
> 
> - fabian
> ___
> 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] Run Once won't change boot sequence

2012-10-08 Thread Alexandre Santos
Hello again,
to install my VMs, I create them without CDROM and booting firstly from the
HD. Then I go and choose "Run Once" and choose the ISO I want to use and
boot from CDROM, on boot options. After installing the OS, I reboot and the
first boot is again the CDROM. I have to shutdown the VM so the
configuration chosen with HD being the first boot option is again the
default.

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


Re: [Users] oVirt Node 2.5.2 ISO - auto_disk_leases=0, require_lease_for_disks=0

2012-10-08 Thread Winfried de Heiden
Hi,

Bug report created: https://bugzilla.redhat.com/show_bug.cgi?id=863980

Winfried

Op 08-10-12 10:40, Fabian Deutsch schreef:
>> I installed ovirt node using the new oVirt Node 2.5.2 ISO. NFS works 
>> > fine now. However: I cannot start any virtual machine, neither new 
>> > created of imported old ones. I'm using local storage.
>> > 
>> > /var/log/vdsm/libvirt.log ends with:
>> > 
>> > 2012-10-07 14:54:03.693+: 22744: error : 
>> > virNetClientProgramDispatchError:174 : internal error unsupported 
>> > configuration: Read/write, exclusive access, disks were present, but no 
>> > leases specified

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


Re: [Users] ovirt-node install hangs

2012-10-08 Thread Alexandre Santos
2012/10/8 Fabian Deutsch 

> Am Montag, den 08.10.2012, 09:24 +0100 schrieb Alexandre Santos:
> > 2012/10/8 Fabian Deutsch 
> > Hey,
> >
> > Am Sonntag, den 07.10.2012, 15:29 +0100 schrieb Alexandre
> > Santos:
> > > Hi,
> > > I'm trying to install the ovirt-node iso image on a SATA
> > disk and when
> > > it gets to the screen where it shows 25% completed the
> > kernel hangs. I
> > > can't connect using a serial console to see what has
> > happened. If I
> > > reboot using a usb linux disk I see that the SATA disk has
> > been
> > > formated and the partitions that existed before disappeared,
> > being
> > > there just one partition of type "ee"
> >
> >
> > Is there any error displayed when kernel hangs at 25%? And it
> > can take
> > some time to pass the 25% (up to ~2min or so).
> >
> > No, I think it's a kernel hang because the lights on the keyboard halt
> > and I can't change to tty2, etc.. I even changed to tty2 and waited to
> > see if there were some errors but nothing. I've read that "tty8" was
> > the logging console but no luck also.
> > BTW, I tried with an IDE disk and the result was the same.
>
> Mh, okay.
> Could you try booting without the rhgb and quiet kernel arguments. I
> hope that some errors will be displayed on the screen so we get an idea
> about the problem.
>
> >
> > > If I use a 8 GB usb pen-drive instead of the SATA disk, the
> > > installation comes to an end and I reboot but then I get
> > some error
> > > about not getting /dev/mapper/by-name/Root and the boot
> > fails to a
> > > dracut shell.
> > > Any ideas?
> >
> >
> > In the dracut shell, could you run blkid and post the results?
> >
> > I noticed that the USB Disk was named RootBackup instead of Root... I
> > then rebooted and chose uninstall and then installed oVirt Node from
> > scratch and now it worked.
> > I can't activate Networking because I have that "no hostname" error
> > mentioned in another post. I think it's related to that...
>
> Yes, I've also seen the hostname error. And I've also seen some problems
> with the rootfs lately.
> Could you provide a screenshot/dump of the console with that error?
>
> - fabian
>
>
Ok! I'll send them as soon as possible.

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


Re: [Users] ovirt-node install hangs

2012-10-08 Thread Fabian Deutsch
Am Montag, den 08.10.2012, 09:24 +0100 schrieb Alexandre Santos:
> 2012/10/8 Fabian Deutsch 
> Hey,
> 
> Am Sonntag, den 07.10.2012, 15:29 +0100 schrieb Alexandre
> Santos:
> > Hi,
> > I'm trying to install the ovirt-node iso image on a SATA
> disk and when
> > it gets to the screen where it shows 25% completed the
> kernel hangs. I
> > can't connect using a serial console to see what has
> happened. If I
> > reboot using a usb linux disk I see that the SATA disk has
> been
> > formated and the partitions that existed before disappeared,
> being
> > there just one partition of type "ee"
> 
> 
> Is there any error displayed when kernel hangs at 25%? And it
> can take
> some time to pass the 25% (up to ~2min or so).
> 
> No, I think it's a kernel hang because the lights on the keyboard halt
> and I can't change to tty2, etc.. I even changed to tty2 and waited to
> see if there were some errors but nothing. I've read that "tty8" was
> the logging console but no luck also.
> BTW, I tried with an IDE disk and the result was the same.

Mh, okay.
Could you try booting without the rhgb and quiet kernel arguments. I
hope that some errors will be displayed on the screen so we get an idea
about the problem.

> 
> > If I use a 8 GB usb pen-drive instead of the SATA disk, the
> > installation comes to an end and I reboot but then I get
> some error
> > about not getting /dev/mapper/by-name/Root and the boot
> fails to a
> > dracut shell.
> > Any ideas?
> 
> 
> In the dracut shell, could you run blkid and post the results?
> 
> I noticed that the USB Disk was named RootBackup instead of Root... I
> then rebooted and chose uninstall and then installed oVirt Node from
> scratch and now it worked.
> I can't activate Networking because I have that "no hostname" error
> mentioned in another post. I think it's related to that...

Yes, I've also seen the hostname error. And I've also seen some problems
with the rootfs lately.
Could you provide a screenshot/dump of the console with that error?

- fabian



signature.asc
Description: This is a digitally signed message part
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt Node 2.5.2 ISO - auto_disk_leases=0, require_lease_for_disks=0

2012-10-08 Thread Fabian Deutsch
Am Sonntag, den 07.10.2012, 16:57 +0200 schrieb Winfried de Heiden:
> Hi all,
> 
> I installed ovirt node using the new oVirt Node 2.5.2 ISO. NFS works 
> fine now. However: I cannot start any virtual machine, neither new 
> created of imported old ones. I'm using local storage.
> 
> /var/log/vdsm/libvirt.log ends with:
> 
> 2012-10-07 14:54:03.693+: 22744: error : 
> virNetClientProgramDispatchError:174 : internal error unsupported 
> configuration: Read/write, exclusive access, disks were present, but no 
> leases specified

Hey,

could you file a bug against the vdsm component 
https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=vdsm

Thanks
fabian


signature.asc
Description: This is a digitally signed message part
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt Node 2.5.2 ISO - hostname (command) missing

2012-10-08 Thread Fabian Deutsch
Am Sonntag, den 07.10.2012, 17:01 +0200 schrieb Winfried de Heiden:
> Hi all,
> 
> While setting up the network, oVirt node is complaining hostname is 
> missing. And yes it is: the hostname command is not installed:
> 
> [root@localhost vdsm]# which hostname
> /usr/bin/which: no hostname in 
> (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)

Thanks,

I opened https://bugzilla.redhat.com/show_bug.cgi?id=863975 for this
issue.

- fabian


signature.asc
Description: This is a digitally signed message part
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] ovirt-node install hangs

2012-10-08 Thread Alexandre Santos
2012/10/8 Fabian Deutsch 

> Hey,
>
> Am Sonntag, den 07.10.2012, 15:29 +0100 schrieb Alexandre Santos:
> > Hi,
> > I'm trying to install the ovirt-node iso image on a SATA disk and when
> > it gets to the screen where it shows 25% completed the kernel hangs. I
> > can't connect using a serial console to see what has happened. If I
> > reboot using a usb linux disk I see that the SATA disk has been
> > formated and the partitions that existed before disappeared, being
> > there just one partition of type "ee"
>
> Is there any error displayed when kernel hangs at 25%? And it can take
> some time to pass the 25% (up to ~2min or so).
>

No, I think it's a kernel hang because the lights on the keyboard halt and
I can't change to tty2, etc.. I even changed to tty2 and waited to see if
there were some errors but nothing. I've read that "tty8" was the logging
console but no luck also.
BTW, I tried with an IDE disk and the result was the same.

>
> > If I use a 8 GB usb pen-drive instead of the SATA disk, the
> > installation comes to an end and I reboot but then I get some error
> > about not getting /dev/mapper/by-name/Root and the boot fails to a
> > dracut shell.
> > Any ideas?
>
> In the dracut shell, could you run blkid and post the results?
>

I noticed that the USB Disk was named RootBackup instead of Root... I then
rebooted and chose uninstall and then installed oVirt Node from scratch and
now it worked.
I can't activate Networking because I have that "no hostname" error
mentioned in another post. I think it's related to that...

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


Re: [Users] Jboss service.Check Error During Install

2012-10-08 Thread Juan Hernandez
Jason, I guess that your engine is running. Can you check that:

service ovirt-engine status

Try to connect to the GUI (https://yourmachine) and see if it is
available. Can you log in to the administrator portal?

On 10/08/2012 12:42 AM, Jason Scalia wrote:
> Hello Alon,
> 
> To clarify, I am using the ovirt stable packages provided in the ovirt yum
> repo:
> 
> [root@alpha ~]# rpm -qa | grep ovirt
> ovirt-engine-3.1.0-2.fc17.noarch
> ovirt-engine-tools-common-3.1.0-2.fc17.noarch
> ovirt-engine-genericapi-3.1.0-2.fc17.noarch
> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
> ovirt-engine-setup-3.1.0-2.fc17.noarch
> ovirt-engine-config-3.1.0-2.fc17.noarch
> ovirt-engine-sdk-3.2.0.2-1.fc17.noarch
> ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
> ovirt-engine-backend-3.1.0-2.fc17.noarch
> ovirt-engine-setup-plugin-allinone-3.1.0-2.fc17.noarch
> ovirt-engine-userportal-3.1.0-2.fc17.noarch
> ovirt-engine-restapi-3.1.0-2.fc17.noarch
> ovirt-engine-notification-service-3.1.0-2.fc17.noarch
> ovirt-log-collector-3.1.0-0.git10d719.fc17.noarch
> ovirt-engine-webadmin-portal-3.1.0-2.fc17.noarch
> ovirt-engine-dbscripts-3.1.0-2.fc17.noarch
> ovirt-release-fedora-4-2.noarch
> 
> To install ovirt, I ran the following after adding the repo:
> 
> yum install ovirt-engine-setup-plugin-allinone
> 
> I've followed your steps provided and attached the logs.
> 
> Thanks again for your assistance.
> 
> On Sun, Oct 7, 2012 at 6:27 PM, Alon Bar-Lev  wrote:
> 
>>
>> - Original Message -
>>> From: "Jason Scalia" 
>>> To: "Alon Bar-Lev" 
>>> Cc: users@ovirt.org
>>> Sent: Monday, October 8, 2012 12:13:58 AM
>>> Subject: Re: [Users] Jboss service.Check Error During Install
>>>
>>> Hello,
>>>
>>>
>>> The requested files are attached.
>>>
>>>
>>> Thanks.
>>
>> I see many issues, which may or may not be related.
>>
>> 2012-10-04 22:12:37,015 ERROR
>> [org.ovirt.engine.core.engineencryptutils.EncryptionUtils] (MSC service
>> thread 1-3) Failed to decryptData must start with zero
>> 2012-10-04 22:12:37,016 ERROR
>> [org.ovirt.engine.core.dal.dbbroker.generic.DBConfigUtils] (MSC service
>> thread 1-3) Failed to decrypt value for property TruststorePass will be
>> used encrypted value
>> 2012-10-04 22:33:34,020 WARN
>>  [org.ovirt.engine.core.dal.dbbroker.DbFacadeLocator] (MSC service thread
>> 1-9)
>>
>> Are you use git checkout or some other version? I see this is not updated
>> git master.
>>
>> Can you please:
>> 1. stop the ovirt-engine service.
>> 2. execute engine-cleanup
>> 3. remove /var/log/ovirt-engine/*
>> 4. start over with engine-setup
>> 5. resend the logs?
>>
>> Thanks!
>> Alon.
>>
> 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 


-- 
Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
3ºD, 28016 Madrid, Spain
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Jboss service.Check Error During Install

2012-10-08 Thread Alon Bar-Lev
Hello,

Issues are:
---
012-10-07 18:32:56,580 WARN  [org.ovirt.engine.core.utils.ConfigUtilsBase] (MSC 
service thread 1-6) Could not find enum value for option: CbcCheckOnVdsChange
2012-10-07 18:32:56,585 WARN  [org.ovirt.engine.core.utils.ConfigUtilsBase] 
(MSC service thread 1-6) Could not find enum value for option: CAEngineKey
2012-10-07 18:32:56,593 WARN  [org.ovirt.engine.core.utils.ConfigUtilsBase] 
(MSC service thread 1-6) Could not find enum value for option: MinimalETLVersion
2012-10-07 18:32:56,599 WARN  [org.ovirt.engine.core.utils.ConfigUtilsBase] 
(MSC service thread 1-6) Could not find enum value for option: 
SQLServerI18NPrefix
2012-10-07 18:32:56,654 WARN  [org.ovirt.engine.core.utils.ConfigUtilsBase] 
(MSC service thread 1-6) Could not find enum value for option: ScriptsPath
2012-10-07 18:32:56,707 ERROR 
[org.ovirt.engine.core.engineencryptutils.EncryptionUtils] (MSC service thread 
1-6) Failed to decryptData must start with zero
2012-10-07 18:32:56,707 ERROR 
[org.ovirt.engine.core.dal.dbbroker.generic.DBConfigUtils] (MSC service thread 
1-6) Failed to decrypt value for property TruststorePass will be used encrypted 
value
---

It is as database is not initialized correctly. But I don't see any error in 
the setup log.

There were many fixes since the "stable" that were fix in the git master. So 
unless someone else have an idea, I would have tried the nightly.

Regards,
Alon

- Original Message -
> From: "Jason Scalia" 
> To: "Alon Bar-Lev" 
> Cc: users@ovirt.org
> Sent: Monday, October 8, 2012 12:42:10 AM
> Subject: Re: [Users] Jboss service.Check Error During Install
> 
> Hello Alon,
> 
> 
> To clarify, I am using the ovirt stable packages provided in the
> ovirt yum repo:
> 
> 
> 
> [root@alpha ~]# rpm -qa | grep ovirt
> ovirt-engine-3.1.0-2.fc17.noarch
> ovirt-engine-tools-common-3.1.0-2.fc17.noarch
> ovirt-engine-genericapi-3.1.0-2.fc17.noarch
> ovirt-iso-uploader-3.1.0-0.git1841d9.fc17.noarch
> ovirt-engine-setup-3.1.0-2.fc17.noarch
> ovirt-engine-config-3.1.0-2.fc17.noarch
> ovirt-engine-sdk-3.2.0.2-1.fc17.noarch
> ovirt-image-uploader-3.1.0-0.git9c42c8.fc17.noarch
> ovirt-engine-backend-3.1.0-2.fc17.noarch
> ovirt-engine-setup-plugin-allinone-3.1.0-2.fc17.noarch
> ovirt-engine-userportal-3.1.0-2.fc17.noarch
> ovirt-engine-restapi-3.1.0-2.fc17.noarch
> ovirt-engine-notification-service-3.1.0-2.fc17.noarch
> ovirt-log-collector-3.1.0-0.git10d719.fc17.noarch
> ovirt-engine-webadmin-portal-3.1.0-2.fc17.noarch
> ovirt-engine-dbscripts-3.1.0-2.fc17.noarch
> ovirt-release-fedora-4-2.noarch
> 
> 
> To install ovirt, I ran the following after adding the repo:
> 
> 
> yum install ovirt-engine-setup-plugin-allinone
> 
> 
> I've followed your steps provided and attached the logs.
> 
> 
> Thanks again for your assistance.
> 
> On Sun, Oct 7, 2012 at 6:27 PM, Alon Bar-Lev < alo...@redhat.com >
> wrote:
> 
> 
> 
> 
> - Original Message -
> > From: "Jason Scalia" < jsca...@gmail.com >
> 
> > To: "Alon Bar-Lev" < alo...@redhat.com >
> > Cc: users@ovirt.org
> > Sent: Monday, October 8, 2012 12:13:58 AM
> > Subject: Re: [Users] Jboss service.Check Error During Install
> > 
> > Hello,
> > 
> > 
> 
> > The requested files are attached.
> > 
> > 
> > Thanks.
> 
> I see many issues, which may or may not be related.
> 
> 2012-10-04 22:12:37,015 ERROR
> [org.ovirt.engine.core.engineencryptutils.EncryptionUtils] (MSC
> service thread 1-3) Failed to decryptData must start with zero
> 2012-10-04 22:12:37,016 ERROR
> [org.ovirt.engine.core.dal.dbbroker.generic.DBConfigUtils] (MSC
> service thread 1-3) Failed to decrypt value for property
> TruststorePass will be used encrypted value
> 2012-10-04 22:33:34,020 WARN
> [org.ovirt.engine.core.dal.dbbroker.DbFacadeLocator] (MSC service
> thread 1-9)
> 
> Are you use git checkout or some other version? I see this is not
> updated git master.
> 
> Can you please:
> 1. stop the ovirt-engine service.
> 2. execute engine-cleanup
> 3. remove /var/log/ovirt-engine/*
> 4. start over with engine-setup
> 5. resend the logs?
> 
> Thanks!
> Alon.
> 
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] ovirt-node install hangs

2012-10-08 Thread Fabian Deutsch
Hey,

Am Sonntag, den 07.10.2012, 15:29 +0100 schrieb Alexandre Santos:
> Hi,
> I'm trying to install the ovirt-node iso image on a SATA disk and when
> it gets to the screen where it shows 25% completed the kernel hangs. I
> can't connect using a serial console to see what has happened. If I
> reboot using a usb linux disk I see that the SATA disk has been
> formated and the partitions that existed before disappeared, being
> there just one partition of type "ee"

Is there any error displayed when kernel hangs at 25%? And it can take
some time to pass the 25% (up to ~2min or so).

> If I use a 8 GB usb pen-drive instead of the SATA disk, the
> installation comes to an end and I reboot but then I get some error
> about not getting /dev/mapper/by-name/Root and the boot fails to a
> dracut shell.
> Any ideas?

In the dracut shell, could you run blkid and post the results?

Greetings
fabian


signature.asc
Description: This is a digitally signed message part
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users