Re: [Users] family cpu compatibility item

2012-09-24 Thread Laszlo Hornyak

- Original Message -
 From: Nathanaël Blanchet blanc...@abes.fr
 To: users@ovirt.org
 Sent: Monday, September 24, 2012 10:15:03 AM
 Subject: [Users] family cpu compatibility item
 
 Hi,
 
 Does anyone know what importance have the family cpu compatibility
 item into the cluster tab? Is there any consequence on the host
 performance?

maybe not much performance, but since KVM is doing native virtualization, you 
have to set a processor family in your cluster and hosts built with older CPU's 
will not be able to join the cluster iirc.

 
 --
 Nathanaël Blanchet
 
 Supervision réseau
 Pôle exploitation et maintenance
 Département des systèmes d'information
 227 avenue Professeur-Jean-Louis-Viala
 34193 MONTPELLIER CEDEX 5
 Tél. 33 (0)4 67 54 84 55
 Fax  33 (0)4 67 54 84 14
 blanc...@abes.fr
 
 ___
 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] family cpu compatibility item

2012-09-24 Thread Itamar Heim

On 09/24/2012 10:15 AM, Nathanaël Blanchet wrote:

Hi,

Does anyone know what importance have the family cpu compatibility
item into the cluster tab? Is there any consequence on the host
performance?



it should affect the performance of guests being able to leverage the 
flags exposed by kvm for these newer models to the guests.


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


Re: [Users] Installation problem

2012-09-24 Thread Dave Neary

Hi,

On 09/21/2012 08:10 PM, Dave Neary wrote:

After removing and re-running engine-setup, I try once again to run
ovirt-engine. I get the following error in the logs:
== /var/log/ovirt-engine/console.log ==
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.


I traced this to two unrecognised options being passed to the Java 
process by /usr/share/ovirt-engine/scripts/engine-service.py: 
-XX:+UseCompressedOops and -XX:+TieredCompilation


By removing these from the command line, I make progress. I now have an 
oVirt web application displaying in my browser!


I also noticed this typo in the same file:

engineArgs.extend([
# Virtual machine options:
-server,
-XX:+UseCompressedOops,
-XX:+TieredCompilation,
-Xms%s % engineHeapMin,
-Xms%s % engineHeapMax,
// This should be -Xmx%s to set the max heap size
-XX:PermSize=%s % enginePermMin,
-XX:MaxPermSize=%s % enginePermMax,
-Djava.net.preferIPv4Stack=true,
-Dsun.rmi.dgc.client.gcInterval=360,
-Dsun.rmi.dgc.server.gcInterval=360,
-Djava.awt.headless=true,
])

Cheers,
Dave.

--
Dave Neary
Community Action and Impact
Open Source and Standards, Red Hat
Ph: +33 9 50 71 55 62 / Cell: +33 6 77 01 92 13
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Is there a way to force remove a host?

2012-09-24 Thread Dominic Kaiser
This conversation is fine but if I want to force remove no matter what I
should be able to from the GUI.  The nodes are no longer available I want
to get rid of them ovirt does not let me.  I can delete from database but
why not from the GUI?  I am sure others may run into this problem as well.

Dominic
On Sep 22, 2012 4:19 PM, Eli Mesika emes...@redhat.com wrote:



 - Original Message -
  From: Douglas Landgraf dougsl...@redhat.com
  To: Dominic Kaiser domi...@bostonvineyard.org
  Cc: Eli Mesika emes...@redhat.com, users@ovirt.org, Robert
 Middleswarth rob...@middleswarth.net
  Sent: Friday, September 21, 2012 8:12:27 PM
  Subject: Re: [Users] Is there a way to force remove a host?
 
  Hi Dominic,
 
  On 09/20/2012 12:11 PM, Dominic Kaiser wrote:
   Sorry I did not explain.
  
   I had tried to remove the host and had not luck troubleshooting it.
I
   then had removed it and used it for a storage unit reinstalling
   fedora
   17.  I foolishly thought that I could just remove the host
   manually.
It physically is not there. (My fault I know)  Is there a way that
   you know of to remove a host brute force.
  
   dk
 
  Fell free to try the below script (not part of official project) for
  brute force:
 
  (from the engine side)
  # yum install python-psycopg2 -y
  # wget
 
 https://raw.github.com/dougsland/misc-rhev/master/engine_force_remove_Host.py
  # (edit the file and change the db password)
  # python ./engine_force_remove_Host.py

 Hi , had looked in the Python script you had provided:
 First, I must say that handling the database directly may leave DB in
 inconsistent state, therefore, if there is no other option, the database
 should be backed up prior to this operation.
 In addition, I do not like the execution of the SQL statements in the
 script.
 There is a SP called DeleteVds(v_vds_id UUID) and you should use that
 since it encapsulates all details.
 For example, your script does not handle permission clean-up as the SP
 does and therefore leaves garbage in the database.
 In addition, a failure in your script may leave database in inconsistent
 state while the SP is executed in one transaction and will leave DB
 consistent.
 So, in short I would prefer in this case that the relevant SP will do the
 clean-up since this is the one that is used by the code and that insures
 (at least I hope so) , that all related entities are removed as well.


 
  Thanks
 
  --
  Cheers
  Douglas
 
 

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


[Users] How to change number of cpu cores in Ovirt 3.1 with the python sdk.

2012-09-24 Thread Don Dupuis
I am using Ovirt 3.1 with the ovirt-engine-sdk. I have written a
python script using this sdk but I can't seem to get the
parameters right to change the cpu cores when creating the vm.  All
the other parameters I want to change works just fine. Does anyone
have an example on how to do this.

Thanks

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


Re: [Users] How to change number of cpu cores in Ovirt 3.1 with the python sdk.

2012-09-24 Thread Itamar Heim

On 09/24/2012 09:56 PM, Don Dupuis wrote:

I am using Ovirt 3.1 with the ovirt-engine-sdk. I have written a
python script using this sdk but I can't seem to get the
parameters right to change the cpu cores when creating the vm.  All
the other parameters I want to change works just fine. Does anyone
have an example on how to do this.


any reason you are trying to change number of cores per socket and not 
just the number of sockets?


the API has:
cpu
topology cores=1 sockets=1/
/cpu

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


Re: [Users] Is there a way to force remove a host?

2012-09-24 Thread Jason Brooks

On Mon 24 Sep 2012 01:24:44 PM PDT, Itamar Heim wrote:

On 09/24/2012 08:49 PM, Dominic Kaiser wrote:

This conversation is fine but if I want to force remove no matter what I
should be able to from the GUI.  The nodes are no longer available I
want to get rid of them ovirt does not let me.  I can delete from
database but why not from the GUI?  I am sure others may run into this
problem as well.


what happens to the status of the host when you right click on the
host and specify you confirm it was shutdown?


I'm having this same issue. Confirming the host is shut down doesn't 
make a difference.


I'm seeing lots of Failed to GlusterHostRemoveVDS, error = Unexpected 
exception errors in my engine log that seem to correspond w/ the 
failed remove host attempts.







Dominic

On Sep 22, 2012 4:19 PM, Eli Mesika emes...@redhat.com
mailto:emes...@redhat.com wrote:



- Original Message -
  From: Douglas Landgraf dougsl...@redhat.com
mailto:dougsl...@redhat.com
  To: Dominic Kaiser domi...@bostonvineyard.org
mailto:domi...@bostonvineyard.org
  Cc: Eli Mesika emes...@redhat.com
mailto:emes...@redhat.com, users@ovirt.org
mailto:users@ovirt.org, Robert Middleswarth
rob...@middleswarth.net mailto:rob...@middleswarth.net
  Sent: Friday, September 21, 2012 8:12:27 PM
  Subject: Re: [Users] Is there a way to force remove a host?
 
  Hi Dominic,
 
  On 09/20/2012 12:11 PM, Dominic Kaiser wrote:
   Sorry I did not explain.
  
   I had tried to remove the host and had not luck
troubleshooting it.
I
   then had removed it and used it for a storage unit reinstalling
   fedora
   17.  I foolishly thought that I could just remove the host
   manually.
It physically is not there. (My fault I know)  Is there a
way that
   you know of to remove a host brute force.
  
   dk
 
  Fell free to try the below script (not part of official
project) for
  brute force:
 
  (from the engine side)
  # yum install python-psycopg2 -y
  # wget
 

https://raw.github.com/dougsland/misc-rhev/master/engine_force_remove_Host.py

  # (edit the file and change the db password)
  # python ./engine_force_remove_Host.py

Hi , had looked in the Python script you had provided:
First, I must say that handling the database directly may leave DB
in inconsistent state, therefore, if there is no other option, the
database should be backed up prior to this operation.
In addition, I do not like the execution of the SQL statements in
the script.
There is a SP called DeleteVds(v_vds_id UUID) and you should use
that since it encapsulates all details.
For example, your script does not handle permission clean-up as the
SP does and therefore leaves garbage in the database.
In addition, a failure in your script may leave database in
inconsistent state while the SP is executed in one transaction and
will leave DB consistent.
So, in short I would prefer in this case that the relevant SP will
do the clean-up since this is the one that is used by the code and
that insures (at least I hope so) , that all related entities are
removed as well.


 
  Thanks
 
  --
  Cheers
  Douglas
 
 



___
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




--

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


Re: [Users] Is there a way to force remove a host?

2012-09-24 Thread Jason Brooks

On Mon 24 Sep 2012 02:55:54 PM PDT, Itamar Heim wrote:

On 09/24/2012 11:53 PM, Jason Brooks wrote:

On Mon 24 Sep 2012 01:24:44 PM PDT, Itamar Heim wrote:

On 09/24/2012 08:49 PM, Dominic Kaiser wrote:

This conversation is fine but if I want to force remove no matter
what I
should be able to from the GUI.  The nodes are no longer available I
want to get rid of them ovirt does not let me.  I can delete from
database but why not from the GUI?  I am sure others may run into this
problem as well.


what happens to the status of the host when you right click on the
host and specify you confirm it was shutdown?


I'm having this same issue. Confirming the host is shut down doesn't
make a difference.

I'm seeing lots of Failed to GlusterHostRemoveVDS, error = Unexpected
exception errors in my engine log that seem to correspond w/ the failed
remove host attempts.


is cluster defined as gluster as well?


Yes, it is.


what is the status of the host after you confirm shutdown?
any error on log on this specific command?


I have two hosts I want to remove -- one, a failed add that never 
completed, and the other, an F17 machine that I subsequently updated to 
F18. So neither of those hosts are actually connected to my engine. 
Their status is either non-responsive or maintenance, if I activate, 
it's the former, if I set it to maintenance, it's the latter. I can 
only attempt to remove in maintenance mode, so that's where I have them.


There don't appear to be any errors confirming manual reboot.



shireesh - not sure if relevant to this flow, but need to make sure
removing a host from the engine isn't blocked on gluster needing to
remove it from the gluster cluster if the host is not available any
more, or last host in gluster cluster?








Dominic

On Sep 22, 2012 4:19 PM, Eli Mesika emes...@redhat.com
mailto:emes...@redhat.com wrote:



- Original Message -
  From: Douglas Landgraf dougsl...@redhat.com
mailto:dougsl...@redhat.com
  To: Dominic Kaiser domi...@bostonvineyard.org
mailto:domi...@bostonvineyard.org
  Cc: Eli Mesika emes...@redhat.com
mailto:emes...@redhat.com, users@ovirt.org
mailto:users@ovirt.org, Robert Middleswarth
rob...@middleswarth.net mailto:rob...@middleswarth.net
  Sent: Friday, September 21, 2012 8:12:27 PM
  Subject: Re: [Users] Is there a way to force remove a host?
 
  Hi Dominic,
 
  On 09/20/2012 12:11 PM, Dominic Kaiser wrote:
   Sorry I did not explain.
  
   I had tried to remove the host and had not luck
troubleshooting it.
I
   then had removed it and used it for a storage unit
reinstalling
   fedora
   17.  I foolishly thought that I could just remove the host
   manually.
It physically is not there. (My fault I know)  Is there a
way that
   you know of to remove a host brute force.
  
   dk
 
  Fell free to try the below script (not part of official
project) for
  brute force:
 
  (from the engine side)
  # yum install python-psycopg2 -y
  # wget
 

https://raw.github.com/dougsland/misc-rhev/master/engine_force_remove_Host.py



  # (edit the file and change the db password)
  # python ./engine_force_remove_Host.py

Hi , had looked in the Python script you had provided:
First, I must say that handling the database directly may leave DB
in inconsistent state, therefore, if there is no other option, the
database should be backed up prior to this operation.
In addition, I do not like the execution of the SQL statements in
the script.
There is a SP called DeleteVds(v_vds_id UUID) and you should use
that since it encapsulates all details.
For example, your script does not handle permission clean-up as
the
SP does and therefore leaves garbage in the database.
In addition, a failure in your script may leave database in
inconsistent state while the SP is executed in one transaction and
will leave DB consistent.
So, in short I would prefer in this case that the relevant SP will
do the clean-up since this is the one that is used by the code and
that insures (at least I hope so) , that all related entities are
removed as well.


 
  Thanks
 
  --
  Cheers
  Douglas
 
 



___
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




--

@jasonbrooks







--

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


Re: [Users] Is there a way to force remove a host?

2012-09-24 Thread Dominic Kaiser
Dominic - are you also using a cluster with gluster service enabled?

Yes Gluster Service is enabled.  And I can not remove hosts from that
cluster.

Dominic

On Mon, Sep 24, 2012 at 6:07 PM, Itamar Heim ih...@redhat.com wrote:

 On 09/25/2012 12:03 AM, Jason Brooks wrote:

 On Mon 24 Sep 2012 02:55:54 PM PDT, Itamar Heim wrote:

 On 09/24/2012 11:53 PM, Jason Brooks wrote:

 On Mon 24 Sep 2012 01:24:44 PM PDT, Itamar Heim wrote:

 On 09/24/2012 08:49 PM, Dominic Kaiser wrote:

 This conversation is fine but if I want to force remove no matter
 what I
 should be able to from the GUI.  The nodes are no longer available I
 want to get rid of them ovirt does not let me.  I can delete from
 database but why not from the GUI?  I am sure others may run into this
 problem as well.


 what happens to the status of the host when you right click on the
 host and specify you confirm it was shutdown?


 I'm having this same issue. Confirming the host is shut down doesn't
 make a difference.

 I'm seeing lots of Failed to GlusterHostRemoveVDS, error = Unexpected
 exception errors in my engine log that seem to correspond w/ the failed
 remove host attempts.


 is cluster defined as gluster as well?


 Yes, it is.


 that's a very important piece of information...
 is there a more detailed exception in the log on the error?
 can you uncheck gluster and try to remove it again?

 Dominic - are you also using a cluster with gluster service enabled?




  what is the status of the host after you confirm shutdown?
 any error on log on this specific command?


 I have two hosts I want to remove -- one, a failed add that never
 completed, and the other, an F17 machine that I subsequently updated to
 F18. So neither of those hosts are actually connected to my engine.
 Their status is either non-responsive or maintenance, if I activate,
 it's the former, if I set it to maintenance, it's the latter. I can only
 attempt to remove in maintenance mode, so that's where I have them.

 There don't appear to be any errors confirming manual reboot.


 shireesh - not sure if relevant to this flow, but need to make sure
 removing a host from the engine isn't blocked on gluster needing to
 remove it from the gluster cluster if the host is not available any
 more, or last host in gluster cluster?





 Dominic

 On Sep 22, 2012 4:19 PM, Eli Mesika emes...@redhat.com
 mailto:emes...@redhat.com wrote:



 - Original Message -
   From: Douglas Landgraf dougsl...@redhat.com
 mailto:dougsl...@redhat.com
   To: Dominic Kaiser domi...@bostonvineyard.org
 mailto:dominic@**bostonvineyard.org domi...@bostonvineyard.org
 
   Cc: Eli Mesika emes...@redhat.com
 mailto:emes...@redhat.com, users@ovirt.org
 mailto:users@ovirt.org, Robert Middleswarth
 rob...@middleswarth.net 
 mailto:robert@middleswarth.**netrob...@middleswarth.net
 
   Sent: Friday, September 21, 2012 8:12:27 PM
   Subject: Re: [Users] Is there a way to force remove a host?
  
   Hi Dominic,
  
   On 09/20/2012 12:11 PM, Dominic Kaiser wrote:
Sorry I did not explain.
   
I had tried to remove the host and had not luck
 troubleshooting it.
 I
then had removed it and used it for a storage unit
 reinstalling
fedora
17.  I foolishly thought that I could just remove the host
manually.
 It physically is not there. (My fault I know)  Is there a
 way that
you know of to remove a host brute force.
   
dk
  
   Fell free to try the below script (not part of official
 project) for
   brute force:
  
   (from the engine side)
   # yum install python-psycopg2 -y
   # wget
  

 https://raw.github.com/**dougsland/misc-rhev/master/**
 engine_force_remove_Host.pyhttps://raw.github.com/dougsland/misc-rhev/master/engine_force_remove_Host.py




   # (edit the file and change the db password)
   # python ./engine_force_remove_Host.py

 Hi , had looked in the Python script you had provided:
 First, I must say that handling the database directly may leave DB
 in inconsistent state, therefore, if there is no other option, the
 database should be backed up prior to this operation.
 In addition, I do not like the execution of the SQL statements in
 the script.
 There is a SP called DeleteVds(v_vds_id UUID) and you should use
 that since it encapsulates all details.
 For example, your script does not handle permission clean-up as
 the
 SP does and therefore leaves garbage in the database.
 In addition, a failure in your script may leave database in
 inconsistent state while the SP is executed in one transaction and
 will leave DB consistent.
 So, in short I would prefer in this case that the relevant SP will
 do the clean-up since this is the one that is used by the code and
 that insures (at least I hope so) , that all related entities are
 removed as 

[Users] Upgrade problem.

2012-09-24 Thread Andres Gonzalez
Hi!

I upgraded from oVirt 3.1.16 to 3.1.19 under CentOS 6.3 (yum update). The
thing is now oVirt is not starting.
The web interfaces says: Service Temporarily Unavailable, the VMs don't
starts (the box is configured as all-in-one)

I have 2 VMs on production. What I can do ?

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


Re: [Users] Upgrade problem.

2012-09-24 Thread Karli Sjöberg

25 sep 2012 kl. 05.56 skrev Andres Gonzalez:

UPDATE: I could reinstall oVirt and it's working, the problem now is that I 
cannot attach the local storage that is where the VMs are.
Is there any way that I can add it ?

This may be this kernel-3.5-issue... If you have installed a 3.5 kernel, 
downgrade to 3.4 or 3.3 and I´m rather sure your issues will go away.

/Karli


Thanks!


On Mon, Sep 24, 2012 at 11:49 PM, Andres Gonzalez 
tuc...@gmail.commailto:tuc...@gmail.com wrote:
Hi!

I upgraded from oVirt 3.1.16 to 3.1.19 under CentOS 6.3 (yum update). The thing 
is now oVirt is not starting.
The web interfaces says: Service Temporarily Unavailable, the VMs don't starts 
(the box is configured as all-in-one)

I have 2 VMs on production. What I can do ?

Thanks.-




--
AGD



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.semailto:karli.sjob...@adm.slu.se

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