Re: [Users] Unable to add host in a development setup - "Host kernelpanic.home installation failed. Failed to decode own public key from store 'keys/engine.p12' using alias '1'."

2013-04-28 Thread Alon Bar-Lev


- Original Message -
> From: "Limor Gavish" 
> To: "Alon Bar-Lev" 
> Cc: "Yuval M" , users@ovirt.org, "Nezer Zaidenberg" 
> , "Vered Volansky"
> 
> Sent: Monday, April 29, 2013 8:28:47 AM
> Subject: Re: [Users] Unable to add host in a development setup - "Host 
> kernelpanic.home installation failed. Failed
> to decode own public key from store 'keys/engine.p12' using alias '1'."
> 
> Thank you very much for your prompt response. However, according to "git
> rebase" (after "git fetch") there is no new change
> 
> [wil@bufferoverflow repository]$ git fetch
> https://github.com/alonbl/ovirt-engine.git otopi
> From https://github.com/alonbl/ovirt-engine
>  * branchotopi  -> FETCH_HEAD
> [wil@bufferoverflow repository]$ git rebase --merge FETCH_HEAD
> *Current branch otopi is up to date.*
> *
> *
> The latest change I see in "git log" is
> 
> [wil@bufferoverflow repository]$ git show HEAD
> commit 99d95891ab0e814159a463d246543b08e41c746d
> Author: Alon Bar-Lev 
> Date:   Thu Apr 25 12:39:50 2013 +0300
> 
> packaging: engine-setup re-write using otopi
> 
> Change-Id: I4d5e3ac7927802326e324c9b98ada75b421638aa
> Signed-off-by: Alon Bar-Lev 
> Signed-off-by: Sandro Bonazzola 
> Signed-off-by: Alex Lourie 
> 
> If you don't wish to push the change yet, you can send a patch and I will
> apply it.

This branch is rolling rebase, forced push, so rebase will not work in this 
regard.
Soon it will be merged to master so it will be easier to track.

Please try:

$ git checkout master
$ git branch -D otopi
$ git fetch
$ git checkout otopi

You should have:
commit 98475140979ee11965154030f54825b14a1510e4

Thanks!
Alon.

> 
> 
> On Mon, Apr 29, 2013 at 1:04 AM, Alon Bar-Lev  wrote:
> 
> >
> >
> > - Original Message -
> > > From: "Limor Gavish" 
> > > To: "Alon Bar-Lev" 
> > > Cc: "Yuval M" , users@ovirt.org, "Nezer Zaidenberg" <
> > nzaidenb...@mac.com>, "Vered Volansky"
> > > 
> > > Sent: Sunday, April 28, 2013 10:56:45 PM
> > > Subject: Re: [Users] Unable to add host in a development setup - "Host
> > kernelpanic.home installation failed. Failed
> > > to decode own public key from store 'keys/engine.p12' using alias '1'."
> > >
> > > Hi,
> > >
> > > Thank you very much for your help but I do not succeed to start the
> > engine
> > > after compiling your version.
> > >
> > > I switched to the otopi branch like you said.
> > > git fetch https://github.com/alonbl/ovirt-engine.git otopi
> > > git checkout -b otopi FETCH_HEAD
> > >
> > > I followed the instructions in
> > > https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer
> > > *So here are the last 3 commands I used:*
> > > make clean install-dev PREFIX=$HOME/ovirt-engine
> > > $HOME/ovirt-engine/bin/engine-setup-2
> > > --jboss-home=$HOME/ovirt-engine/jboss-as-7.1.1.Final
> > > $HOME/ovirt-engine/share/ovirt-engine/services/ovirt-engine.py start
> > >
> > > However, the last command
> > > ($HOME/ovirt-engine/share/ovirt-engine/services/ovirt-engine.py start)
> > > hangs.
> >
> > This is expected... it is the service running, Ctrl-C to terminate.
> >
> > > *In server.log I see the following error:*
> > > 2013-04-28 22:13:40,203 ERROR [org.jboss.as] (MSC service thread 1-3)
> > > JBAS015875: JBoss AS 7.1.1.Final "Brontes" started (with errors) in
> > 2788ms
> > > - Started 504 of 5 40 services (1 services failed or missing
> > > dependencies, 34 services are passive or on-demand)
> > > *In engine.log I see the following error:*
> > > 2013-04-28 22:13:40,082 ERROR
> > > [org.ovirt.engine.core.utils.ErrorTranslatorImpl] (MSC service thread
> > 1-4)
> > > File: bundles/VdsmErrors could not be loaded: java.util.Mis
> > >  singResourceException: Can't find bundle for base name
> > bundles/VdsmErrors,
> > > locale en_US
> > >
> > > Full logs are attached.
> >
> > The problem is that for some reason the PREFIX is not taken into account.
> >
> > Related errors:
> > 2013-04-28 19:57:46,468 WARN  [org.ovirt.engine.core.utils.LocalConfig]
> > (MSC service thread 1-3) The file
> > "/usr/share/ovirt-engine/conf/engine.conf.defaults" doesn't exist or isn't
> > readable. Will return an empty set of properties.
> > 2013-04-28 19:57:46,468 WARN  [org.ovirt.engine.core.utils.LocalConfig]
> > (MSC service thread 1-3) The file "/etc/ovirt-engine/engine.conf" doesn't
> > exist or isn't readable. Will return an empty set of properties.
> >
> > It can be due to previous make execution without PREFIX.
> > I've committed a change to Makefile to force regenerate the file locations
> > when using install-dev.
> > Can you please give it a try?
> >
> > Thanks!
> >
> > > Thanks,
> > > Limor on behalf of Yuval
> > >
> > >
> > > On Sun, Apr 28, 2013 at 2:51 PM, Alon Bar-Lev  wrote:
> > >
> > > >
> > > > Maybe someone can help you in this.
> > > >
> > > > I prefer people install development mode and use fully functional
> > product
> > > > within their development environment.
> > > >
> > > > Alon
> > > >
> > > > - Original Messag

Re: [Users] Unable to add host in a development setup - "Host kernelpanic.home installation failed. Failed to decode own public key from store 'keys/engine.p12' using alias '1'."

2013-04-28 Thread Limor Gavish
Thank you very much for your prompt response. However, according to "git
rebase" (after "git fetch") there is no new change

[wil@bufferoverflow repository]$ git fetch
https://github.com/alonbl/ovirt-engine.git otopi
>From https://github.com/alonbl/ovirt-engine
 * branchotopi  -> FETCH_HEAD
[wil@bufferoverflow repository]$ git rebase --merge FETCH_HEAD
*Current branch otopi is up to date.*
*
*
The latest change I see in "git log" is

[wil@bufferoverflow repository]$ git show HEAD
commit 99d95891ab0e814159a463d246543b08e41c746d
Author: Alon Bar-Lev 
Date:   Thu Apr 25 12:39:50 2013 +0300

packaging: engine-setup re-write using otopi

Change-Id: I4d5e3ac7927802326e324c9b98ada75b421638aa
Signed-off-by: Alon Bar-Lev 
Signed-off-by: Sandro Bonazzola 
Signed-off-by: Alex Lourie 

If you don't wish to push the change yet, you can send a patch and I will
apply it.


On Mon, Apr 29, 2013 at 1:04 AM, Alon Bar-Lev  wrote:

>
>
> - Original Message -
> > From: "Limor Gavish" 
> > To: "Alon Bar-Lev" 
> > Cc: "Yuval M" , users@ovirt.org, "Nezer Zaidenberg" <
> nzaidenb...@mac.com>, "Vered Volansky"
> > 
> > Sent: Sunday, April 28, 2013 10:56:45 PM
> > Subject: Re: [Users] Unable to add host in a development setup - "Host
> kernelpanic.home installation failed. Failed
> > to decode own public key from store 'keys/engine.p12' using alias '1'."
> >
> > Hi,
> >
> > Thank you very much for your help but I do not succeed to start the
> engine
> > after compiling your version.
> >
> > I switched to the otopi branch like you said.
> > git fetch https://github.com/alonbl/ovirt-engine.git otopi
> > git checkout -b otopi FETCH_HEAD
> >
> > I followed the instructions in
> > https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer
> > *So here are the last 3 commands I used:*
> > make clean install-dev PREFIX=$HOME/ovirt-engine
> > $HOME/ovirt-engine/bin/engine-setup-2
> > --jboss-home=$HOME/ovirt-engine/jboss-as-7.1.1.Final
> > $HOME/ovirt-engine/share/ovirt-engine/services/ovirt-engine.py start
> >
> > However, the last command
> > ($HOME/ovirt-engine/share/ovirt-engine/services/ovirt-engine.py start)
> > hangs.
>
> This is expected... it is the service running, Ctrl-C to terminate.
>
> > *In server.log I see the following error:*
> > 2013-04-28 22:13:40,203 ERROR [org.jboss.as] (MSC service thread 1-3)
> > JBAS015875: JBoss AS 7.1.1.Final "Brontes" started (with errors) in
> 2788ms
> > - Started 504 of 5 40 services (1 services failed or missing
> > dependencies, 34 services are passive or on-demand)
> > *In engine.log I see the following error:*
> > 2013-04-28 22:13:40,082 ERROR
> > [org.ovirt.engine.core.utils.ErrorTranslatorImpl] (MSC service thread
> 1-4)
> > File: bundles/VdsmErrors could not be loaded: java.util.Mis
> >  singResourceException: Can't find bundle for base name
> bundles/VdsmErrors,
> > locale en_US
> >
> > Full logs are attached.
>
> The problem is that for some reason the PREFIX is not taken into account.
>
> Related errors:
> 2013-04-28 19:57:46,468 WARN  [org.ovirt.engine.core.utils.LocalConfig]
> (MSC service thread 1-3) The file
> "/usr/share/ovirt-engine/conf/engine.conf.defaults" doesn't exist or isn't
> readable. Will return an empty set of properties.
> 2013-04-28 19:57:46,468 WARN  [org.ovirt.engine.core.utils.LocalConfig]
> (MSC service thread 1-3) The file "/etc/ovirt-engine/engine.conf" doesn't
> exist or isn't readable. Will return an empty set of properties.
>
> It can be due to previous make execution without PREFIX.
> I've committed a change to Makefile to force regenerate the file locations
> when using install-dev.
> Can you please give it a try?
>
> Thanks!
>
> > Thanks,
> > Limor on behalf of Yuval
> >
> >
> > On Sun, Apr 28, 2013 at 2:51 PM, Alon Bar-Lev  wrote:
> >
> > >
> > > Maybe someone can help you in this.
> > >
> > > I prefer people install development mode and use fully functional
> product
> > > within their development environment.
> > >
> > > Alon
> > >
> > > - Original Message -
> > > > From: "Yuval M" 
> > > > To: "Alon Bar-Lev" 
> > > > Cc: users@ovirt.org, "Nezer Zaidenberg" ,
> "Limor
> > > Gavish" , "Vered Volansky"
> > > > 
> > > > Sent: Sunday, April 28, 2013 12:45:33 PM
> > > > Subject: Re: [Users] Unable to add host in a development setup -
> "Host
> > > kernelpanic.home installation failed. Failed
> > > > to decode own public key from store 'keys/engine.p12' using alias
> '1'."
> > > >
> > > > But is there an option to just manually install the new host?
> > > >
> > > > Yuval
> > > >
> > > >
> > > > On Sun, Apr 28, 2013 at 11:46 AM, Alon Bar-Lev 
> > > wrote:
> > > >
> > > > >
> > > > > Development mode installation is not yet supported to perform
> > > host-deploy.
> > > > > There is ongoing work for fully functional development environment.
> > > > > You can test this if you like before it is merged upstream.
> > > > > Sources available here[1], documentation is here[2].
> > > > >
> > > > > [1] ht

Re: [Users] vdsm-gluster is installed but host deployment report error: Cannot locate gluster packages

2013-04-28 Thread Kanagaraj Mayilsamy
what is your repo url? 

http://bits.gluster.org/pub/gluster/glusterfs/3.4.0alpha3/ is working fine for 
me.

Can you try the following on the host.

- remove the existing gluster repos
- and execute this $ yum-config-manager --add 
http://bits.gluster.org/pub/gluster/glusterfs/3.4.0alpha3/ 
- yum search glusterfs  - this should list all the glusterfs packages

If the above works fine, you try repeating the install process.
If there are any more errors, please attach the ovirt-host-deploy log file for 
further analysis.

Thanks,
Kanagaraj

- Original Message -
> From: "Mohsen Saeedi" 
> To: users@ovirt.org
> Sent: Monday, April 29, 2013 2:22:15 AM
> Subject: [Users] vdsm-gluster is installed but host deployment report error: 
> Cannot locate gluster packages
> 
> Hi
> I installed glusterfs repo (3.4 alpha) but when i try to add node i saw the
> error:
> Failed to install Host localhost. Failed to execute stage 'Setup validation':
> Cannot locate gluster packages, possible cause is incorrect channels.
> 
> I remove and installed this packages again. but it give me error same as
> previous.
> Thanks.
> 
> 
> ___
> 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] Unable to add host in a development setup - "Host kernelpanic.home installation failed. Failed to decode own public key from store 'keys/engine.p12' using alias '1'."

2013-04-28 Thread Alon Bar-Lev


- Original Message -
> From: "Limor Gavish" 
> To: "Alon Bar-Lev" 
> Cc: "Yuval M" , users@ovirt.org, "Nezer Zaidenberg" 
> , "Vered Volansky"
> 
> Sent: Sunday, April 28, 2013 10:56:45 PM
> Subject: Re: [Users] Unable to add host in a development setup - "Host 
> kernelpanic.home installation failed. Failed
> to decode own public key from store 'keys/engine.p12' using alias '1'."
> 
> Hi,
> 
> Thank you very much for your help but I do not succeed to start the engine
> after compiling your version.
> 
> I switched to the otopi branch like you said.
> git fetch https://github.com/alonbl/ovirt-engine.git otopi
> git checkout -b otopi FETCH_HEAD
> 
> I followed the instructions in
> https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer
> *So here are the last 3 commands I used:*
> make clean install-dev PREFIX=$HOME/ovirt-engine
> $HOME/ovirt-engine/bin/engine-setup-2
> --jboss-home=$HOME/ovirt-engine/jboss-as-7.1.1.Final
> $HOME/ovirt-engine/share/ovirt-engine/services/ovirt-engine.py start
> 
> However, the last command
> ($HOME/ovirt-engine/share/ovirt-engine/services/ovirt-engine.py start)
> hangs.

This is expected... it is the service running, Ctrl-C to terminate.

> *In server.log I see the following error:*
> 2013-04-28 22:13:40,203 ERROR [org.jboss.as] (MSC service thread 1-3)
> JBAS015875: JBoss AS 7.1.1.Final "Brontes" started (with errors) in 2788ms
> - Started 504 of 5 40 services (1 services failed or missing
> dependencies, 34 services are passive or on-demand)
> *In engine.log I see the following error:*
> 2013-04-28 22:13:40,082 ERROR
> [org.ovirt.engine.core.utils.ErrorTranslatorImpl] (MSC service thread 1-4)
> File: bundles/VdsmErrors could not be loaded: java.util.Mis
>  singResourceException: Can't find bundle for base name bundles/VdsmErrors,
> locale en_US
> 
> Full logs are attached.

The problem is that for some reason the PREFIX is not taken into account.

Related errors:
2013-04-28 19:57:46,468 WARN  [org.ovirt.engine.core.utils.LocalConfig] (MSC 
service thread 1-3) The file 
"/usr/share/ovirt-engine/conf/engine.conf.defaults" doesn't exist or isn't 
readable. Will return an empty set of properties.
2013-04-28 19:57:46,468 WARN  [org.ovirt.engine.core.utils.LocalConfig] (MSC 
service thread 1-3) The file "/etc/ovirt-engine/engine.conf" doesn't exist or 
isn't readable. Will return an empty set of properties.

It can be due to previous make execution without PREFIX.
I've committed a change to Makefile to force regenerate the file locations when 
using install-dev.
Can you please give it a try?

Thanks!

> Thanks,
> Limor on behalf of Yuval
> 
> 
> On Sun, Apr 28, 2013 at 2:51 PM, Alon Bar-Lev  wrote:
> 
> >
> > Maybe someone can help you in this.
> >
> > I prefer people install development mode and use fully functional product
> > within their development environment.
> >
> > Alon
> >
> > - Original Message -
> > > From: "Yuval M" 
> > > To: "Alon Bar-Lev" 
> > > Cc: users@ovirt.org, "Nezer Zaidenberg" , "Limor
> > Gavish" , "Vered Volansky"
> > > 
> > > Sent: Sunday, April 28, 2013 12:45:33 PM
> > > Subject: Re: [Users] Unable to add host in a development setup - "Host
> > kernelpanic.home installation failed. Failed
> > > to decode own public key from store 'keys/engine.p12' using alias '1'."
> > >
> > > But is there an option to just manually install the new host?
> > >
> > > Yuval
> > >
> > >
> > > On Sun, Apr 28, 2013 at 11:46 AM, Alon Bar-Lev 
> > wrote:
> > >
> > > >
> > > > Development mode installation is not yet supported to perform
> > host-deploy.
> > > > There is ongoing work for fully functional development environment.
> > > > You can test this if you like before it is merged upstream.
> > > > Sources available here[1], documentation is here[2].
> > > >
> > > > [1] https://github.com/alonbl/ovirt-engine/tree/otopi
> > > > [2] https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer
> > > >
> > > > - Original Message -
> > > > > From: "Yuval M" 
> > > > > To: users@ovirt.org, "Nezer Zaidenberg" ,
> > "Limor
> > > > Gavish" 
> > > > > Sent: Saturday, April 27, 2013 5:22:59 PM
> > > > > Subject: [Users] Unable to add host in a development setup - "Host
> > > > kernelpanic.home installation failed. Failed to
> > > > > decode own public key from store 'keys/engine.p12' using alias '1'."
> > > > >
> > > > > I'm getting the aforementioned error message when trying to
> > reinstall a
> > > > host
> > > > > that failed to be added to the cluster.
> > > > >
> > > > > in the engine log I have:
> > > > >
> > > > > 2013-04-27 16:29:58,249 ERROR
> > > > [org.ovirt.engine.core.bll.InstallVdsCommand]
> > > > > (pool-3-thread-49) [3070670b] Host installation failed for host
> > > > > cf09fb25-b8a4-4068-a
> > > > > 3c8-9869d0ba4ff9, kernelpanic.home.: java.lang.RuntimeException:
> > Failed
> > > > to
> > > > > decode own public key from store 'keys/engine.p12' using alias '1'
> > > > > at
> > > > >
> > > >
> > org.ovirt.engine.core.

Re: [Users] vdsm-gluster is installed but host deployment report error: Cannot locate gluster packages

2013-04-28 Thread Joop
Mohsen Saeedi  wrote:

>Hi
>I installed glusterfs repo (3.4 alpha) but when i try to add node i saw
>the error:
>
>Failed to install Host localhost. Failed to execute stage 'Setup
>validation': Cannot locate gluster packages, possible cause is
>incorrect channels.
>
>I remove and installed this packages again. but it give me error same
>as previous. 
>Thanks. 
>
>
>
>
>
>
>___
>Users mailing list
>Users@ovirt.org
>http://lists.ovirt.org/mailman/listinfo/users

Where did you install gluster?
On the host or on the engine?

Joop

-- 
Sent from my Android phone with K-9 Mail. Please excuse my brevity.___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] vdsm-gluster is installed but host deployment report error: Cannot locate gluster packages

2013-04-28 Thread Joop
Mohsen Saeedi  wrote:

>Hi
>I installed glusterfs repo (3.4 alpha) but when i try to add node i saw
>the error:
>
>Failed to install Host localhost. Failed to execute stage 'Setup
>validation': Cannot locate gluster packages, possible cause is
>incorrect channels.
>
>I remove and installed this packages again. but it give me error same
>as previous. 
>Thanks. 
>
>
>
>
>
>
>___
>Users mailing list
>Users@ovirt.org
>http://lists.ovirt.org/mailman/listinfo/users

Where did you install gluster?
On the host or on the engine?

Joop

-- 
Sent from my Android phone with K-9 Mail. Please excuse my brevity.___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] ovirt deploy host reports unique id which already registered

2013-04-28 Thread Joop
Mohsen Saeedi  wrote:

>Hi
>I installed ovirt 3.2 on CentOS 6.4 64 bit. I installed fedora 18 64bit
>on another system. I add fedora as new ovirt node from the management
>console and everything is ok. 
>it rebooted and add successfully to our default cluster. when i try to
>add the CentOS 6.4 to the cluster then i saw error:
>Host host01 installation failed. Host virt.mbsco.local reports unique
>id which already registered for fedora18.
>
>host01 is my management node and fedora 18 is another node that
>successfully added in first step. 
>what is the problem?
>Thanks
>
>
>
>
>___
>Users mailing list
>Users@ovirt.org
>http://lists.ovirt.org/mailman/listinfo/users

Problem is in /etc/vdsm/vdsm.id which is genereated from dmidecode and the 
bios. In this case it is the same therefor the error. Generate an id with 
uuidgen or genuuid, can't remember which one it is, then re-add the node.

Joop
-- 
Sent from my Android phone with K-9 Mail. Please excuse my brevity.___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[Users] vdsm-gluster is installed but host deployment report error: Cannot locate gluster packages

2013-04-28 Thread Mohsen Saeedi

  
  
Hi
  I installed glusterfs repo (3.4 alpha) but when i try to add node
  i saw the error:


  Failed to install Host localhost.
Failed to execute stage 'Setup validation': Cannot locate
gluster packages, possible cause is incorrect channels.

I remove and installed this packages again. but it give me error
same as previous. 
Thanks. 
  


  

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


[Users] ovirt deploy host reports unique id which already registered

2013-04-28 Thread Mohsen Saeedi

  
  
Hi
  I installed ovirt 3.2 on CentOS 6.4 64 bit. I installed fedora 18
  64bit on another system. I add fedora as new ovirt node from the
  management console and everything is ok. 
  it rebooted and add successfully to our default cluster. when i
  try to add the CentOS 6.4 to the cluster then i saw error:
Host host01 installation failed. Host virt.mbsco.local
reports unique id which already registered for fedora18.

host01 is my management node and fedora 18 is another node that
successfully added in first step. 
what is the problem?
Thanks
  

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


[Users] oVirt updates - April 28th, 2013

2013-04-28 Thread Itamar Heim

I thought a summary of things going on from time to time may interest folks:

1. From the Web

* Vagrant support for oVirt/RHEV added
  http://alturl.com/bkauk
  https://github.com/pradels/vagrant-ovirt
  http://www.vagrantup.com/

* How to create and provision an oVirt VM with ansible
  http://www.youtube.com/watch?v=up8X_clAvZk

* ovirt_metrics  - ActiveRecord-based gem for reading the oVirt History
  database
  http://is.gd/hO94Us

* DEMO: oVirt - GlusterFS Native Integration for KVM Virtualization
  http://www.youtube.com/watch?v=0iIuHCz8L04

* Android x86 running on oVirt
  http://www.youtube.com/watch?v=5nFZLma_Ofw

* using oVirt to build a virtualization platform on an IBM BladeCenter
  http://www.r11networks.com/2013/04/ovirt-meets-ibm-bladecenter/
  http://www.r11networks.com/2013/04/ovirt-installation-guide/

2. Conferences

* René Koch (ovido) presented oVirt in a two conferences in Germany

oVirt was covered in two OpenStack summit sessions:

* Mike Day, IBM: Connected Communities, Innovative Technologies:
  OpenStack, oVirt, and KVM
  http://sched.co/WcehtG

* Romil Gupta et al, HP: RHEV-M/oVirt Clusters as compute resources
  http://sched.co/14hte1T
  http://www.slideshare.net/romilgupta19/hp-rhevmdriverromil)
  http://alturl.com/vsn5e

3. Bug/feature/patch of the week?

Send your candidates for the next update

4. Upcoming

* oVirt Shanghai workshop
  http://www.ovirt.org/Intel_Workshop_May_2013

Feel free to send comments, items, etc for consideration for the next 
update.


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


Re: [Users] Redundant management node

2013-04-28 Thread Itamar Heim

On 04/28/2013 08:27 PM, Mohsen Saeedi wrote:

We should use HA on two node with same services (jboss and postges) and
config replication between postgresql?
Is it true?


i've only seen either jboss on both nodes with shared, external 
postgres, or all in one VM on shared storage, which is the service being 
clustered.
if you have experience with postgres replication, could be interesting 
as well to understand how it would look like.




On 28 Apr 2013 17:59, "Itamar Heim" mailto:ih...@redhat.com>> wrote:

On 04/27/2013 10:41 PM, Mohsen Saeedi wrote:

Hi
Is it possible to have a extra management node for redundancy?
or just
we must to backup and restore management node for when we missed
it. for
example due to any failure.
Thanks


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




you can use clustering technologies for this today (easiest is if
deploying the engine in a VM).
this upcoming work will let you do this bare metal
http://www.ovirt.org/Features/__Self_Hosted_Engine




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


Re: [Users] Redundant management node

2013-04-28 Thread Mohsen Saeedi
We should use HA on two node with same services (jboss and postges) and
config replication between postgresql?
Is it true?
On 28 Apr 2013 17:59, "Itamar Heim"  wrote:

> On 04/27/2013 10:41 PM, Mohsen Saeedi wrote:
>
>> Hi
>> Is it possible to have a extra management node for redundancy? or just
>> we must to backup and restore management node for when we missed it. for
>> example due to any failure.
>> Thanks
>>
>>
>> __**_
>> Users mailing list
>> Users@ovirt.org
>> http://lists.ovirt.org/**mailman/listinfo/users
>>
>>
>
> you can use clustering technologies for this today (easiest is if
> deploying the engine in a VM).
> this upcoming work will let you do this bare metal
> http://www.ovirt.org/Features/**Self_Hosted_Engine
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] FreeIPA

2013-04-28 Thread Yair Zaslavsky
Not too informative, so let's start and troubleshoot - 

a. please use dig to get SRV records for kerberos and ldap for the domain and 
attach it - 

For example - for domain example.com (kerberos realm - EXAMPLE.COM) 
dig SRV _ldap._tcp.example.com 
dg SRV _kerberos._tcp.example.com 

b. Do you have a PTR record at your DNS defined for your IPA server? 

When looking at the code of the manage-domains tool I see the reason that the 
log is not informative enough is that our translator from "kerberos + ldap 
error codes" to "human readable" errors failed to translate the message. 
IMHO, we should send a patch for this + provide a way to get more descriptive 
logging in this case. 
Can you please let us know if the tips I suggested regarding DNS have helped? 

- Original Message -

> From: "Ryan Wilkinson" 
> To: "Yair Zaslavsky" 
> Cc: users@ovirt.org
> Sent: Sunday, April 28, 2013 4:25:33 PM
> Subject: Re: [Users] FreeIPA

> Thanks, here is the engine-manage-domains log:

> 2013-04-27 22:10:32,911 INFO [org.ovirt.engine.core.domains.ManageDomains]
> Creating kerberos configuration for domain(s): wilk.local
> 2013-04-27 22:10:32,936 INFO [org.ovirt.engine.core.domains.ManageDomains]
> Successfully created kerberos configuration for domain(s): wilk.local
> 2013-04-27 22:10:32,936 INFO [org.ovirt.engine.core.domains.ManageDomains]
> Testing kerberos configuration for domain: wilk.local
> 2013-04-27 22:10:33,219 ERROR
> [org.ovirt.engine.core.utils.kerberos.KerberosConfigCheck] Error: exception
> message: freeipa.wilk.local.
> 2013-04-27 22:10:33,223 ERROR [org.ovirt.engine.core.domains.ManageDomains]
> Failure while testing domain wilk.local. Details: Kerberos error. Please
> check log for further details.
> 2013-04-27 22:20:29,053 INFO [org.ovirt.engine.core.domains.ManageDomains]
> Creating kerberos configuration for domain(s): wilk.local
> 2013-04-27 22:20:29,078 INFO [org.ovirt.engine.core.domains.ManageDomains]
> Successfully created kerberos configuration for domain(s): wilk.local
> 2013-04-27 22:20:29,079 INFO [org.ovirt.engine.core.domains.ManageDomains]
> Testing kerberos configuration for domain: wilk.local
> 2013-04-27 22:20:29,257 ERROR
> [org.ovirt.engine.core.utils.kerberos.KerberosConfigCheck] Error: exception
> message: freeipa.wilk.local.
> 2013-04-27 22:20:29,261 ERROR [org.ovirt.engine.core.domains.ManageDomains]
> Failure while testing domain wilk.local. Details: Kerberos error. Please
> check log for further details.

> On Sun, Apr 28, 2013 at 1:17 AM, Yair Zaslavsky < yzasl...@redhat.com >
> wrote:

> > Can we get the log?
> 
> > It would be helpful to understand the kerberos message to understand what
> > have happened.
> 

> > > From: "Ryan Wilkinson" < ryanw...@gmail.com >
> > 
> 
> > > To: users@ovirt.org
> > 
> 
> > > Sent: Sunday, April 28, 2013 7:35:53 AM
> > 
> 
> > > Subject: [Users] FreeIPA
> > 
> 

> > > Getting this error when I try to configure ldap authentication for Ovirt
> > > with
> > > FreeIPA server:
> > 
> 
> > > Error: exception message: freeipa.wilk.local.
> > 
> 
> > > Failure while testing domain wilk.local. Details: Kerberos error. Please
> > > check log for further details.
> > 
> 

> > > Engine-manage-domains.log gives no further details. When I run
> > > "engine-manage-domains -action=add -domain='wilk.local' -user='admin'
> > > -provider=IPA -interactive" it is connecting and asking for the password
> > > but
> > > then giving the error. Any input would be appreciated.
> > 
> 

> > > ___
> > 
> 
> > > 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] Redundant management node

2013-04-28 Thread Itamar Heim

On 04/27/2013 10:41 PM, Mohsen Saeedi wrote:

Hi
Is it possible to have a extra management node for redundancy? or just
we must to backup and restore management node for when we missed it. for
example due to any failure.
Thanks


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




you can use clustering technologies for this today (easiest is if 
deploying the engine in a VM).

this upcoming work will let you do this bare metal
http://www.ovirt.org/Features/Self_Hosted_Engine
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] FreeIPA

2013-04-28 Thread Ryan Wilkinson
Thanks, here is the engine-manage-domains log:

2013-04-27 22:10:32,911 INFO  [org.ovirt.engine.core.domains.ManageDomains]
Creating kerberos configuration for domain(s): wilk.local
2013-04-27 22:10:32,936 INFO  [org.ovirt.engine.core.domains.ManageDomains]
Successfully created kerberos configuration for domain(s): wilk.local
2013-04-27 22:10:32,936 INFO  [org.ovirt.engine.core.domains.ManageDomains]
Testing kerberos configuration for domain: wilk.local
2013-04-27 22:10:33,219 ERROR
[org.ovirt.engine.core.utils.kerberos.KerberosConfigCheck] Error:
exception message: freeipa.wilk.local.
2013-04-27 22:10:33,223 ERROR [org.ovirt.engine.core.domains.ManageDomains]
Failure while testing domain wilk.local. Details: Kerberos error. Please
check log for further details.
2013-04-27 22:20:29,053 INFO  [org.ovirt.engine.core.domains.ManageDomains]
Creating kerberos configuration for domain(s): wilk.local
2013-04-27 22:20:29,078 INFO  [org.ovirt.engine.core.domains.ManageDomains]
Successfully created kerberos configuration for domain(s): wilk.local
2013-04-27 22:20:29,079 INFO  [org.ovirt.engine.core.domains.ManageDomains]
Testing kerberos configuration for domain: wilk.local
2013-04-27 22:20:29,257 ERROR
[org.ovirt.engine.core.utils.kerberos.KerberosConfigCheck] Error:
exception message: freeipa.wilk.local.
2013-04-27 22:20:29,261 ERROR [org.ovirt.engine.core.domains.ManageDomains]
Failure while testing domain wilk.local. Details: Kerberos error. Please
check log for further details.


On Sun, Apr 28, 2013 at 1:17 AM, Yair Zaslavsky  wrote:

> Can we get the log?
> It would be helpful to understand the kerberos message to understand what
> have happened.
>
>
> --
>
> *From: *"Ryan Wilkinson" 
> *To: *users@ovirt.org
> *Sent: *Sunday, April 28, 2013 7:35:53 AM
> *Subject: *[Users] FreeIPA
>
>
> Getting this error when I try to configure ldap authentication for Ovirt
> with FreeIPA server:
> Error:  exception message: freeipa.wilk.local.
> Failure while testing domain wilk.local. Details: Kerberos error. Please
> check log for further details.
>
> Engine-manage-domains.log gives no further details.  When I run
> "engine-manage-domains -action=add -domain='wilk.local' -user='admin'
> -provider=IPA -interactive" it is connecting and asking for the password
> but then giving the error.  Any input would be appreciated.
>
> ___
> 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] Unable to add host in a development setup - "Host kernelpanic.home installation failed. Failed to decode own public key from store 'keys/engine.p12' using alias '1'."

2013-04-28 Thread Alon Bar-Lev

Maybe someone can help you in this.

I prefer people install development mode and use fully functional product 
within their development environment.

Alon

- Original Message -
> From: "Yuval M" 
> To: "Alon Bar-Lev" 
> Cc: users@ovirt.org, "Nezer Zaidenberg" , "Limor Gavish" 
> , "Vered Volansky"
> 
> Sent: Sunday, April 28, 2013 12:45:33 PM
> Subject: Re: [Users] Unable to add host in a development setup - "Host 
> kernelpanic.home installation failed. Failed
> to decode own public key from store 'keys/engine.p12' using alias '1'."
> 
> But is there an option to just manually install the new host?
> 
> Yuval
> 
> 
> On Sun, Apr 28, 2013 at 11:46 AM, Alon Bar-Lev  wrote:
> 
> >
> > Development mode installation is not yet supported to perform host-deploy.
> > There is ongoing work for fully functional development environment.
> > You can test this if you like before it is merged upstream.
> > Sources available here[1], documentation is here[2].
> >
> > [1] https://github.com/alonbl/ovirt-engine/tree/otopi
> > [2] https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer
> >
> > - Original Message -
> > > From: "Yuval M" 
> > > To: users@ovirt.org, "Nezer Zaidenberg" , "Limor
> > Gavish" 
> > > Sent: Saturday, April 27, 2013 5:22:59 PM
> > > Subject: [Users] Unable to add host in a development setup - "Host
> > kernelpanic.home installation failed. Failed to
> > > decode own public key from store 'keys/engine.p12' using alias '1'."
> > >
> > > I'm getting the aforementioned error message when trying to reinstall a
> > host
> > > that failed to be added to the cluster.
> > >
> > > in the engine log I have:
> > >
> > > 2013-04-27 16:29:58,249 ERROR
> > [org.ovirt.engine.core.bll.InstallVdsCommand]
> > > (pool-3-thread-49) [3070670b] Host installation failed for host
> > > cf09fb25-b8a4-4068-a
> > > 3c8-9869d0ba4ff9, kernelpanic.home.: java.lang.RuntimeException: Failed
> > to
> > > decode own public key from store 'keys/engine.p12' using alias '1'
> > > at
> > >
> > org.ovirt.engine.core.bll.VdsDeploy._getEngineSSHPublicKey(VdsDeploy.java:227)
> > > [bll.jar:]
> > > at org.ovirt.engine.core.bll.VdsDeploy.access$400(VdsDeploy.java:71)
> > > [bll.jar:]
> > > at org.ovirt.engine.core.bll.VdsDeploy$9.call(VdsDeploy.java:334)
> > [bll.jar:]
> > > at
> > >
> > org.ovirt.engine.core.bll.VdsDeploy._nextCustomizationEntry(VdsDeploy.java:476)
> > > [bll.jar:]
> > > at org.ovirt.engine.core.bll.VdsDeploy._threadMain(VdsDeploy.java:687)
> > > [bll.jar:]
> > > at org.ovirt.engine.core.bll.VdsDeploy.access$1400(VdsDeploy.java:71)
> > > [bll.jar:]
> > > at org.ovirt.engine.core.bll.VdsDeploy$32.run(VdsDeploy.java:779)
> > [bll.jar:]
> > > at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09-icedtea]
> > > Caused by: java.io.FileNotFoundException: keys/engine.p12 (No such file
> > or
> > > directory)
> > > at java.io.FileInputStream.open(Native Method) [rt.jar:1.7.0_09-icedtea]
> > > at java.io.FileInputStream.(FileInputStream.java:138)
> > > [rt.jar:1.7.0_09-icedtea]
> > > at java.io.FileInputStream.(FileInputStream.java:97)
> > > [rt.jar:1.7.0_09-icedtea]
> > > at
> > >
> > org.ovirt.engine.core.bll.VdsDeploy._getEngineSSHPublicKey(VdsDeploy.java:206)
> > > [bll.jar:]
> > > ... 7 more
> > >
> > >
> > >
> > > My setup has an all-in-one node with the engine installed from sources,
> > >
> > > and I'm attempting to add a seconds host (Fedora 18, vdsm from yum,
> > nothing
> > > fancy).
> > >
> > > I installed vdsm (yum install vdsm), and disabled SSL as instructed in:
> > > http://www.ovirt.org/OVirt_-_disable_SSL_in_VDSM
> > >
> > > I read here that the development setup (i.e engine installed from
> > sources)
> > > does not support automatic deployment:
> > > http://www.mail-archive.com/users@ovirt.org/msg07608.html
> > >
> > > Is this still the case?
> > > If so, how do I deploy an additional host in such a setup?
> > >
> > > Thanks,
> > >
> > > Yuval Meir
> > >
> > >
> > >
> > > ___
> > > 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] installation errors

2013-04-28 Thread Alex Lourie



On Sat, Apr 27, 2013 at 8:14 AM, Itamar Heim  wrote:

On 04/26/2013 05:43 PM, Lance Oreste wrote:

I got ovirt all in one working on one server, when I tried to install
another host, I get some strange erros. Here is a copy of my log, I 
am

not sure why the installation stopped


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



sandro/alex/moran - how is the dwh service related to all-in-one?


There's no connection between dwh and AIO.

Alex.

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


Re: [Users] [Engine-devel] Fwd: the procedure of storage-related

2013-04-28 Thread Vered Volansky
I'm not that familiarized with the code myself and can't tell you without 
looking into it and debugging it.
What I would do is - for any command I'd like the internal flow of - start at 
the top (All vds commands are listed when you type vdsClient, without the need 
to actually run something).
You can then search the specific command you're interested in in the code, and 
see the flow there.
You can obviously run a specific command if you have the correct setup and 
follow through with the vdsm.log to see the exact flow. You can, of course, add 
your own debug messages to make things clearer for you, as the vdsm log is 
logged to very frequently.

- Original Message -
> From: "bigclouds" 
> To: "Vered Volansky" 
> Cc: engine-de...@ovirt.org, "users" , 
> vdsm-de...@lists.fedorahosted.org
> Sent: Sunday, April 28, 2013 1:25:55 PM
> Subject: Re: [Engine-devel] Fwd:  the procedure of storage-related
> 
> hi,
> maybe i do not make you understand me fully. i am reading vdsm code, but it
> is hard for me to understand StorageDomain,StoragePool. before stoargeD(P)
> can work, engine must prepare many things.
>  i want to know  the call flow (process) which must be done to make
>  storageS(P) work.
>  
> 1.for example, what  funcitons you should call  if make a  stoargeDomain
> work.
>   
> poolConnectStorageServer->poolCreate->poolConnect->domainCreate->domainActivate.
>  
> thanks
> 
> 
> 
> 
> At 2013-04-28 17:40:29,"Vered Volansky"  wrote:
> >
> >
> >- Forwarded Message -
> >> From: "Vered Volansky" 
> >> To: "bigclouds" 
> >> Sent: Sunday, April 28, 2013 12:39:31 PM
> >> Subject: Re: [Engine-devel] the procedure of storage-related
> >> 
> >> Hi,
> >> 
> >> Find my answers below.
> >> 
> >> Best Regards,
> >> Vered
> >> 
> >> - Original Message -
> >> > From: "bigclouds" 
> >> > To: "engine-devel" 
> >> > Sent: Saturday, April 27, 2013 8:40:56 AM
> >> > Subject: [Engine-devel] the procedure of storage-related
> >> > 
> >> > hi,all
> >> > 1.i am now not very familar with the right procedure of storage,
> >> > please give me a simply introduction of their concept and relation.
> >> > help
> >> > me out
> >> >  
> >> > StoragePool,StorageDomain
> >> > image,volume
> >> 
> >> You should find the following link helpful:
> >> http://www.ovirt.org/Vdsm_Storage_Terminology
> >> 
> >> As per your other questions, you might find the following guide helpul:
> >> http://www.ovirt.org/Quick_Start_Guide#Configure_Storage
> >> 
> >> Of not, please rephrase them as they're not clear enough and I'd rather
> >> not
> >> guess.
> >> 
> >> 
> >> >  
> >> >  
> >> > 2.please help me confirm.
> >> > i find only one place call mount command, which is
> >> > poolConnectStorageServer.
> >> > if poolConnectStorageServer is before create and active
> >> > StoragePool,StorageDomain?
> >> >  
> >> > 3.if attach is just modify metadata, not anything else?
> >> >  
> >> > 4.sp.py, deactivateSD
> >> >   if i deactivate ISO storage,it finally umount masterDir, why  ?
> >> >   if masterDir is not  mastersd?
> >> > thanks
> >> > 
> >> > 
> >> > 
> >> > ___
> >> > Engine-devel mailing list
> >> > engine-de...@ovirt.org
> >> > http://lists.ovirt.org/mailman/listinfo/engine-devel
> >> > 
> >> 
> >___
> >Engine-devel mailing list
> >engine-de...@ovirt.org
> >http://lists.ovirt.org/mailman/listinfo/engine-devel
> 
> ___
> Engine-devel mailing list
> engine-de...@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/engine-devel
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Fwd: Failed to install Host Unsupported network manager configuration.

2013-04-28 Thread Vered Volansky
Hi Jairo,

Please send the vdsm.log and engine.log, we'll need them to understand what's 
going on there.
What are you using to perform your re-install (webadmin/user portal)?

Did you follow the instructions in:
http://www.ovirt.org/Developers_All_In_One ?

Are your /etc/vdsm/vdsm.conf , /etc/libvirt/qemu.conf , 
/etc/libvirt/libvirtd.conf configured as explained there?

Regards,
Vered

- Original Message -
> From: "Jairo Llopis" 
> To: "users" 
> Sent: Wednesday, April 24, 2013 1:06:01 PM
> Subject: [Users] Fwd: Failed to install Host Unsupported network manager  
> configuration.
> 
> Hi everyone.
> 
> After installing ovirt-engine with the all-in-one plugin, the local_host is
> not correctly working.
> 
> Clicking on it raises this error: "Host installation failed. Fix
> installation issues and try to Re-Install".
> 
> If I click on Re-Install, i get the following error: "Failed to install
> Host local_host. Failed to execute stage 'Misc configuration': Unsupported
> network manager configuration."
> 
> Additional info: The host is a CentOS 6.4 machine, using the repo
> http://resources.ovirt.org/releases/ovirt-release-el.noarch.rpm.
> 
> I tried everything I can, and I searched everywhere I know, and I found no
> solution. Can anyone help me?
> 
> Thanks.
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] [Engine-devel] Fwd: the procedure of storage-related

2013-04-28 Thread bigclouds
hi,
maybe i do not make you understand me fully. i am reading vdsm code, but it is 
hard for me to understand StorageDomain,StoragePool. before stoargeD(P) can 
work, engine must prepare many things.
 i want to know  the call flow (process) which must be done to make storageS(P) 
work.
 
1.for example, what  funcitons you should call  if make a  stoargeDomain work.
  
poolConnectStorageServer->poolCreate->poolConnect->domainCreate->domainActivate.
 
thanks




At 2013-04-28 17:40:29,"Vered Volansky"  wrote:
>
>
>- Forwarded Message -
>> From: "Vered Volansky" 
>> To: "bigclouds" 
>> Sent: Sunday, April 28, 2013 12:39:31 PM
>> Subject: Re: [Engine-devel] the procedure of storage-related
>> 
>> Hi,
>> 
>> Find my answers below.
>> 
>> Best Regards,
>> Vered
>> 
>> - Original Message -
>> > From: "bigclouds" 
>> > To: "engine-devel" 
>> > Sent: Saturday, April 27, 2013 8:40:56 AM
>> > Subject: [Engine-devel] the procedure of storage-related
>> > 
>> > hi,all
>> > 1.i am now not very familar with the right procedure of storage,
>> > please give me a simply introduction of their concept and relation.
>> > help
>> > me out
>> >  
>> > StoragePool,StorageDomain
>> > image,volume
>> 
>> You should find the following link helpful:
>> http://www.ovirt.org/Vdsm_Storage_Terminology
>> 
>> As per your other questions, you might find the following guide helpul:
>> http://www.ovirt.org/Quick_Start_Guide#Configure_Storage
>> 
>> Of not, please rephrase them as they're not clear enough and I'd rather not
>> guess.
>> 
>> 
>> >  
>> >  
>> > 2.please help me confirm.
>> > i find only one place call mount command, which is
>> > poolConnectStorageServer.
>> > if poolConnectStorageServer is before create and active
>> > StoragePool,StorageDomain?
>> >  
>> > 3.if attach is just modify metadata, not anything else?
>> >  
>> > 4.sp.py, deactivateSD
>> >   if i deactivate ISO storage,it finally umount masterDir, why  ?
>> >   if masterDir is not  mastersd?
>> > thanks
>> > 
>> > 
>> > 
>> > ___
>> > Engine-devel mailing list
>> > engine-de...@ovirt.org
>> > http://lists.ovirt.org/mailman/listinfo/engine-devel
>> > 
>> 
>___
>Engine-devel mailing list
>engine-de...@ovirt.org
>http://lists.ovirt.org/mailman/listinfo/engine-devel
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] how to use ovirt-shell?

2013-04-28 Thread Vered Volansky
I'm not that familiar with the subject, but from the little I've had with it, 
it seems to me a port might be missing.

Regards,
Vered

- Original Message -
> From: "Lior Vernia" 
> To: "bigclouds" 
> Cc: users@ovirt.org
> Sent: Thursday, April 25, 2013 10:01:56 AM
> Subject: Re: [Users] how to use ovirt-shell?
> 
> Sorry, replace https with http as well:
> 
> "ovirt-shell -l http://127.0.0.1/api -u admin@internal"
> 
> 
> On 25/04/13 10:00, Lior Vernia wrote:
> > Hello again,
> > 
> > First of all, I don't know of any  option that could be supplied
> > to ovirt-shell (however I'm not expert), so try to drop that. If that
> > still doesn't work, I suspect that the certificate files which might not
> > be properly set up. Please try to connect non-securely first, like so:
> > 
> > "ovirt-shell -l https://127.0.0.1/api -u admin@internal"
> > 
> > If this works, this might help with regard to the certificate files:
> > http://www.ovirt.org/How_to_Connect_to_SPICE_Console_Without_Portal
> > 
> > Yours, Lior Vernia.
> > 
> > On 25/04/13 04:35, bigclouds wrote:
> >> error: [401] - Unauthorized, HTTP Status 401
> >>  
> >> does this need context?
> >>  
> >> thanks.
> >>
> >>
> >>
> >>
> >> At 2013-04-24 16:19:44,"Lior Vernia"  wrote:
> >>> Hello,
> >>>
> >>> Instead of "https://127.0.0.1/";, try to type "https://127.0.0.1/api";.
> >>>
> >>> Yours, Lior Vernia.
> >>>
> >>> On 24/04/13 04:32, bigclouds wrote:
>  hi,all
>   
>  ovirt-shell  -l  https://127.0.0.1/ -u admin@internal
>   -A /etc/pki/vdsm/certs/cacert.pem -C
>  /etc/pki/vdsm/libvirt-spice/server-cert.pem -K
>  /etc/pki/vdsm/libvirt-spice/server-key.pem -c
>   
>  i never successfully connect.
>   
>  thanks
> 
> 
> 
> 
>  ___
>  Users mailing list
>  Users@ovirt.org
>  http://lists.ovirt.org/mailman/listinfo/users
> 
> >>
> >>
> >>
> > ___
> > Users mailing list
> > Users@ovirt.org
> > http://lists.ovirt.org/mailman/listinfo/users
> > 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Unable to add host in a development setup - "Host kernelpanic.home installation failed. Failed to decode own public key from store 'keys/engine.p12' using alias '1'."

2013-04-28 Thread Yuval M
But is there an option to just manually install the new host?

Yuval


On Sun, Apr 28, 2013 at 11:46 AM, Alon Bar-Lev  wrote:

>
> Development mode installation is not yet supported to perform host-deploy.
> There is ongoing work for fully functional development environment.
> You can test this if you like before it is merged upstream.
> Sources available here[1], documentation is here[2].
>
> [1] https://github.com/alonbl/ovirt-engine/tree/otopi
> [2] https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer
>
> - Original Message -
> > From: "Yuval M" 
> > To: users@ovirt.org, "Nezer Zaidenberg" , "Limor
> Gavish" 
> > Sent: Saturday, April 27, 2013 5:22:59 PM
> > Subject: [Users] Unable to add host in a development setup - "Host
> kernelpanic.home installation failed. Failed to
> > decode own public key from store 'keys/engine.p12' using alias '1'."
> >
> > I'm getting the aforementioned error message when trying to reinstall a
> host
> > that failed to be added to the cluster.
> >
> > in the engine log I have:
> >
> > 2013-04-27 16:29:58,249 ERROR
> [org.ovirt.engine.core.bll.InstallVdsCommand]
> > (pool-3-thread-49) [3070670b] Host installation failed for host
> > cf09fb25-b8a4-4068-a
> > 3c8-9869d0ba4ff9, kernelpanic.home.: java.lang.RuntimeException: Failed
> to
> > decode own public key from store 'keys/engine.p12' using alias '1'
> > at
> >
> org.ovirt.engine.core.bll.VdsDeploy._getEngineSSHPublicKey(VdsDeploy.java:227)
> > [bll.jar:]
> > at org.ovirt.engine.core.bll.VdsDeploy.access$400(VdsDeploy.java:71)
> > [bll.jar:]
> > at org.ovirt.engine.core.bll.VdsDeploy$9.call(VdsDeploy.java:334)
> [bll.jar:]
> > at
> >
> org.ovirt.engine.core.bll.VdsDeploy._nextCustomizationEntry(VdsDeploy.java:476)
> > [bll.jar:]
> > at org.ovirt.engine.core.bll.VdsDeploy._threadMain(VdsDeploy.java:687)
> > [bll.jar:]
> > at org.ovirt.engine.core.bll.VdsDeploy.access$1400(VdsDeploy.java:71)
> > [bll.jar:]
> > at org.ovirt.engine.core.bll.VdsDeploy$32.run(VdsDeploy.java:779)
> [bll.jar:]
> > at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09-icedtea]
> > Caused by: java.io.FileNotFoundException: keys/engine.p12 (No such file
> or
> > directory)
> > at java.io.FileInputStream.open(Native Method) [rt.jar:1.7.0_09-icedtea]
> > at java.io.FileInputStream.(FileInputStream.java:138)
> > [rt.jar:1.7.0_09-icedtea]
> > at java.io.FileInputStream.(FileInputStream.java:97)
> > [rt.jar:1.7.0_09-icedtea]
> > at
> >
> org.ovirt.engine.core.bll.VdsDeploy._getEngineSSHPublicKey(VdsDeploy.java:206)
> > [bll.jar:]
> > ... 7 more
> >
> >
> >
> > My setup has an all-in-one node with the engine installed from sources,
> >
> > and I'm attempting to add a seconds host (Fedora 18, vdsm from yum,
> nothing
> > fancy).
> >
> > I installed vdsm (yum install vdsm), and disabled SSL as instructed in:
> > http://www.ovirt.org/OVirt_-_disable_SSL_in_VDSM
> >
> > I read here that the development setup (i.e engine installed from
> sources)
> > does not support automatic deployment:
> > http://www.mail-archive.com/users@ovirt.org/msg07608.html
> >
> > Is this still the case?
> > If so, how do I deploy an additional host in such a setup?
> >
> > Thanks,
> >
> > Yuval Meir
> >
> >
> >
> > ___
> > 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] Fwd: [Engine-devel] the procedure of storage-related

2013-04-28 Thread Vered Volansky


- Forwarded Message -
> From: "Vered Volansky" 
> To: "bigclouds" 
> Sent: Sunday, April 28, 2013 12:39:31 PM
> Subject: Re: [Engine-devel] the procedure of storage-related
> 
> Hi,
> 
> Find my answers below.
> 
> Best Regards,
> Vered
> 
> - Original Message -
> > From: "bigclouds" 
> > To: "engine-devel" 
> > Sent: Saturday, April 27, 2013 8:40:56 AM
> > Subject: [Engine-devel] the procedure of storage-related
> > 
> > hi,all
> > 1.i am now not very familar with the right procedure of storage,
> > please give me a simply introduction of their concept and relation.
> > help
> > me out
> >  
> > StoragePool,StorageDomain
> > image,volume
> 
> You should find the following link helpful:
> http://www.ovirt.org/Vdsm_Storage_Terminology
> 
> As per your other questions, you might find the following guide helpul:
> http://www.ovirt.org/Quick_Start_Guide#Configure_Storage
> 
> Of not, please rephrase them as they're not clear enough and I'd rather not
> guess.
> 
> 
> >  
> >  
> > 2.please help me confirm.
> > i find only one place call mount command, which is
> > poolConnectStorageServer.
> > if poolConnectStorageServer is before create and active
> > StoragePool,StorageDomain?
> >  
> > 3.if attach is just modify metadata, not anything else?
> >  
> > 4.sp.py, deactivateSD
> >   if i deactivate ISO storage,it finally umount masterDir, why  ?
> >   if masterDir is not  mastersd?
> > thanks
> > 
> > 
> > 
> > ___
> > Engine-devel mailing list
> > engine-de...@ovirt.org
> > http://lists.ovirt.org/mailman/listinfo/engine-devel
> > 
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] oVirt support for backup/restore

2013-04-28 Thread Ayal Baron


- Original Message -
> sön 2013-04-21 klockan 08:42 -0400 skrev Ayal Baron:
> 
> 
> 
> - Original Message -
> > On 04/19/2013 11:46 AM, Gianluca Cecchi wrote:
> > > On Fri, Apr 19, 2013 at 9:58 AM, Itamar Heim wrote:
> > >
> > >>
> > >> qemu-guest-agent isn't ovirt/rhev-guest-agent.
> > >> now that qemu started their own guest agent, ovirt/rhev-guest-agent
> > >> isn't
> > >> used for things covered by the qemu-guest-agent.
> > >
> > > Ah, ok.
> > > SO after reading
> > > http://wiki.libvirt.org/page/Qemu_guest_agent
> > > some questions
> > >
> > > can we use ootb qemu-guest-agent with ovirt 3.2.1 if we have for
> > > example a CentOS 6 guest (with qemu-guest-agent-0.12.1.2-2.355)?
> > > Does oVirt create a virtio-serial port to communicate with libvit and
> > > does it use libvirt with any options to quiesce  fs on guest?
> >
> > iirc, it should work - testing/feedback would be welcome.
> 
> I believe vdsm does not create the virtio-serial port when starting the VM,
> so you'd have to modify this behaviour with hooks [1].
> Once you do that, whenever you create a live snapshot vdsm will notify
> libvirt to quiesce first.
> Note that afaik, quiesce in qemu-ga is only supported for Linux guests.
> 
> 
> Really cool to hear how things are progressing! The qemu-ga quiesces what
> exactly? The guest filesystem? What about potential applications that might

Yes, it quiesces xfs/ext3/ext4 (I don't recall wrt btrfs) file systems.

> be running inside the guest? Can you call live snapshots of a linux guest
> "Application Consistent"?

Linux has no such infrastructure atm.  There are upstream patches for qemu-ga 
to support calling hooks before and after quiesce to allow users to freeze 
their apps so that the snapshot would be application consistent.  This will 
require users to place their scripts inside the guest of course.

> 
> The good thing about Microsoft VSS is that MS applications are registered to
> VSS so that when you trigger VSS to quiece, all of the other applications
> are told to pause as well.

Indeed, there have been many discussions around this and there is a lot of 
interest around this topic, but I haven't seen any accepted solution as of yet.

> 
> /Karli
> 
> 
> 
> VSS quiesce support patches have been submitted, but I'm not sure what the
> status is there yet.
> 
> [1] Hooks preso: http://www.ovirt.org/File:OVirt-hooks-netapp-jan2013.odp
> 
> >
> > >
> > > Can one use as an alternative the command fsfreeze in CentOS 6.4 guest
> > > (even if in tech preview) as in :
> > > https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Technical_Notes/storage.html
> > >
> >
> > what i remember is that it supposed to be pluggable/configurable for you
> > to run the relevant commands you want.
> > ayal may remember better
> >
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 
> 
> --
> 
> Med Vänliga Hälsningar
> ---
> Karli Sjöberg
> Swedish University of Agricultural Sciences
> Box 7079 (Visiting Address Kronåsvägen 8)
> S-750 07 Uppsala, Sweden
> Phone:  +46-(0)18-67 15 66
> karli.sjob...@slu.se
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] questions about vdsm supervdsmserver

2013-04-28 Thread Yaniv Bronheim
Hey bigclouds,
Supervdsm allows vdsm to run root commands, like mount, dmidecode, lsblk, scan 
folders that are unprivileged for vdsm user, and more. Due to this method we 
avoid executing root commands using execv with sudo, that way we don't create 
subprocess for each operation.

We have to have supervdsm as external deamon, as it runs as different user 
(root, vdsm runs as user vdsm). Supervdsm deamon doesn't related to libvirt or 
uses libvirt at all, most of supervdsm functionality is used by vdsm in 
different flows. you can check supervdsm API in supervdsmServer.py and see 
where we call it.

We need to have only one instance of supervdsm with a socket file under 
/var/run/vdsm/ , supervdsm creates this file and vdsm communicate with it. 

Due to your netstat output, most of the time you should have 2 or 3 entries 
unix  2  [ ACC ] STREAM LISTENING 18895145 
/var/run/vdsm/svdsm.sock
unix  2  [ ] STREAM CONNECTED 18895172 
/var/run/vdsm/svdsm.sock
unix  3  [ ] STREAM CONNECTED 18895158 
/var/run/vdsm/svdsm.sock
(multiprocessing package implementation, you can check there)
might be that other subprocesses or subthreads also hold a request to 
svdsm.sock at the time you checked, 
I don't understand the reason for /var/run/mcvda folder at all.. maybe you 
changed something in the configuration? is it always appear? what else do you 
have under this folder?
Normal run shouldn't have more entries as far as I checked.

In addition, I'm working on making supervdsm external service, you can take a 
look and maybe help me with review :)
[http://gerrit.ovirt.org/#/c/11051/]

Regards,
Yaniv Bronhaim.

- Original Message -
> From: "bigclouds" 
> To: users@ovirt.org
> Sent: Friday, April 26, 2013 9:59:47 AM
> Subject: [Users] questions about vdsm supervdsmserver
> 
> hi,all.
> i have 2 questions about supervdsmserver,
> 1.why it is created separately as a daemon?
> its many function have never been used, and its function can be done by
> calling libvirt directly, why supervdsmserver is need?
> 2.it seems that only one supervdsmserver should be exist, by killing old ones
> to assure that . but look at this, and please explain to me.
> unix 2 [ ACC ] STREAM LISTENING 1339963 4968/python /var/run/vdsm/svdsm.sock
> unix 2 [ ACC ] STREAM LISTENING 384165 39716/python &nb sp;
> /var/run/vdsm/svdsm.sock
> unix 2 [ ACC ] STREAM LISTENING 1100509 49487/python /var/run/vdsm/svdsm.sock
> unix 2 [ ACC ] STREAM LISTENING 1326232 3813/python /var/run/mcvda/svdsm.sock
> unix 3 [ ] STREAM CONNECTED 1448193 4968/python /var/run/mcvda/svdsm.sock
> unix 3 [ ] STREAM CONNECTED 1447937 4968/python /var /run/mcvda/svdsm.sock
> unix 3 [ ] STREAM CONNECTED 1424959 4968/python /var/run/mcvda/svdsm.sock
> unix 3 [ ] STREAM CONNECTED 1414835 4968/python /var/run/mcvda/svdsm.sock
> unix 3 [ ] STREAM CONNECTED 1327873 3813/python /var/run/mcvda/svdsm.sock
> unix 2 [ ] STREAM CONNECTED 1309612 49487/python & nbsp;
> /var/run/mcvda/svdsm.sock
> unix 3 [ ] STREAM CONNECTED 384221 39716/python /var/run/mcvda/svdsm.sock
> thanks
> 
> 
> 
> ___
> 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 3.2.1 - VM in unknown status

2013-04-28 Thread Roy Golan

On Fri 19 Apr 2013 01:50:21 PM IDT, Piotr Szubiakowski wrote:



Hi,
I had a nfs storage problems and one of my VM's is now in unknown
state. The VM is not attached to any host. The virsh tool shows
that VM is not running now. Is there any way to bring that kind of
VM back to life?

Best regards,
Piotr



Hi,
I found workaround for this situation. There is a possibility to
change the VM status manually in database:

update vm_dynamic set status=0 where
vm_guid='1d5342a3-9375-49c5-bf2a-2bd444d41d09';

@oVirt developers
It seems that in some situations, VM with'unknown' status has no
chances to change state. When all hosts in data center are up and
the VM is not attached to any host it's a dead end. In this
particular situation oVirt engine administrator can't perform any
actions on "lost" VM. Is any way to handle this case without
database access?


the state transition in this case is the engine responsibility and
not the user. its done by monitoring all VMs on all Hosts periodically.
Whats more interesting is how have you got to that situation and if
its worth a bug please be kind to report it.


Hi Roy,
I reported a bug (953839). If it would be considered as worth to fix I
can provide some help.

I haven't introduce jet to the oVirt community. So I'm software
engineer in the Polish Research and Academic Computer Network. Mainly
I'm Java EE developer. We use oVirt to manage our development and
testing environments. I'm very enthusiastic about oVirt project.


Welcome Piotr and thank you very much for posting the bug.
Have a peek at wiki.ovirt.org to get more info about areas you have 
interest in.


You can also join the IRC channel #ovirt on irc.oftc.net  - checkout 
http://www.ovirt.org/Communication#IRC for more info



PS
sorry for my English. I try to do my best ;-)

Best regards,
Piotr
___
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] Unable to add host in a development setup - "Host kernelpanic.home installation failed. Failed to decode own public key from store 'keys/engine.p12' using alias '1'."

2013-04-28 Thread Alon Bar-Lev

Development mode installation is not yet supported to perform host-deploy.
There is ongoing work for fully functional development environment.
You can test this if you like before it is merged upstream.
Sources available here[1], documentation is here[2].

[1] https://github.com/alonbl/ovirt-engine/tree/otopi
[2] https://github.com/alonbl/ovirt-engine/blob/otopi/README.developer 

- Original Message -
> From: "Yuval M" 
> To: users@ovirt.org, "Nezer Zaidenberg" , "Limor Gavish" 
> 
> Sent: Saturday, April 27, 2013 5:22:59 PM
> Subject: [Users] Unable to add host in a development setup - "Host 
> kernelpanic.home installation failed. Failed to
> decode own public key from store 'keys/engine.p12' using alias '1'."
> 
> I'm getting the aforementioned error message when trying to reinstall a host
> that failed to be added to the cluster.
> 
> in the engine log I have:
> 
> 2013-04-27 16:29:58,249 ERROR [org.ovirt.engine.core.bll.InstallVdsCommand]
> (pool-3-thread-49) [3070670b] Host installation failed for host
> cf09fb25-b8a4-4068-a
> 3c8-9869d0ba4ff9, kernelpanic.home.: java.lang.RuntimeException: Failed to
> decode own public key from store 'keys/engine.p12' using alias '1'
> at
> org.ovirt.engine.core.bll.VdsDeploy._getEngineSSHPublicKey(VdsDeploy.java:227)
> [bll.jar:]
> at org.ovirt.engine.core.bll.VdsDeploy.access$400(VdsDeploy.java:71)
> [bll.jar:]
> at org.ovirt.engine.core.bll.VdsDeploy$9.call(VdsDeploy.java:334) [bll.jar:]
> at
> org.ovirt.engine.core.bll.VdsDeploy._nextCustomizationEntry(VdsDeploy.java:476)
> [bll.jar:]
> at org.ovirt.engine.core.bll.VdsDeploy._threadMain(VdsDeploy.java:687)
> [bll.jar:]
> at org.ovirt.engine.core.bll.VdsDeploy.access$1400(VdsDeploy.java:71)
> [bll.jar:]
> at org.ovirt.engine.core.bll.VdsDeploy$32.run(VdsDeploy.java:779) [bll.jar:]
> at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_09-icedtea]
> Caused by: java.io.FileNotFoundException: keys/engine.p12 (No such file or
> directory)
> at java.io.FileInputStream.open(Native Method) [rt.jar:1.7.0_09-icedtea]
> at java.io.FileInputStream.(FileInputStream.java:138)
> [rt.jar:1.7.0_09-icedtea]
> at java.io.FileInputStream.(FileInputStream.java:97)
> [rt.jar:1.7.0_09-icedtea]
> at
> org.ovirt.engine.core.bll.VdsDeploy._getEngineSSHPublicKey(VdsDeploy.java:206)
> [bll.jar:]
> ... 7 more
> 
> 
> 
> My setup has an all-in-one node with the engine installed from sources,
> 
> and I'm attempting to add a seconds host (Fedora 18, vdsm from yum, nothing
> fancy).
> 
> I installed vdsm (yum install vdsm), and disabled SSL as instructed in:
> http://www.ovirt.org/OVirt_-_disable_SSL_in_VDSM
> 
> I read here that the development setup (i.e engine installed from sources)
> does not support automatic deployment:
> http://www.mail-archive.com/users@ovirt.org/msg07608.html
> 
> Is this still the case?
> If so, how do I deploy an additional host in such a setup?
> 
> Thanks,
> 
> Yuval Meir
> 
> 
> 
> ___
> 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 3.2.1 and clone from snapshot.... argh...!!!

2013-04-28 Thread Moran Goldboim

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

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

Regards,
Maor


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



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

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

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

Thanks for your attention,
Maor

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

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

Regards,
Maor

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

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

that was one of the biggest problems of 3.2

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

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

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

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



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




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





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


Re: [Users] Unable to activate data center after host reboot.

2013-04-28 Thread Steven Wiltshire

Hello Vered,

Thanks for your email.

I'm happy to say that as of about an hour ago, the problem is solved - 
it was a problem with a 3.6 kernel and VDSM 4.9 not playing nice with an 
NFS storage domain.


As far as I was aware, the packages on the server had not been updated - 
so I didn't think to check the kernel version. It turns out that at some 
point the kernel had been updated but, of course, the update didn't 
'kick in' until the machine was rebooted. It's a testing machine and a 
few developers have root access - I guess one of them had, at some 
point, done the deed and neglected to document it.


Thank you to everybody for their help pointing me in the right 
direction. It was a trivial fix once the problem was identified.


Thanks again,

--Steven.

On 28/04/2013 4:17 PM, Vered Volansky wrote:

Hi Steven,

Please send the full vdsm.log .
I'd like to see it from the moment the problem first occurred - when you got 
the following message -
"No valid Data Storage Domains are available in Data Center Default
(please check your storage infrastructure)".

Best Regards,
Vered

- Original Message -

From: "Steven Wiltshire" 
To: users@ovirt.org
Sent: Saturday, April 27, 2013 6:58:54 PM
Subject: Re: [Users] Unable to activate data center after host reboot.

Hi Ian,

Thanks for pointing me in that direction. I found the following:

--
engine=# select * from storage_pool_iso_map;
storage_id  | storage_pool_id|
status | owner
--+--++---
   025062dd-d69e-40ac-9031-c080b51647ae |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  5 | 0
   503e6677-2d51-4668-ab17-f914bdb57c19 |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
   d30604e3-3ca8-470a-8da4-18c9402f7504 |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
(3 rows)
--

But changed it to using the query in the thread you suggested:

--
engine=# select * from storage_pool_iso_map;
storage_id  | storage_pool_id|
status | owner
--+--++---
   025062dd-d69e-40ac-9031-c080b51647ae |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
   503e6677-2d51-4668-ab17-f914bdb57c19 |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
   d30604e3-3ca8-470a-8da4-18c9402f7504 |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
--

When I try to activate the data centre, it changes to:

--
engine=# select * from storage_pool_iso_map;
storage_id  | storage_pool_id|
status | owner
--+--++---
   025062dd-d69e-40ac-9031-c080b51647ae |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  4 | 0
   503e6677-2d51-4668-ab17-f914bdb57c19 |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
   d30604e3-3ca8-470a-8da4-18c9402f7504 |
2b633f9a-8840-11e1-9ed7-17e6c491db84 |  0 | 0
--

However, I'm still unable to activate the data centre.Engine.log is
giving me the following:

--
2013-04-28 00:55:33,297 INFO
[org.ovirt.engine.core.vdsbroker.VdsManager] (QuartzScheduler_Worker-5)
Initializing Host: BigServer
2013-04-28 00:55:33,331 WARN
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(QuartzScheduler_Worker-5) domain 503e6677-2d51-4668-ab17-f914bdb57c19
in problem. vds: BigServer
2013-04-28 00:55:33,332 WARN
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(QuartzScheduler_Worker-5) domain d30604e3-3ca8-470a-8da4-18c9402f7504
in problem. vds: BigServer
2013-04-28 00:55:39,391 INFO
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(QuartzScheduler_Worker-17) hostFromVds::selectedVds - BigServer,
spmStatus Unknown_Pool, storage pool Default
2013-04-28 00:55:39,594 INFO
[org.ovirt.engine.core.vdsbroker.vdsbroker.ConnectStoragePoolVDSCommand]
(QuartzScheduler_Worker-17) START, ConnectStoragePoolVDSCommand(vdsId =
aeac7aa6-8840-11e1-99aa-7fbd3e56e26e, storagePoolId =
2b633f9a-8840-11e1-9ed7-17e6c491db84, vds_spm_id = 1, masterDomainId =
025062dd-d69e-40ac-9031-c080b51647ae, masterVersion = 1), log id: 132803ba
2013-04-28 00:55:41,425 INFO
[org.ovirt.engine.core.vdsbroker.vdsbroker.BrokerCommandBase]
(QuartzScheduler_Worker-17) Command
org.ovirt.engine.core.vdsbroker.vdsbroker.ConnectStoragePoolVDSCommand
return value
   Class Name:
org.ovirt.engine.core.vdsbroker.vdsbroker.StatusOnlyReturnForXmlRpc
mStatus  

Re: [Users] [Spice-devel] usb pass-through

2013-04-28 Thread Uri Lublin

On 04/26/2013 02:41 PM, Itamar Heim wrote:

On 04/25/2013 07:50 PM, Ryan Wilkinson wrote:

Can't seem to get an answer as to if usb pass-through is supported from
a Windows IE 8 or 9 client over Spice??




iirc, yes.
adding spice-devel though


Spice usbredir works on Windows clients, with some limitations:
1. The user has to install the WinUSB driver for the specific USB device,
or the user has to install the usbclerk service (on the client 
machine).

2. USB composite devices are not currently supported.
3. USB audio/video devices (isochronous) are not supported.

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


Re: [Users] FreeIPA

2013-04-28 Thread Yair Zaslavsky
Can we get the log? 
It would be helpful to understand the kerberos message to understand what have 
happened. 

- Original Message -

> From: "Ryan Wilkinson" 
> To: users@ovirt.org
> Sent: Sunday, April 28, 2013 7:35:53 AM
> Subject: [Users] FreeIPA

> Getting this error when I try to configure ldap authentication for Ovirt with
> FreeIPA server:
> Error: exception message: freeipa.wilk.local.
> Failure while testing domain wilk.local. Details: Kerberos error. Please
> check log for further details.

> Engine-manage-domains.log gives no further details. When I run
> "engine-manage-domains -action=add -domain='wilk.local' -user='admin'
> -provider=IPA -interactive" it is connecting and asking for the password but
> then giving the error. Any input would be appreciated.

> ___
> 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