[ovirt-users] Ovirt Hang after adding to ManageIq

2014-08-21 Thread Chandrahasa S
Dear Team,

Need you Help.

I have added Ovirt to ManageIq, after adding Ovirt Manager started to 
hang. Observed CPU utilization going high.

Once I removed it back everything gone ok, any one faced same issue ? any 
resolution ?

Regards,
Chandrahasa S
Tata Consultancy Services
Data Center- ( Non STPI)
2nd Pokharan Road,
Subash Nagar ,
Mumbai - 400601,Maharashtra
India
Ph:- +91 22 677-81825
Buzz:- 4221825
Mailto: chandrahas...@tcs.com
Website: http://www.tcs.com

Experience certainty.   IT Services
Business Solutions
Consulting

=-=-=
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you


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


Re: [ovirt-users] Ovirt api function

2014-08-21 Thread Shanil S
Hi,

VM rebuild means...Rebuild the VM with the same existing
configuration...just erase the Vdisk and install again (like Fresh
install).
We want to rebuild the VM with the same existing OS template...also it will
be good if user can select other OS template also for the rebuild
purpose...
With CD_ISO it require the manual installation...we don't want the manual
installation...we looking for a way to rebuild the VM with OS templates
Is there any API method to achieve this ??

Regarding the statitics report, is there any API method to fetch the
monthly and weekly usages report ?, we are planning to create a usage chart
by using these values.

-- 
Regards
Shanil


On Fri, Aug 22, 2014 at 9:46 AM, OvirtAndKvm  wrote:

> Do you mean like; attach a new OS install ISO CD to the VM, change the
> VM's boot order to CD first, reboot the VM and boot up on the CD and
> install the new OS, selecting to reformat over the old installed OS  ?
>
> or am I miss understanding your question ?
>
>
>
> At Friday, 22-08-2014 on 13:58 Shanil S wrote:
>
> Hi Juan,
>
> Thanks for your replies..
>
> Regarding the rebuild VM, Is that any method to reinstall the os on the VM
> without remove it or create a new one?
>
>
> --
> Regards
> Shanil
>
>
> On Thu, Aug 21, 2014 at 4:55 PM, Juan Hernandez 
> wrote:
>
>> On 08/20/2014 12:42 PM, Shanil S wrote:
>> > Hi,
>> >
>> >
>> > I would like to create the following functions using the ovirt api
>> >
>> > 1. Rebuild VM
>>
>> What do you exactly mean by "rebuild vm"?
>>
>> > 2. Restore the screenthots of one vm to another vm
>>
>> What you can do is create a new VM from an existing snapshot, something
>> like this:
>>
>> #!/bin/sh -ex
>>
>> url="https://ovirt.example.com/ovirt-engine/api";
>> user="admin@internal"
>> password="**"
>>
>> curl \
>> --verbose \
>> --insecure \
>> --request POST \
>> --header "Accept: application/xml" \
>> --header "Content-Type: application/xml" \
>> --user "${user}:${password}" \
>> --data "
>> 
>>   myclone
>>   
>>   
>> 
>>   
>> 
>> " \
>> "${url}/vms"
>>
>> You need to modify that script with your URL, user name, password,
>> cluster and snapshot id.
>>
>> > 3. Display cpu,network etc usages
>> >
>>
>> The statistics are available in the "statistics" sub-resource. For
>> example, if you want to get the statistics of a host you can do the
>> following:
>>
>> #!/bin/sh -ex
>>
>> url="https://ovirt.example.com/ovirt-engine/api";
>> user="admin@internal"
>> password="**"
>>
>> curl \
>> --verbose \
>> --insecure \
>> --request GET \
>> --header "Accept: application/xml" \
>> --user "${user}:${password}" \
>> "${url}/hosts/40cc4c33-2560-4516-b028-1d59638139c3/statistics"
>>
>> There you will find different statistics, like "memory.total",
>> "memory.used", etc. Take a look. Once you know what statistic you want
>> you can get its details like this:
>>
>> curl \
>> --verbose \
>> --insecure \
>> --request GET \
>> --header "Accept: application/xml" \
>> --user "${user}:${password}" \
>>
>> "${url}/hosts/40cc4c33-2560-4516-b028-1d59638139c3/statistics/7816602b-c05c-3db7-a4da-3769f7ad8896"
>>
>> This can be cumbersome to do with a shell script, so you may want to use
>> the Python or Java SDKs, or just use directly the ovirt-shell:
>>
>> $ ovirt-shell --insecure
>> URL: https://ovirt.example.com/ovirt-engine/api
>> Username: admin@internal
>> Password: **
>> [oVirt shell (connected)]# show statistic memory.total --host-identifier
>> myhost
>> id: 7816602b-c05c-3db7-a4da-3769f7ad8896
>> name  : memory.total
>> description   : Total memory
>> host-id   : 40cc4c33-2560-4516-b028-1d59638139c3
>> type  : GAUGE
>> unit  : BYTES
>> values-type   : INTEGER
>> values-value-datum: 2099249152
>>
>> > I couldn't find out any direct api method to do the above, Is it
>> > possible to do these operations using api ? If anyone knows it please
>> > help me to sort out it.
>> >
>> >
>> >
>> > --
>> > Regards
>> > Shanil
>>
>> --
>> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
>> 3ºD, 28016 Madrid, Spain
>> Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
>>
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Ovirt api function

2014-08-21 Thread Shanil S
Hi Juan,

Thanks for your replies..

Regarding the rebuild VM, Is that any method to reinstall the os on the VM
without remove it or create a new one?


-- 
Regards
Shanil


On Thu, Aug 21, 2014 at 4:55 PM, Juan Hernandez  wrote:

> On 08/20/2014 12:42 PM, Shanil S wrote:
> > Hi,
> >
> >
> > I would like to create the following functions using the ovirt api
> >
> > 1. Rebuild VM
>
> What do you exactly mean by "rebuild vm"?
>
> > 2. Restore the screenthots of one vm to another vm
>
> What you can do is create a new VM from an existing snapshot, something
> like this:
>
> #!/bin/sh -ex
>
> url="https://ovirt.example.com/ovirt-engine/api";
> user="admin@internal"
> password="**"
>
> curl \
> --verbose \
> --insecure \
> --request POST \
> --header "Accept: application/xml" \
> --header "Content-Type: application/xml" \
> --user "${user}:${password}" \
> --data "
> 
>   myclone
>   
>   
> 
>   
> 
> " \
> "${url}/vms"
>
> You need to modify that script with your URL, user name, password,
> cluster and snapshot id.
>
> > 3. Display cpu,network etc usages
> >
>
> The statistics are available in the "statistics" sub-resource. For
> example, if you want to get the statistics of a host you can do the
> following:
>
> #!/bin/sh -ex
>
> url="https://ovirt.example.com/ovirt-engine/api";
> user="admin@internal"
> password="**"
>
> curl \
> --verbose \
> --insecure \
> --request GET \
> --header "Accept: application/xml" \
> --user "${user}:${password}" \
> "${url}/hosts/40cc4c33-2560-4516-b028-1d59638139c3/statistics"
>
> There you will find different statistics, like "memory.total",
> "memory.used", etc. Take a look. Once you know what statistic you want
> you can get its details like this:
>
> curl \
> --verbose \
> --insecure \
> --request GET \
> --header "Accept: application/xml" \
> --user "${user}:${password}" \
>
> "${url}/hosts/40cc4c33-2560-4516-b028-1d59638139c3/statistics/7816602b-c05c-3db7-a4da-3769f7ad8896"
>
> This can be cumbersome to do with a shell script, so you may want to use
> the Python or Java SDKs, or just use directly the ovirt-shell:
>
> $ ovirt-shell --insecure
> URL: https://ovirt.example.com/ovirt-engine/api
> Username: admin@internal
> Password: **
> [oVirt shell (connected)]# show statistic memory.total --host-identifier
> myhost
> id: 7816602b-c05c-3db7-a4da-3769f7ad8896
> name  : memory.total
> description   : Total memory
> host-id   : 40cc4c33-2560-4516-b028-1d59638139c3
> type  : GAUGE
> unit  : BYTES
> values-type   : INTEGER
> values-value-datum: 2099249152
>
> > I couldn't find out any direct api method to do the above, Is it
> > possible to do these operations using api ? If anyone knows it please
> > help me to sort out it.
> >
> >
> >
> > --
> > Regards
> > Shanil
>
> --
> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
> 3ºD, 28016 Madrid, Spain
> Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Master Storage goes Inactive - Failed to activate Storage Domain

2014-08-21 Thread Chris @ VeeroTech.net
I have verified that the storage service (gluster) is functioning correctly by 
mounting it on another server and writing/reading.  The setup is basic, two 
identical servers set up as hosts, four drives on each server.  First drive is 
currently for the OS, second and third drive are set up to use Gluster 
distributed replicate.  Fourth is not used.  Please let me know what other 
information you require, and thank you for the help.

Chris


-Original Message-
From: Nir Soffer [mailto:nsof...@redhat.com] 
Sent: Thursday, August 21, 2014 6:54 PM
To: Chris @ VeeroTech.net
Cc: users@ovirt.org
Subject: Re: [ovirt-users] Master Storage goes Inactive - Failed to activate 
Storage Domain

- Original Message -
> From: "Chris @ VeeroTech.net" 
> To: users@ovirt.org
> Sent: Monday, August 18, 2014 2:40:22 AM
> Subject: [ovirt-users] Master Storage goes Inactive - Failed to activate  
> Storage Domain
> 
> 
> 
> Hello All,
> 
> 
> 
> I am having an issue on my test setup, the master storage goes inactive. It
> is set up as to use Gluster and the volume is up and running without issues.
> Here is a snippet of /var/log/ovirt-engine/engine.log (these are just the
> ERRORs):
> 
...
> 
> Here is the vdsm.log on one of the hosts:
> 
> 
> 
> [root@u5 ~]# tail -f /var/log/vdsm/vdsm.log
> 
...

> Thread-36::WARNING::2014-08-17
> 19:39:18,075::storage_mailbox::281::Storage.MailBox.HsmMailMonitor::(_initMailbox)
> HSM_MailboxMonitor - Could not initialize mailbox, will not accept requests
> until init succeeds

Your host cannot write to the storage.

We need more information about your setup.

Can you check that the storage service is accessible?

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


Re: [ovirt-users] Master Storage goes Inactive - Failed to activate Storage Domain

2014-08-21 Thread Nir Soffer
- Original Message -
> From: "Chris @ VeeroTech.net" 
> To: users@ovirt.org
> Sent: Monday, August 18, 2014 2:40:22 AM
> Subject: [ovirt-users] Master Storage goes Inactive - Failed to activate  
> Storage Domain
> 
> 
> 
> Hello All,
> 
> 
> 
> I am having an issue on my test setup, the master storage goes inactive. It
> is set up as to use Gluster and the volume is up and running without issues.
> Here is a snippet of /var/log/ovirt-engine/engine.log (these are just the
> ERRORs):
> 
...
> 
> Here is the vdsm.log on one of the hosts:
> 
> 
> 
> [root@u5 ~]# tail -f /var/log/vdsm/vdsm.log
> 
...

> Thread-36::WARNING::2014-08-17
> 19:39:18,075::storage_mailbox::281::Storage.MailBox.HsmMailMonitor::(_initMailbox)
> HSM_MailboxMonitor - Could not initialize mailbox, will not accept requests
> until init succeeds

Your host cannot write to the storage.

We need more information about your setup.

Can you check that the storage service is accessible?
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Missing tab in ovirt gui

2014-08-21 Thread Leif Larsson
Hi,

Im missing the "Images" tab that should be displayed after clicking on
"ovirt-image-repository", under "External providers".

Its a default ovirt 3.4 install.

The port 9292 was initially firewalled but is now open. The ovirt-engine
server has been restarted.

Everything else is working as expected.

Any ideas ?

Thanks!

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


Re: [ovirt-users] Proper way to change and persist vdsm configuration options

2014-08-21 Thread Alon Bar-Lev


- Original Message -
> From: "Trey Dockendorf" 
> To: "Alon Bar-Lev" 
> Cc: "ybronhei" , "users" , "Fabian 
> Deutsch" , "Dan
> Kenigsberg" , "Itamar Heim" , "Douglas 
> Landgraf" , "Oved
> Ourfali" 
> Sent: Thursday, August 21, 2014 10:55:28 PM
> Subject: Re: [ovirt-users] Proper way to change and persist vdsm 
> configuration options
> 
> Is there a method that works in EL6?
> 
> $ openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout
> -pubkey | ssh-keygen -i -m PKCS8 -f /dev/stdin
> ssh-keygen: illegal option -- m
> 
> $ openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout
> -pubkey | ssh-keygen -i -f /dev/stdin
> buffer_get_string_ret: bad string length 813826338
> key_from_blob: can't read key type
> decode blob failed.
> 
> I achieved somewhat similar result by doing the following, though
> likely is a security issue having something like Facter read from
> /etc/pki/ovirt-engine/keys
> 
> $  ssh-keygen -y -f /etc/pki/ovirt-engine/keys/engine_id_rsa
> ssh-rsa 

this is one option that use private key and unsupported artifact...

better:

openssl pkcs12 -in /etc/pki/ovirt-engine/keys/engine.p12 -nocerts -passin 
pass:mypass -nodes 2> /dev/null | ssh-keygen -y -f /dev/stdin

I hope el6 will have newer openssh with support for the PKCS8 format.

> 
> Thanks,
> - Trey
> 
> On Thu, Aug 21, 2014 at 1:44 PM, Alon Bar-Lev  wrote:
> >
> >
> > - Original Message -
> >> From: "Trey Dockendorf" 
> >> To: "Alon Bar-Lev" 
> >> Cc: "ybronhei" , "users" , "Fabian
> >> Deutsch" , "Dan
> >> Kenigsberg" , "Itamar Heim" ,
> >> "Douglas Landgraf" , "Oved
> >> Ourfali" 
> >> Sent: Thursday, August 21, 2014 9:41:03 PM
> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> configuration options
> >>
> >> Sorry, I meant the SSH public key.  Is that a file or in the database?
> >>  I did a "grep" for the public key downloaded via the
> >> command=get-ssh-trust and found no files in /etc/ or
> >> /var/lib/ovirt-engine that matched.
> >
> > openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout -pubkey |
> > ssh-keygen -i -m PKCS8 -f /dev/stdin
> >
> >>
> >> - Trey
> >>
> >> On Thu, Aug 21, 2014 at 11:33 AM, Alon Bar-Lev  wrote:
> >> >
> >> >
> >> > - Original Message -
> >> >> From: "Trey Dockendorf" 
> >> >> To: "Alon Bar-Lev" 
> >> >> Cc: "ybronhei" , "users" ,
> >> >> "Fabian
> >> >> Deutsch" , "Dan
> >> >> Kenigsberg" , "Itamar Heim" ,
> >> >> "Douglas Landgraf" , "Oved
> >> >> Ourfali" 
> >> >> Sent: Thursday, August 21, 2014 7:15:56 PM
> >> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> >> configuration options
> >> >>
> >> >> I likely won't automate this yet, as a lot of what's coming in 3.5
> >> >> seems to obsolete many things I was doing previously via Puppet.  In
> >> >> particular the Foreman integration and the ability to add custom
> >> >> iptables rules to engine-config.  Previous posts on the list made is
> >> >> seem like modifying "IPTables" could potentially make upgrades less
> >> >> reliable.
> >> >>
> >> >> Created a gist of a working series of commands based on Alon's example
> >> >> using the Host Deploy Protocol [1].
> >> >>
> >> >> https://gist.github.com/treydock/570a776b5c160bca7c9c
> >> >>
> >> >> Curious , where is the public key used by the ovirt-engine stored?
> >> >> The one that is available using command=get-ssh-trust.  Is there a way
> >> >> to query it from the engine?  I'm thinking if it would be possible to
> >> >> create a custom Facter face that stores the value of that public key
> >> >> so easier to re-use and access for deployment.
> >> >
> >> > /etc/pki/ovirt-engine/certs/engine.cer
> >> >
> >> >>
> >> >> Thanks,
> >> >> - Trey
> >> >>
> >> >> [1] - http://www.ovirt.org/Features/HostDeployProtocol
> >> >>
> >> >> On Tue, Aug 5, 2014 at 11:32 PM, Alon Bar-Lev 
> >> >> wrote:
> >> >> >
> >> >> >
> >> >> > - Original Message -
> >> >> >> From: "Trey Dockendorf" 
> >> >> >> To: "Alon Bar-Lev" 
> >> >> >> Cc: "ybronhei" , "users" ,
> >> >> >> "Fabian
> >> >> >> Deutsch" , "Dan
> >> >> >> Kenigsberg" , "Itamar Heim" ,
> >> >> >> "Douglas Landgraf" , "Oved
> >> >> >> Ourfali" 
> >> >> >> Sent: Tuesday, August 5, 2014 11:27:45 PM
> >> >> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> >> >> configuration options
> >> >> >>
> >> >> >> Thanks for clarifying, makes sense now.
> >> >> >>
> >> >> >> The public key trust needed for registration, is that the same key
> >> >> >> that would be used when adding host via UI?
> >> >> >
> >> >> > yes.
> >> >> >
> >> >> > you can download it via:
> >> >> > $ curl
> >> >> > 'http://engine/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY'
> >> >> > $ curl
> >> >> > 'http://engine/ovirt-engine/services/host-register?version=1&command=get-ssh-trust'
> >> >> >
> >> >> > probably better to use https and verify CA certificate fingerprint if
> >> >> > you
> >> >> > do that from host.
> >> >> >
> >

Re: [ovirt-users] Proper way to change and persist vdsm configuration options

2014-08-21 Thread Trey Dockendorf
Is there a method that works in EL6?

$ openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout
-pubkey | ssh-keygen -i -m PKCS8 -f /dev/stdin
ssh-keygen: illegal option -- m

$ openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout
-pubkey | ssh-keygen -i -f /dev/stdin
buffer_get_string_ret: bad string length 813826338
key_from_blob: can't read key type
decode blob failed.

I achieved somewhat similar result by doing the following, though
likely is a security issue having something like Facter read from
/etc/pki/ovirt-engine/keys

$  ssh-keygen -y -f /etc/pki/ovirt-engine/keys/engine_id_rsa
ssh-rsa 

Thanks,
- Trey

On Thu, Aug 21, 2014 at 1:44 PM, Alon Bar-Lev  wrote:
>
>
> - Original Message -
>> From: "Trey Dockendorf" 
>> To: "Alon Bar-Lev" 
>> Cc: "ybronhei" , "users" , "Fabian 
>> Deutsch" , "Dan
>> Kenigsberg" , "Itamar Heim" , "Douglas 
>> Landgraf" , "Oved
>> Ourfali" 
>> Sent: Thursday, August 21, 2014 9:41:03 PM
>> Subject: Re: [ovirt-users] Proper way to change and persist vdsm 
>> configuration options
>>
>> Sorry, I meant the SSH public key.  Is that a file or in the database?
>>  I did a "grep" for the public key downloaded via the
>> command=get-ssh-trust and found no files in /etc/ or
>> /var/lib/ovirt-engine that matched.
>
> openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout -pubkey | 
> ssh-keygen -i -m PKCS8 -f /dev/stdin
>
>>
>> - Trey
>>
>> On Thu, Aug 21, 2014 at 11:33 AM, Alon Bar-Lev  wrote:
>> >
>> >
>> > - Original Message -
>> >> From: "Trey Dockendorf" 
>> >> To: "Alon Bar-Lev" 
>> >> Cc: "ybronhei" , "users" , "Fabian
>> >> Deutsch" , "Dan
>> >> Kenigsberg" , "Itamar Heim" ,
>> >> "Douglas Landgraf" , "Oved
>> >> Ourfali" 
>> >> Sent: Thursday, August 21, 2014 7:15:56 PM
>> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
>> >> configuration options
>> >>
>> >> I likely won't automate this yet, as a lot of what's coming in 3.5
>> >> seems to obsolete many things I was doing previously via Puppet.  In
>> >> particular the Foreman integration and the ability to add custom
>> >> iptables rules to engine-config.  Previous posts on the list made is
>> >> seem like modifying "IPTables" could potentially make upgrades less
>> >> reliable.
>> >>
>> >> Created a gist of a working series of commands based on Alon's example
>> >> using the Host Deploy Protocol [1].
>> >>
>> >> https://gist.github.com/treydock/570a776b5c160bca7c9c
>> >>
>> >> Curious , where is the public key used by the ovirt-engine stored?
>> >> The one that is available using command=get-ssh-trust.  Is there a way
>> >> to query it from the engine?  I'm thinking if it would be possible to
>> >> create a custom Facter face that stores the value of that public key
>> >> so easier to re-use and access for deployment.
>> >
>> > /etc/pki/ovirt-engine/certs/engine.cer
>> >
>> >>
>> >> Thanks,
>> >> - Trey
>> >>
>> >> [1] - http://www.ovirt.org/Features/HostDeployProtocol
>> >>
>> >> On Tue, Aug 5, 2014 at 11:32 PM, Alon Bar-Lev  wrote:
>> >> >
>> >> >
>> >> > - Original Message -
>> >> >> From: "Trey Dockendorf" 
>> >> >> To: "Alon Bar-Lev" 
>> >> >> Cc: "ybronhei" , "users" ,
>> >> >> "Fabian
>> >> >> Deutsch" , "Dan
>> >> >> Kenigsberg" , "Itamar Heim" ,
>> >> >> "Douglas Landgraf" , "Oved
>> >> >> Ourfali" 
>> >> >> Sent: Tuesday, August 5, 2014 11:27:45 PM
>> >> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
>> >> >> configuration options
>> >> >>
>> >> >> Thanks for clarifying, makes sense now.
>> >> >>
>> >> >> The public key trust needed for registration, is that the same key
>> >> >> that would be used when adding host via UI?
>> >> >
>> >> > yes.
>> >> >
>> >> > you can download it via:
>> >> > $ curl
>> >> > 'http://engine/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY'
>> >> > $ curl
>> >> > 'http://engine/ovirt-engine/services/host-register?version=1&command=get-ssh-trust'
>> >> >
>> >> > probably better to use https and verify CA certificate fingerprint if
>> >> > you
>> >> > do that from host.
>> >> >
>> >> >> Any examples of how to use the HostDeployProtocol [1]?  I like the
>> >> >> idea of using registration but haven't the slightest idea how to
>> >> >> implement what's described in the docs [1].  I do recall seeing an
>> >> >> article posted (searching email and can't find) that had a nice
>> >> >> walk-through of how to use the oVirt API using browser tools.  I'm
>> >> >> unsure if this HostDeployProtocol would be done that way or via some
>> >> >> other method.
>> >> >
>> >> > there are two apis, the formal rest-api that is exposed by the engine
>> >> > and
>> >> > can be accessed using any rest api tool or ovirt-engine-cli,
>> >> > ovirt-engine-sdk-java, ovirt-engine-sdk-python wrappers. I sent you a
>> >> > minimal example in previous message.
>> >> >
>> >> > and the host-deploy protocol[1], which should have been exposed in the
>> >> > rest-api, but for some reason I canno

Re: [ovirt-users] Proper way to change and persist vdsm configuration options

2014-08-21 Thread Alon Bar-Lev


- Original Message -
> From: "Trey Dockendorf" 
> To: "Alon Bar-Lev" 
> Cc: "ybronhei" , "users" , "Fabian 
> Deutsch" , "Dan
> Kenigsberg" , "Itamar Heim" , "Douglas 
> Landgraf" , "Oved
> Ourfali" 
> Sent: Thursday, August 21, 2014 9:41:03 PM
> Subject: Re: [ovirt-users] Proper way to change and persist vdsm 
> configuration options
> 
> Sorry, I meant the SSH public key.  Is that a file or in the database?
>  I did a "grep" for the public key downloaded via the
> command=get-ssh-trust and found no files in /etc/ or
> /var/lib/ovirt-engine that matched.

openssl x509 -in /etc/pki/ovirt-engine/certs/engine.cer -noout -pubkey | 
ssh-keygen -i -m PKCS8 -f /dev/stdin

> 
> - Trey
> 
> On Thu, Aug 21, 2014 at 11:33 AM, Alon Bar-Lev  wrote:
> >
> >
> > - Original Message -
> >> From: "Trey Dockendorf" 
> >> To: "Alon Bar-Lev" 
> >> Cc: "ybronhei" , "users" , "Fabian
> >> Deutsch" , "Dan
> >> Kenigsberg" , "Itamar Heim" ,
> >> "Douglas Landgraf" , "Oved
> >> Ourfali" 
> >> Sent: Thursday, August 21, 2014 7:15:56 PM
> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> configuration options
> >>
> >> I likely won't automate this yet, as a lot of what's coming in 3.5
> >> seems to obsolete many things I was doing previously via Puppet.  In
> >> particular the Foreman integration and the ability to add custom
> >> iptables rules to engine-config.  Previous posts on the list made is
> >> seem like modifying "IPTables" could potentially make upgrades less
> >> reliable.
> >>
> >> Created a gist of a working series of commands based on Alon's example
> >> using the Host Deploy Protocol [1].
> >>
> >> https://gist.github.com/treydock/570a776b5c160bca7c9c
> >>
> >> Curious , where is the public key used by the ovirt-engine stored?
> >> The one that is available using command=get-ssh-trust.  Is there a way
> >> to query it from the engine?  I'm thinking if it would be possible to
> >> create a custom Facter face that stores the value of that public key
> >> so easier to re-use and access for deployment.
> >
> > /etc/pki/ovirt-engine/certs/engine.cer
> >
> >>
> >> Thanks,
> >> - Trey
> >>
> >> [1] - http://www.ovirt.org/Features/HostDeployProtocol
> >>
> >> On Tue, Aug 5, 2014 at 11:32 PM, Alon Bar-Lev  wrote:
> >> >
> >> >
> >> > - Original Message -
> >> >> From: "Trey Dockendorf" 
> >> >> To: "Alon Bar-Lev" 
> >> >> Cc: "ybronhei" , "users" ,
> >> >> "Fabian
> >> >> Deutsch" , "Dan
> >> >> Kenigsberg" , "Itamar Heim" ,
> >> >> "Douglas Landgraf" , "Oved
> >> >> Ourfali" 
> >> >> Sent: Tuesday, August 5, 2014 11:27:45 PM
> >> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> >> configuration options
> >> >>
> >> >> Thanks for clarifying, makes sense now.
> >> >>
> >> >> The public key trust needed for registration, is that the same key
> >> >> that would be used when adding host via UI?
> >> >
> >> > yes.
> >> >
> >> > you can download it via:
> >> > $ curl
> >> > 'http://engine/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY'
> >> > $ curl
> >> > 'http://engine/ovirt-engine/services/host-register?version=1&command=get-ssh-trust'
> >> >
> >> > probably better to use https and verify CA certificate fingerprint if
> >> > you
> >> > do that from host.
> >> >
> >> >> Any examples of how to use the HostDeployProtocol [1]?  I like the
> >> >> idea of using registration but haven't the slightest idea how to
> >> >> implement what's described in the docs [1].  I do recall seeing an
> >> >> article posted (searching email and can't find) that had a nice
> >> >> walk-through of how to use the oVirt API using browser tools.  I'm
> >> >> unsure if this HostDeployProtocol would be done that way or via some
> >> >> other method.
> >> >
> >> > there are two apis, the formal rest-api that is exposed by the engine
> >> > and
> >> > can be accessed using any rest api tool or ovirt-engine-cli,
> >> > ovirt-engine-sdk-java, ovirt-engine-sdk-python wrappers. I sent you a
> >> > minimal example in previous message.
> >> >
> >> > and the host-deploy protocol[1], which should have been exposed in the
> >> > rest-api, but for some reason I cannot understand it was not included in
> >> > the public interface of the engine.
> >> >
> >> > the advantage of using the rest-api is that you can achieve full cycle
> >> > using the protocol, the add host cycle is what you seek.
> >> >
> >> > the host-deploy protocol just register the host, but the sysadmin needs
> >> > to
> >> > approve the host via the ui (or via the rest api) before it is usable.
> >> >
> >> >>
> >> >> Thanks,
> >> >> - Trey
> >> >>
> >> >>
> >> >> [1] http://www.ovirt.org/Features/HostDeployProtocol
> >> >>
> >> >> On Tue, Aug 5, 2014 at 3:01 PM, Alon Bar-Lev  wrote:
> >> >> >
> >> >> >
> >> >> > - Original Message -
> >> >> >> From: "Trey Dockendorf" 
> >> >> >> To: "Alon Bar-Lev" 
> >> >> >> Cc: "ybronhei" , "users" ,
> >> >> >> "Fabian
> >> >> >> Deutsch" , "Dan
> >> 

Re: [ovirt-users] Neutron Virtual Appliance in oVirt-engine feature

2014-08-21 Thread Kappert, Jan
Hello,
I have try'd today multiple installations in my test env. Ovirt 3.5.0i have one 
management server and 2 hosts all running centos 6.5i can install the template 
and create the networks but when i a host with external network it has to 
install some stuff from the icehouse-3 repo i think i have a problem there that 
not all the necessary packages are installed.When i try ovs-vsctl add-port 
br-neutron neutron it say it can not found the command.
and i have a problem using the cloud init, i need to fill in the ip for eth1
BTW good movie!



Met vriendelijke groet,
GeoTax

 

Jan Kappert

ICT Services

 

--
Kuipershof 4

Postbus 217
4190 CE Geldermalsen 
T. 0345-570133 
I. www.geotax.nl

--

Disclaimer: zie www.geotax.nl





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


Re: [ovirt-users] Proper way to change and persist vdsm configuration options

2014-08-21 Thread Trey Dockendorf
Sorry, I meant the SSH public key.  Is that a file or in the database?
 I did a "grep" for the public key downloaded via the
command=get-ssh-trust and found no files in /etc/ or
/var/lib/ovirt-engine that matched.

- Trey

On Thu, Aug 21, 2014 at 11:33 AM, Alon Bar-Lev  wrote:
>
>
> - Original Message -
>> From: "Trey Dockendorf" 
>> To: "Alon Bar-Lev" 
>> Cc: "ybronhei" , "users" , "Fabian 
>> Deutsch" , "Dan
>> Kenigsberg" , "Itamar Heim" , "Douglas 
>> Landgraf" , "Oved
>> Ourfali" 
>> Sent: Thursday, August 21, 2014 7:15:56 PM
>> Subject: Re: [ovirt-users] Proper way to change and persist vdsm 
>> configuration options
>>
>> I likely won't automate this yet, as a lot of what's coming in 3.5
>> seems to obsolete many things I was doing previously via Puppet.  In
>> particular the Foreman integration and the ability to add custom
>> iptables rules to engine-config.  Previous posts on the list made is
>> seem like modifying "IPTables" could potentially make upgrades less
>> reliable.
>>
>> Created a gist of a working series of commands based on Alon's example
>> using the Host Deploy Protocol [1].
>>
>> https://gist.github.com/treydock/570a776b5c160bca7c9c
>>
>> Curious , where is the public key used by the ovirt-engine stored?
>> The one that is available using command=get-ssh-trust.  Is there a way
>> to query it from the engine?  I'm thinking if it would be possible to
>> create a custom Facter face that stores the value of that public key
>> so easier to re-use and access for deployment.
>
> /etc/pki/ovirt-engine/certs/engine.cer
>
>>
>> Thanks,
>> - Trey
>>
>> [1] - http://www.ovirt.org/Features/HostDeployProtocol
>>
>> On Tue, Aug 5, 2014 at 11:32 PM, Alon Bar-Lev  wrote:
>> >
>> >
>> > - Original Message -
>> >> From: "Trey Dockendorf" 
>> >> To: "Alon Bar-Lev" 
>> >> Cc: "ybronhei" , "users" , "Fabian
>> >> Deutsch" , "Dan
>> >> Kenigsberg" , "Itamar Heim" ,
>> >> "Douglas Landgraf" , "Oved
>> >> Ourfali" 
>> >> Sent: Tuesday, August 5, 2014 11:27:45 PM
>> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
>> >> configuration options
>> >>
>> >> Thanks for clarifying, makes sense now.
>> >>
>> >> The public key trust needed for registration, is that the same key
>> >> that would be used when adding host via UI?
>> >
>> > yes.
>> >
>> > you can download it via:
>> > $ curl
>> > 'http://engine/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY'
>> > $ curl
>> > 'http://engine/ovirt-engine/services/host-register?version=1&command=get-ssh-trust'
>> >
>> > probably better to use https and verify CA certificate fingerprint if you
>> > do that from host.
>> >
>> >> Any examples of how to use the HostDeployProtocol [1]?  I like the
>> >> idea of using registration but haven't the slightest idea how to
>> >> implement what's described in the docs [1].  I do recall seeing an
>> >> article posted (searching email and can't find) that had a nice
>> >> walk-through of how to use the oVirt API using browser tools.  I'm
>> >> unsure if this HostDeployProtocol would be done that way or via some
>> >> other method.
>> >
>> > there are two apis, the formal rest-api that is exposed by the engine and
>> > can be accessed using any rest api tool or ovirt-engine-cli,
>> > ovirt-engine-sdk-java, ovirt-engine-sdk-python wrappers. I sent you a
>> > minimal example in previous message.
>> >
>> > and the host-deploy protocol[1], which should have been exposed in the
>> > rest-api, but for some reason I cannot understand it was not included in
>> > the public interface of the engine.
>> >
>> > the advantage of using the rest-api is that you can achieve full cycle
>> > using the protocol, the add host cycle is what you seek.
>> >
>> > the host-deploy protocol just register the host, but the sysadmin needs to
>> > approve the host via the ui (or via the rest api) before it is usable.
>> >
>> >>
>> >> Thanks,
>> >> - Trey
>> >>
>> >>
>> >> [1] http://www.ovirt.org/Features/HostDeployProtocol
>> >>
>> >> On Tue, Aug 5, 2014 at 3:01 PM, Alon Bar-Lev  wrote:
>> >> >
>> >> >
>> >> > - Original Message -
>> >> >> From: "Trey Dockendorf" 
>> >> >> To: "Alon Bar-Lev" 
>> >> >> Cc: "ybronhei" , "users" ,
>> >> >> "Fabian
>> >> >> Deutsch" , "Dan
>> >> >> Kenigsberg" , "Itamar Heim" ,
>> >> >> "Douglas Landgraf" , "Oved
>> >> >> Ourfali" 
>> >> >> Sent: Tuesday, August 5, 2014 10:45:12 PM
>> >> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
>> >> >> configuration options
>> >> >>
>> >> >> Excellent, so installing 'ovirt-host-deploy' on each node then
>> >> >> configuring the /etc/ovirt-host-deploy.conf.d files seems very
>> >> >> automate-able, will see how it works in practice.
>> >> >
>> >> > you do not need to install the ovirt-host-deploy, just create the files.
>> >> >
>> >> >> Regarding the actual host registration and getting the host added to
>> >> >> ovirt-engine, are there other methods besides the API and the sdk?
>> >> >> Would it

Re: [ovirt-users] AIO setup problem with master failes due to nfs

2014-08-21 Thread Sandro Bonazzola
Il 20/08/2014 09:17, Gianluca Cecchi ha scritto:
> 
> On Wed, Aug 20, 2014 at 9:06 AM, Gianluca Cecchi  > wrote:
> 
> 
> result = vdscli.connect().getVdsCapabilities()
>   File "/usr/lib64/python2.6/xmlrpclib.py", line 1199, in __call__
> return self.__send(self.__name, args)
>   File "/usr/lib64/python2.6/xmlrpclib.py", line 1489, in __request
> verbose=self.__verbose
>   File "/usr/lib64/python2.6/xmlrpclib.py", line 1235, in request
> self.send_content(h, request_body)
>   File "/usr/lib64/python2.6/xmlrpclib.py", line 1349, in send_content
> connection.endheaders()
>   File "/usr/lib64/python2.6/httplib.py", line 908, in endheaders
> self._send_output()
>   File "/usr/lib64/python2.6/httplib.py", line 780, in _send_output
> self.send(msg)
>   File "/usr/lib64/python2.6/httplib.py", line 739, in send
> self.connect()
>   File "/usr/lib64/python2.6/site-packages/vdsm/sslutils.py", line 181, 
> in connect
> sock = socket.create_connection((self.host, self.port), self.timeout)
>   File "/usr/lib64/python2.6/socket.py", line 567, in create_connection
> raise error, msg
> error: [Errno 111] Connection refused
> 2014-08-20 08:49:48 ERROR otopi.context context._executeMethod:161 Failed 
> to execute stage 'Closing up': [Errno 111] Connection refused
> 
> 
> 
> Sorry, rereading better, it seems not an nfs problem but with getting host 
> capabilities...
> Probably it should be better to put an echo in setup to confirm nfs part has 
> finished and that we are in another part of setup...
> 
> The server is a kvm guest on Fedora 20 system
> Indeed when running manually I get
>  [root@ovirtita host-deploy]# vdsClient -s 0 getVdsCaps
> Connection to 0.0.0.0:54321  refused
> 
> what to check? 


Maybe the vdsmd daemon is not running.
check if it's up with "service vdsmd status". Looks like the vdsmd daemon is 
not responding


> 
> [root@ovirtita host-deploy]# lsmod|grep kvm
> kvm_intel  54317  0 
> kvm   333734  1 kvm_intel
> 
> Thanks,
> Gianluca
> 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 


-- 
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Proper way to change and persist vdsm configuration options

2014-08-21 Thread Alon Bar-Lev


- Original Message -
> From: "Trey Dockendorf" 
> To: "Alon Bar-Lev" 
> Cc: "ybronhei" , "users" , "Fabian 
> Deutsch" , "Dan
> Kenigsberg" , "Itamar Heim" , "Douglas 
> Landgraf" , "Oved
> Ourfali" 
> Sent: Thursday, August 21, 2014 7:15:56 PM
> Subject: Re: [ovirt-users] Proper way to change and persist vdsm 
> configuration options
> 
> I likely won't automate this yet, as a lot of what's coming in 3.5
> seems to obsolete many things I was doing previously via Puppet.  In
> particular the Foreman integration and the ability to add custom
> iptables rules to engine-config.  Previous posts on the list made is
> seem like modifying "IPTables" could potentially make upgrades less
> reliable.
> 
> Created a gist of a working series of commands based on Alon's example
> using the Host Deploy Protocol [1].
> 
> https://gist.github.com/treydock/570a776b5c160bca7c9c
> 
> Curious , where is the public key used by the ovirt-engine stored?
> The one that is available using command=get-ssh-trust.  Is there a way
> to query it from the engine?  I'm thinking if it would be possible to
> create a custom Facter face that stores the value of that public key
> so easier to re-use and access for deployment.

/etc/pki/ovirt-engine/certs/engine.cer

> 
> Thanks,
> - Trey
> 
> [1] - http://www.ovirt.org/Features/HostDeployProtocol
> 
> On Tue, Aug 5, 2014 at 11:32 PM, Alon Bar-Lev  wrote:
> >
> >
> > - Original Message -
> >> From: "Trey Dockendorf" 
> >> To: "Alon Bar-Lev" 
> >> Cc: "ybronhei" , "users" , "Fabian
> >> Deutsch" , "Dan
> >> Kenigsberg" , "Itamar Heim" ,
> >> "Douglas Landgraf" , "Oved
> >> Ourfali" 
> >> Sent: Tuesday, August 5, 2014 11:27:45 PM
> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> configuration options
> >>
> >> Thanks for clarifying, makes sense now.
> >>
> >> The public key trust needed for registration, is that the same key
> >> that would be used when adding host via UI?
> >
> > yes.
> >
> > you can download it via:
> > $ curl
> > 'http://engine/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY'
> > $ curl
> > 'http://engine/ovirt-engine/services/host-register?version=1&command=get-ssh-trust'
> >
> > probably better to use https and verify CA certificate fingerprint if you
> > do that from host.
> >
> >> Any examples of how to use the HostDeployProtocol [1]?  I like the
> >> idea of using registration but haven't the slightest idea how to
> >> implement what's described in the docs [1].  I do recall seeing an
> >> article posted (searching email and can't find) that had a nice
> >> walk-through of how to use the oVirt API using browser tools.  I'm
> >> unsure if this HostDeployProtocol would be done that way or via some
> >> other method.
> >
> > there are two apis, the formal rest-api that is exposed by the engine and
> > can be accessed using any rest api tool or ovirt-engine-cli,
> > ovirt-engine-sdk-java, ovirt-engine-sdk-python wrappers. I sent you a
> > minimal example in previous message.
> >
> > and the host-deploy protocol[1], which should have been exposed in the
> > rest-api, but for some reason I cannot understand it was not included in
> > the public interface of the engine.
> >
> > the advantage of using the rest-api is that you can achieve full cycle
> > using the protocol, the add host cycle is what you seek.
> >
> > the host-deploy protocol just register the host, but the sysadmin needs to
> > approve the host via the ui (or via the rest api) before it is usable.
> >
> >>
> >> Thanks,
> >> - Trey
> >>
> >>
> >> [1] http://www.ovirt.org/Features/HostDeployProtocol
> >>
> >> On Tue, Aug 5, 2014 at 3:01 PM, Alon Bar-Lev  wrote:
> >> >
> >> >
> >> > - Original Message -
> >> >> From: "Trey Dockendorf" 
> >> >> To: "Alon Bar-Lev" 
> >> >> Cc: "ybronhei" , "users" ,
> >> >> "Fabian
> >> >> Deutsch" , "Dan
> >> >> Kenigsberg" , "Itamar Heim" ,
> >> >> "Douglas Landgraf" , "Oved
> >> >> Ourfali" 
> >> >> Sent: Tuesday, August 5, 2014 10:45:12 PM
> >> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
> >> >> configuration options
> >> >>
> >> >> Excellent, so installing 'ovirt-host-deploy' on each node then
> >> >> configuring the /etc/ovirt-host-deploy.conf.d files seems very
> >> >> automate-able, will see how it works in practice.
> >> >
> >> > you do not need to install the ovirt-host-deploy, just create the files.
> >> >
> >> >> Regarding the actual host registration and getting the host added to
> >> >> ovirt-engine, are there other methods besides the API and the sdk?
> >> >> Would it be possible to configure the necessary
> >> >> ovirt-host-deploy.conf.d files then execute "ovirt-host-deploy"?  I
> >> >> notice that running 'ovirt-host-deploy' wants to make whatever host
> >> >> executes it a ovir hypervisor but haven't yet run it all the way
> >> >> through as no server to test with at this time.  There seems to be no
> >> >> "--help" or similar command line argument.
> >> 

Re: [ovirt-users] Proper way to change and persist vdsm configuration options

2014-08-21 Thread Trey Dockendorf
I likely won't automate this yet, as a lot of what's coming in 3.5
seems to obsolete many things I was doing previously via Puppet.  In
particular the Foreman integration and the ability to add custom
iptables rules to engine-config.  Previous posts on the list made is
seem like modifying "IPTables" could potentially make upgrades less
reliable.

Created a gist of a working series of commands based on Alon's example
using the Host Deploy Protocol [1].

https://gist.github.com/treydock/570a776b5c160bca7c9c

Curious , where is the public key used by the ovirt-engine stored?
The one that is available using command=get-ssh-trust.  Is there a way
to query it from the engine?  I'm thinking if it would be possible to
create a custom Facter face that stores the value of that public key
so easier to re-use and access for deployment.

Thanks,
- Trey

[1] - http://www.ovirt.org/Features/HostDeployProtocol

On Tue, Aug 5, 2014 at 11:32 PM, Alon Bar-Lev  wrote:
>
>
> - Original Message -
>> From: "Trey Dockendorf" 
>> To: "Alon Bar-Lev" 
>> Cc: "ybronhei" , "users" , "Fabian 
>> Deutsch" , "Dan
>> Kenigsberg" , "Itamar Heim" , "Douglas 
>> Landgraf" , "Oved
>> Ourfali" 
>> Sent: Tuesday, August 5, 2014 11:27:45 PM
>> Subject: Re: [ovirt-users] Proper way to change and persist vdsm 
>> configuration options
>>
>> Thanks for clarifying, makes sense now.
>>
>> The public key trust needed for registration, is that the same key
>> that would be used when adding host via UI?
>
> yes.
>
> you can download it via:
> $ curl 
> 'http://engine/ovirt-engine/services/pki-resource?resource=engine-certificate&format=OPENSSH-PUBKEY'
> $ curl 
> 'http://engine/ovirt-engine/services/host-register?version=1&command=get-ssh-trust'
>
> probably better to use https and verify CA certificate fingerprint if you do 
> that from host.
>
>> Any examples of how to use the HostDeployProtocol [1]?  I like the
>> idea of using registration but haven't the slightest idea how to
>> implement what's described in the docs [1].  I do recall seeing an
>> article posted (searching email and can't find) that had a nice
>> walk-through of how to use the oVirt API using browser tools.  I'm
>> unsure if this HostDeployProtocol would be done that way or via some
>> other method.
>
> there are two apis, the formal rest-api that is exposed by the engine and can 
> be accessed using any rest api tool or ovirt-engine-cli, 
> ovirt-engine-sdk-java, ovirt-engine-sdk-python wrappers. I sent you a minimal 
> example in previous message.
>
> and the host-deploy protocol[1], which should have been exposed in the 
> rest-api, but for some reason I cannot understand it was not included in the 
> public interface of the engine.
>
> the advantage of using the rest-api is that you can achieve full cycle using 
> the protocol, the add host cycle is what you seek.
>
> the host-deploy protocol just register the host, but the sysadmin needs to 
> approve the host via the ui (or via the rest api) before it is usable.
>
>>
>> Thanks,
>> - Trey
>>
>>
>> [1] http://www.ovirt.org/Features/HostDeployProtocol
>>
>> On Tue, Aug 5, 2014 at 3:01 PM, Alon Bar-Lev  wrote:
>> >
>> >
>> > - Original Message -
>> >> From: "Trey Dockendorf" 
>> >> To: "Alon Bar-Lev" 
>> >> Cc: "ybronhei" , "users" , "Fabian
>> >> Deutsch" , "Dan
>> >> Kenigsberg" , "Itamar Heim" ,
>> >> "Douglas Landgraf" , "Oved
>> >> Ourfali" 
>> >> Sent: Tuesday, August 5, 2014 10:45:12 PM
>> >> Subject: Re: [ovirt-users] Proper way to change and persist vdsm
>> >> configuration options
>> >>
>> >> Excellent, so installing 'ovirt-host-deploy' on each node then
>> >> configuring the /etc/ovirt-host-deploy.conf.d files seems very
>> >> automate-able, will see how it works in practice.
>> >
>> > you do not need to install the ovirt-host-deploy, just create the files.
>> >
>> >> Regarding the actual host registration and getting the host added to
>> >> ovirt-engine, are there other methods besides the API and the sdk?
>> >> Would it be possible to configure the necessary
>> >> ovirt-host-deploy.conf.d files then execute "ovirt-host-deploy"?  I
>> >> notice that running 'ovirt-host-deploy' wants to make whatever host
>> >> executes it a ovir hypervisor but haven't yet run it all the way
>> >> through as no server to test with at this time.  There seems to be no
>> >> "--help" or similar command line argument.
>> >
>> > you should not run host-deploy directly, but via the engine's process,
>> > either registration or add host as I replied previously.
>> >
>> > when base system is ready, you issue add host via api of engine or via ui,
>> > the other alternative is to register the host host the host-deploy
>> > protocol, and approve the host via api of engine or via ui.
>> >
>> >> I'm sure this will all be more clear once I attempt the steps and run
>> >> through the motions.  Will try to find a system to test on so I'm
>> >> ready once our new servers arrive.
>> >>
>> >> Thanks,
>> >> - Trey
>> >>
>> >> On Tue, Aug 5

[ovirt-users] Neutron Virtual Appliance in oVirt-engine feature

2014-08-21 Thread Moti Asayag
Hi All,

I'd like to introduce the Neutron virtual appliance feature [1] in ovirt-engine 
3.5.
The appliance is provided by the oVirt-image-repository which is configured by 
default
in ovirt-engine installation.

By using the appliance, the admin can skip the pain in installing and 
configuring OpenStack,
and enhance the appliance which contains the relevant OpenStack services to 
enable ovirt-neutron
integration features such as IP address management.

I've uploaded a demo to youtube [2] which takes the user step-by-step through 
that process.
Also the feature page describes the network topology, detailed instructions on 
how to utilize the
appliance and more.

Please reply with any issue or comment.

[1] http://www.ovirt.org/Features/NeutronVirtualAppliance
[2] http://youtu.be/naLFSFwHI94

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


[ovirt-users] oVirt Manager Portal is hanging and very slow

2014-08-21 Thread Anish Mohan1
Hello ,

We have oVirt Engine version 3.4.0-1 el6  in our development Environment . 
We are facing below issues, Can anyone help us.
Now portal is working very slow and it is intermediately hanging 

If I click on any tab it will take 5 to 10 minutes to load the page , some 
times it will take more than 30 minutes and we need to bounce the server 
for getting the console.


Also we are getting continuous admin@internal login / log out message and 
ETL service Error .



Thanks & Regards
Anish Mohan
=-=-=
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you


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


Re: [ovirt-users] Ovirt api function

2014-08-21 Thread Juan Hernandez
On 08/20/2014 12:42 PM, Shanil S wrote:
> Hi,
> 
> 
> I would like to create the following functions using the ovirt api
> 
> 1. Rebuild VM

What do you exactly mean by "rebuild vm"?

> 2. Restore the screenthots of one vm to another vm

What you can do is create a new VM from an existing snapshot, something
like this:

#!/bin/sh -ex

url="https://ovirt.example.com/ovirt-engine/api";
user="admin@internal"
password="**"

curl \
--verbose \
--insecure \
--request POST \
--header "Accept: application/xml" \
--header "Content-Type: application/xml" \
--user "${user}:${password}" \
--data "

  myclone
  
  

  

" \
"${url}/vms"

You need to modify that script with your URL, user name, password,
cluster and snapshot id.

> 3. Display cpu,network etc usages
> 

The statistics are available in the "statistics" sub-resource. For
example, if you want to get the statistics of a host you can do the
following:

#!/bin/sh -ex

url="https://ovirt.example.com/ovirt-engine/api";
user="admin@internal"
password="**"

curl \
--verbose \
--insecure \
--request GET \
--header "Accept: application/xml" \
--user "${user}:${password}" \
"${url}/hosts/40cc4c33-2560-4516-b028-1d59638139c3/statistics"

There you will find different statistics, like "memory.total",
"memory.used", etc. Take a look. Once you know what statistic you want
you can get its details like this:

curl \
--verbose \
--insecure \
--request GET \
--header "Accept: application/xml" \
--user "${user}:${password}" \
"${url}/hosts/40cc4c33-2560-4516-b028-1d59638139c3/statistics/7816602b-c05c-3db7-a4da-3769f7ad8896"

This can be cumbersome to do with a shell script, so you may want to use
the Python or Java SDKs, or just use directly the ovirt-shell:

$ ovirt-shell --insecure
URL: https://ovirt.example.com/ovirt-engine/api
Username: admin@internal
Password: **
[oVirt shell (connected)]# show statistic memory.total --host-identifier
myhost
id: 7816602b-c05c-3db7-a4da-3769f7ad8896
name  : memory.total
description   : Total memory
host-id   : 40cc4c33-2560-4516-b028-1d59638139c3
type  : GAUGE
unit  : BYTES
values-type   : INTEGER
values-value-datum: 2099249152

> I couldn't find out any direct api method to do the above, Is it
> possible to do these operations using api ? If anyone knows it please
> help me to sort out it.
> 
> 
> 
> -- 
> Regards
> Shanil

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


Re: [ovirt-users] oVirt 3.5.0 release schedule updated

2014-08-21 Thread Sandro Bonazzola
Il 21/08/2014 13:14, Eli Mesika ha scritto:
> 
> 
> - Original Message -
>> From: "Sandro Bonazzola" 
>> To: "Eli Mesika" 
>> Cc: Users@ovirt.org, de...@ovirt.org
>> Sent: Thursday, August 21, 2014 8:55:42 AM
>> Subject: Re: [ovirt-users] oVirt 3.5.0 release schedule updated
>>
>> Il 20/08/2014 23:13, Eli Mesika ha scritto:
>>>
>>>
>>> - Original Message -
 From: "Sandro Bonazzola" 
 To: Users@ovirt.org, de...@ovirt.org
 Sent: Wednesday, August 20, 2014 5:49:53 PM
 Subject: [ovirt-users] oVirt 3.5.0 release schedule updated

 Here is the updated schedule for oVirt 3.5.0 after today oVirt sync
 meeting
 discussion.
 These are tentative planning dates and may change:

 General availability: 2014-09-17 (Wed)
 oVirt 3.5 Third Test Day: 2014-09-11 (Thu)
>>>
>>> Sandro, please note that the TLV office have a summer event in this date
>>> from 14:00 local time
>>> (We have to drive about an hour to the event location, what makes our day
>>> work end around 13:00)
>>
>> Better to anticipate to 2014-09-10 (Wed)?
> 
> Yes

Ok, updating calendar and release management page accordingly

> 
>>
>>
>>
>>>
>>>
 RC2 Build:2014-09-03 (Wed)
 Build refresh:2014-08-21 (Thu)

 Release management page has been updated accordingly:
 http://www.ovirt.org/OVirt_3.5_release-management

 oVirt Google Calendar has been updated accordingly:
 ICAL:
 https://www.google.com/calendar/ical/ppqtk46u9cglj7l987ruo2l0f8%40group.calendar.google.com/public/basic.ics
 XML:
 https://www.google.com/calendar/feeds/ppqtk46u9cglj7l987ruo2l0f8%40group.calendar.google.com/public/basic
 HTML:
 https://www.google.com/calendar/embed?src=ppqtk46u9cglj7l987ruo2l0f8%40group.calendar.google.com&ctz=UTC


 Thanks,

 --
 Sandro Bonazzola
 Better technology. Faster innovation. Powered by community collaboration.
 See how it works at redhat.com
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users

>>
>>
>> --
>> Sandro Bonazzola
>> Better technology. Faster innovation. Powered by community collaboration.
>> See how it works at redhat.com
>>


-- 
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] oVirt 3.5.0 release schedule updated

2014-08-21 Thread Eli Mesika


- Original Message -
> From: "Sandro Bonazzola" 
> To: "Eli Mesika" 
> Cc: Users@ovirt.org, de...@ovirt.org
> Sent: Thursday, August 21, 2014 8:55:42 AM
> Subject: Re: [ovirt-users] oVirt 3.5.0 release schedule updated
> 
> Il 20/08/2014 23:13, Eli Mesika ha scritto:
> > 
> > 
> > - Original Message -
> >> From: "Sandro Bonazzola" 
> >> To: Users@ovirt.org, de...@ovirt.org
> >> Sent: Wednesday, August 20, 2014 5:49:53 PM
> >> Subject: [ovirt-users] oVirt 3.5.0 release schedule updated
> >>
> >> Here is the updated schedule for oVirt 3.5.0 after today oVirt sync
> >> meeting
> >> discussion.
> >> These are tentative planning dates and may change:
> >>
> >> General availability: 2014-09-17 (Wed)
> >> oVirt 3.5 Third Test Day: 2014-09-11 (Thu)
> > 
> > Sandro, please note that the TLV office have a summer event in this date
> > from 14:00 local time
> > (We have to drive about an hour to the event location, what makes our day
> > work end around 13:00)
> 
> Better to anticipate to 2014-09-10 (Wed)?

Yes

> 
> 
> 
> > 
> > 
> >> RC2 Build:2014-09-03 (Wed)
> >> Build refresh:2014-08-21 (Thu)
> >>
> >> Release management page has been updated accordingly:
> >> http://www.ovirt.org/OVirt_3.5_release-management
> >>
> >> oVirt Google Calendar has been updated accordingly:
> >> ICAL:
> >> https://www.google.com/calendar/ical/ppqtk46u9cglj7l987ruo2l0f8%40group.calendar.google.com/public/basic.ics
> >> XML:
> >> https://www.google.com/calendar/feeds/ppqtk46u9cglj7l987ruo2l0f8%40group.calendar.google.com/public/basic
> >> HTML:
> >> https://www.google.com/calendar/embed?src=ppqtk46u9cglj7l987ruo2l0f8%40group.calendar.google.com&ctz=UTC
> >>
> >>
> >> Thanks,
> >>
> >> --
> >> Sandro Bonazzola
> >> Better technology. Faster innovation. Powered by community collaboration.
> >> See how it works at redhat.com
> >> ___
> >> Users mailing list
> >> Users@ovirt.org
> >> http://lists.ovirt.org/mailman/listinfo/users
> >>
> 
> 
> --
> Sandro Bonazzola
> Better technology. Faster innovation. Powered by community collaboration.
> See how it works at redhat.com
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Sahina Bose


On 08/21/2014 03:43 PM, Punit Dambiwal wrote:

Hi Sahina,

Would you mind to let me know how to create the ovirt UI ??


Please look at the docs available on ovirt.org regarding UI plugins. 
There's lot of information available





On Thu, Aug 21, 2014 at 6:09 PM, Sahina Bose > wrote:



On 08/21/2014 02:08 PM, Punit Dambiwal wrote:

Hi Sahina,

Is it possible to integrate cacti or mrtg for the VM network
usages report ??


Yes, you could create a oVirt UI plugin to do this





Thanks,
Punit


On Thu, Aug 21, 2014 at 4:37 PM, Punit Dambiwal
mailto:hypu...@gmail.com>> wrote:

Hi Sahina,

Thanks a lot for the help...I will try it and let you know if
find any problem...

Thanks,
Punit


On Thu, Aug 21, 2014 at 4:15 PM, Sahina Bose
mailto:sab...@redhat.com>> wrote:


On 08/21/2014 01:23 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanksone more question is should i install the
nagios server on the ovirt-engine or separate node for
nagiosalso is there any special setting required of
the nagios hosts and services(in regard of ovirt) ??


Nagios can be on a separate node. You just need to make
sure the plugin is able to talk to nagios server via
mk_livestatus / ndoutils






Thanks,
Punit


On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose
mailto:sab...@redhat.com>> wrote:


On 08/21/2014 12:51 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanks for the update...but this url (see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO)
is just for the glusterfsi need it to be for
gluster,hosts & VM's...

And in the another

url..(http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin)
all the following links are dead...


  oVirt Monitoring UI Plugin

This plugin brings integration with Nagios
 or Icinga
 monitoring solution into
oVirt.

  * Author: René Koch mailto:r.k...@ovido.at>>
  * Project web site:

https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
  * Installation documentation:

https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
  * UI plugin source code:

https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn


Please provide me good source to deploy it...


https://github.com/monitoring-ui-plugin/monitoring-ui-plugin



Thanks,
Punit


On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose
mailto:sab...@redhat.com>> wrote:


On 08/21/2014 12:31 PM, Punit Dambiwal wrote:

Hi,

Is there any one integrate nagios with Ovirt
for VM monitoring and usages graphs... ??

If yes..please refer me the article..as the
Ovirt report and DWH is not good...



We have an integration with Nagios to provide
monitoring for gluster volumes and hosts - see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO

There's also a

http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
written by René Koch - which provides a generic
integration of oVirt with Nagios - could be
what you're looking for.




Thanks,
Punit


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















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


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Punit Dambiwal
Hi Sahina,

Would you mind to let me know how to create the ovirt UI ??


On Thu, Aug 21, 2014 at 6:09 PM, Sahina Bose  wrote:

>
> On 08/21/2014 02:08 PM, Punit Dambiwal wrote:
>
> Hi Sahina,
>
>  Is it possible to integrate cacti or mrtg for the VM network usages
> report ??
>
>
> Yes, you could create a oVirt UI plugin to do this
>
>
>
>
>  Thanks,
> Punit
>
>
>  On Thu, Aug 21, 2014 at 4:37 PM, Punit Dambiwal 
> wrote:
>
>> Hi Sahina,
>>
>>  Thanks a lot for the help...I will try it and let you know if find any
>> problem...
>>
>>  Thanks,
>> Punit
>>
>>
>>  On Thu, Aug 21, 2014 at 4:15 PM, Sahina Bose  wrote:
>>
>>>
>>> On 08/21/2014 01:23 PM, Punit Dambiwal wrote:
>>>
>>> Hi Sahina,
>>>
>>>  Thanksone more question is should i install the nagios server on
>>> the ovirt-engine or separate node for nagiosalso is there any special
>>> setting required of the nagios hosts and services(in regard of ovirt) ??
>>>
>>>
>>> Nagios can be on a separate node. You just need to make sure the plugin
>>> is able to talk to nagios server via mk_livestatus / ndoutils
>>>
>>>
>>>
>>>
>>>
>>>  Thanks,
>>> Punit
>>>
>>>
>>> On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose  wrote:
>>>

 On 08/21/2014 12:51 PM, Punit Dambiwal wrote:

 Hi Sahina,

  Thanks for the update...but this url (see
 http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just for
 the glusterfsi need it to be for gluster,hosts & VM's...

  And in the another url..(
 http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin )
 all the following links are dead...

  oVirt Monitoring UI Plugin

 This plugin brings integration with Nagios  or
 Icinga  monitoring solution into oVirt.

- Author: René Koch 
- Project web site:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
- Installation documentation:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
- UI plugin source code:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn


   Please provide me good source to deploy it...


  https://github.com/monitoring-ui-plugin/monitoring-ui-plugin


  Thanks,
 Punit


 On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose  wrote:

>
> On 08/21/2014 12:31 PM, Punit Dambiwal wrote:
>
> Hi,
>
>  Is there any one integrate nagios with Ovirt for VM monitoring and
> usages graphs... ??
>
>  If yes..please refer me the article..as the Ovirt report and DWH is
> not good...
>
>
>
>  We have an integration with Nagios to provide monitoring for gluster
> volumes and hosts - see
> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO
>
> There's also a
> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
> written by  René Koch - which provides a generic integration of oVirt with
> Nagios - could be what you're looking for.
>
>
>
>  Thanks,
> Punit
>
>
> ___
> Users mailing 
> listUsers@ovirt.orghttp://lists.ovirt.org/mailman/listinfo/users
>
>
>


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


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Sahina Bose


On 08/21/2014 02:08 PM, Punit Dambiwal wrote:

Hi Sahina,

Is it possible to integrate cacti or mrtg for the VM network usages 
report ??


Yes, you could create a oVirt UI plugin to do this




Thanks,
Punit


On Thu, Aug 21, 2014 at 4:37 PM, Punit Dambiwal > wrote:


Hi Sahina,

Thanks a lot for the help...I will try it and let you know if find
any problem...

Thanks,
Punit


On Thu, Aug 21, 2014 at 4:15 PM, Sahina Bose mailto:sab...@redhat.com>> wrote:


On 08/21/2014 01:23 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanksone more question is should i install the nagios
server on the ovirt-engine or separate node for
nagiosalso is there any special setting required of the
nagios hosts and services(in regard of ovirt) ??


Nagios can be on a separate node. You just need to make sure
the plugin is able to talk to nagios server via mk_livestatus
/ ndoutils






Thanks,
Punit


On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose
mailto:sab...@redhat.com>> wrote:


On 08/21/2014 12:51 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanks for the update...but this url (see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO)
is just for the glusterfsi need it to be for
gluster,hosts & VM's...

And in the another

url..(http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin)
all the following links are dead...


  oVirt Monitoring UI Plugin

This plugin brings integration with Nagios
 or Icinga
 monitoring solution into oVirt.

  * Author: René Koch mailto:r.k...@ovido.at>>
  * Project web site:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
  * Installation documentation:

https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
  * UI plugin source code:

https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn


Please provide me good source to deploy it...


https://github.com/monitoring-ui-plugin/monitoring-ui-plugin



Thanks,
Punit


On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose
mailto:sab...@redhat.com>> wrote:


On 08/21/2014 12:31 PM, Punit Dambiwal wrote:

Hi,

Is there any one integrate nagios with Ovirt for VM
monitoring and usages graphs... ??

If yes..please refer me the article..as the Ovirt
report and DWH is not good...



We have an integration with Nagios to provide
monitoring for gluster volumes and hosts - see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO

There's also a

http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
written by  René Koch - which provides a generic
integration of oVirt with Nagios - could be what
you're looking for.




Thanks,
Punit


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












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


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Punit Dambiwal
Hi Sahina,

Is it possible to integrate cacti or mrtg for the VM network usages report
??

Thanks,
Punit


On Thu, Aug 21, 2014 at 4:37 PM, Punit Dambiwal  wrote:

> Hi Sahina,
>
> Thanks a lot for the help...I will try it and let you know if find any
> problem...
>
> Thanks,
> Punit
>
>
> On Thu, Aug 21, 2014 at 4:15 PM, Sahina Bose  wrote:
>
>>
>> On 08/21/2014 01:23 PM, Punit Dambiwal wrote:
>>
>> Hi Sahina,
>>
>>  Thanksone more question is should i install the nagios server on
>> the ovirt-engine or separate node for nagiosalso is there any special
>> setting required of the nagios hosts and services(in regard of ovirt) ??
>>
>>
>> Nagios can be on a separate node. You just need to make sure the plugin
>> is able to talk to nagios server via mk_livestatus / ndoutils
>>
>>
>>
>>
>>
>>  Thanks,
>> Punit
>>
>>
>> On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose  wrote:
>>
>>>
>>> On 08/21/2014 12:51 PM, Punit Dambiwal wrote:
>>>
>>> Hi Sahina,
>>>
>>>  Thanks for the update...but this url (see
>>> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just for
>>> the glusterfsi need it to be for gluster,hosts & VM's...
>>>
>>>  And in the another url..(
>>> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin )
>>> all the following links are dead...
>>>
>>>  oVirt Monitoring UI Plugin
>>>
>>> This plugin brings integration with Nagios  or
>>> Icinga  monitoring solution into oVirt.
>>>
>>>- Author: René Koch 
>>>- Project web site:
>>>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
>>>- Installation documentation:
>>>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
>>>- UI plugin source code:
>>>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn
>>>
>>>
>>>   Please provide me good source to deploy it...
>>>
>>>
>>>  https://github.com/monitoring-ui-plugin/monitoring-ui-plugin
>>>
>>>
>>>  Thanks,
>>> Punit
>>>
>>>
>>> On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose  wrote:
>>>

 On 08/21/2014 12:31 PM, Punit Dambiwal wrote:

 Hi,

  Is there any one integrate nagios with Ovirt for VM monitoring and
 usages graphs... ??

  If yes..please refer me the article..as the Ovirt report and DWH is
 not good...



  We have an integration with Nagios to provide monitoring for gluster
 volumes and hosts - see
 http://www.ovirt.org/Features/Nagios_Integration#HOW_TO

 There's also a
 http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
 written by  René Koch - which provides a generic integration of oVirt with
 Nagios - could be what you're looking for.



  Thanks,
 Punit


 ___
 Users mailing 
 listUsers@ovirt.orghttp://lists.ovirt.org/mailman/listinfo/users



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


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Punit Dambiwal
Hi Sahina,

Thanks a lot for the help...I will try it and let you know if find any
problem...

Thanks,
Punit


On Thu, Aug 21, 2014 at 4:15 PM, Sahina Bose  wrote:

>
> On 08/21/2014 01:23 PM, Punit Dambiwal wrote:
>
> Hi Sahina,
>
>  Thanksone more question is should i install the nagios server on the
> ovirt-engine or separate node for nagiosalso is there any special
> setting required of the nagios hosts and services(in regard of ovirt) ??
>
>
> Nagios can be on a separate node. You just need to make sure the plugin is
> able to talk to nagios server via mk_livestatus / ndoutils
>
>
>
>
>
>  Thanks,
> Punit
>
>
> On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose  wrote:
>
>>
>> On 08/21/2014 12:51 PM, Punit Dambiwal wrote:
>>
>> Hi Sahina,
>>
>>  Thanks for the update...but this url (see
>> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just for the
>> glusterfsi need it to be for gluster,hosts & VM's...
>>
>>  And in the another url..(
>> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin ) all
>> the following links are dead...
>>
>>  oVirt Monitoring UI Plugin
>>
>> This plugin brings integration with Nagios  or
>> Icinga  monitoring solution into oVirt.
>>
>>- Author: René Koch 
>>- Project web site:
>>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
>>- Installation documentation:
>>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
>>- UI plugin source code:
>>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn
>>
>>
>>   Please provide me good source to deploy it...
>>
>>
>>  https://github.com/monitoring-ui-plugin/monitoring-ui-plugin
>>
>>
>>  Thanks,
>> Punit
>>
>>
>> On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose  wrote:
>>
>>>
>>> On 08/21/2014 12:31 PM, Punit Dambiwal wrote:
>>>
>>> Hi,
>>>
>>>  Is there any one integrate nagios with Ovirt for VM monitoring and
>>> usages graphs... ??
>>>
>>>  If yes..please refer me the article..as the Ovirt report and DWH is
>>> not good...
>>>
>>>
>>>
>>>  We have an integration with Nagios to provide monitoring for gluster
>>> volumes and hosts - see
>>> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO
>>>
>>> There's also a
>>> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
>>> written by  René Koch - which provides a generic integration of oVirt with
>>> Nagios - could be what you're looking for.
>>>
>>>
>>>
>>>  Thanks,
>>> Punit
>>>
>>>
>>> ___
>>> Users mailing 
>>> listUsers@ovirt.orghttp://lists.ovirt.org/mailman/listinfo/users
>>>
>>>
>>>
>>
>>
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Sahina Bose


On 08/21/2014 01:23 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanksone more question is should i install the nagios server on 
the ovirt-engine or separate node for nagiosalso is there any 
special setting required of the nagios hosts and services(in regard of 
ovirt) ??


Nagios can be on a separate node. You just need to make sure the plugin 
is able to talk to nagios server via mk_livestatus / ndoutils






Thanks,
Punit


On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose > wrote:



On 08/21/2014 12:51 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanks for the update...but this url (see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just
for the glusterfsi need it to be for gluster,hosts & VM's...

And in the another
url..(http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin)
all the following links are dead...


  oVirt Monitoring UI Plugin

This plugin brings integration with Nagios
 or Icinga
 monitoring solution into oVirt.

  * Author: René Koch mailto:r.k...@ovido.at>>
  * Project web site:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
  * Installation documentation:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
  * UI plugin source code:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn


Please provide me good source to deploy it...


https://github.com/monitoring-ui-plugin/monitoring-ui-plugin



Thanks,
Punit


On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose mailto:sab...@redhat.com>> wrote:


On 08/21/2014 12:31 PM, Punit Dambiwal wrote:

Hi,

Is there any one integrate nagios with Ovirt for VM
monitoring and usages graphs... ??

If yes..please refer me the article..as the Ovirt report and
DWH is not good...



We have an integration with Nagios to provide monitoring for
gluster volumes and hosts - see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO

There's also a
http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
written by  René Koch - which provides a generic integration
of oVirt with Nagios - could be what you're looking for.




Thanks,
Punit


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








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


Re: [ovirt-users] oVirt Weekly Sync Minutes: Aug. 20, 2014

2014-08-21 Thread Allon Mureinik


- Original Message -
> From: "Brian Proffitt" 
> To: "users" 
> Cc: "board" 
> Sent: Wednesday, August 20, 2014 6:08:02 PM
> Subject: [ovirt-users] oVirt Weekly Sync Minutes: Aug. 20, 2014
> 
> =
> #ovirt: oVirt Weekly Sync
> =
> 
> 
> Meeting started by bkp at 14:03:25 UTC. The full logs are available at
> http://ovirt.org/meetings/ovirt/2014/ovirt.2014-08-20-14.03.log.html .
> 
> 
> 
> Meeting summary
> ---
> * Agenda and Roll Call  (bkp, 14:03:56)
>   * infra update  (bkp, 14:04:32)
>   * 3.4.z updates  (bkp, 14:04:33)
>   * 3.5 status  (bkp, 14:04:33)
>   * conferences and workshops  (bkp, 14:04:33)
>   * other topics  (bkp, 14:04:33)
> 
> * infra update  (bkp, 14:05:16)
>   * infra PHX setup has a working foreman-proxy running, starting to
> spawn vms and autoinstall directly from foreman.ovirt.org  (bkp,
> 14:09:30)
>   * infra jenkins and gerrit to be upgraded soon (hopefully this week)
> (bkp, 14:09:30)
>   * infra New task created of migrating master-related vdsm jobs to
> f20/f21  (bkp, 14:09:30)
> 
> * 3.4.z updates  (bkp, 14:11:11)
>   * 3.4.z updates 7 bugs still open, no blockers.  (bkp, 14:23:03)
>   * 3.4.z updates RC targeted to 2014-09-09  (bkp, 14:23:03)
>   * 3.4.z updates A nasty bug that prevents exporting (and probably a
> bunch of other operations) on vDisks that were imported to block
> storage from file storage -
> https://bugzilla.redhat.com/show_bug.cgi?id=1130761  (bkp, 14:23:03)
>   * 3.4.z updates Documentation will be added to 3.4.4 release notes, as
> well as 3.4.2 and 3.4.3, retroactively  (bkp, 14:23:03)
Upon further research, it seems as though we were able to solve this without a 
manual procedure (see https://bugzilla.redhat.com/show_bug.cgi?id=1132086).
This fix will be delivered as part of the engine's upgrade in 3.4.4 (and 3.5.0, 
of course), so ultimately, no release notes are required.

> 
> * 3.5 status  (bkp, 14:23:26)
>   * 3.4.z updates An async build will be made for vdsm for 3.4.z  (bkp,
> 14:24:26)
>   * 3.5 status integration oVirt 3.5.0 RC2 not ready for 08-21-14
> release  (bkp, 14:37:09)
>   * 3.5 status integration Six blockers outstanding, and two dependency
> bugs still open, so cannot qualify for RC  (bkp, 14:37:09)
>   * 3.5 status infra BZ 1127877 Awaiting review from danken, with
> ybronhei at LinuxCon.  (bkp, 14:52:58)
>   * 3.5 status infra BZ 1127877 Assistance to review
> http://gerrit.ovirt.org/#/c/31400/2 and the rest of
> 
> http://gerrit.ovirt.org/#/q/status:open+project:vdsm+branch:master+topic:configurators_reorg,n,z
> requested; These were +1d or had no comments  (bkp, 14:52:58)
>   * 3.5 status sla BZ 1129261 waiting for the logs, going to append it
> there  (bkp, 15:00:27)
>   * 3.5 status sla BZ 1130038 waiting for the logs, going to append it
> there  (bkp, 15:00:27)
>   * 3.5 status storage Blockers covered earlier in meeting  (bkp,
> 15:00:27)
> 
> * Conferences and Workshops  (bkp, 15:03:44)
>   * Conferences and Workshops LinuxCon NA in progress. Three oVirt talks
> scheduled, lots of booth time for me. (Including now)  (bkp,
> 15:03:44)
> 
> * Other Topics  (bkp, 15:04:00)
> 
> Meeting ended at 15:06:48 UTC.
> 
> 
> 
> 
> Action Items
> 
> 
> 
> 
> 
> 
> Action Items, by person
> ---
> * **UNASSIGNED**
>   * (none)
> 
> 
> 
> 
> People Present (lines said)
> ---
> * bkp (88)
> * sbonazzo (38)
> * danken (36)
> * amureini (17)
> * oved (16)
> * alitke (13)
> * msivak (6)
> * dcaro (3)
> * eedri (3)
> * jmoskovc (2)
> * moolit (2)
> * ovirtbot (2)
> * lvernia (1)
> * awels (1)
> * fromani (1)
> * nsoffer (1)
> * Rydekull (1)
> 
> 
> 
> 
> Generated by `MeetBot`_ 0.1.4
> 
> .. _`MeetBot`: http://wiki.debian.org/MeetBot
> 
> --
> Brian Proffitt
> 
> oVirt Community Manager
> Project Atomic Community Lead
> Open Source and Standards, Red Hat - http://community.redhat.com
> Phone: +1 574 383 9BKP
> IRC: bkp @ OFTC
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Punit Dambiwal
Hi Sahina,

Thanksone more question is should i install the nagios server on the
ovirt-engine or separate node for nagiosalso is there any special
setting required of the nagios hosts and services(in regard of ovirt) ??

Thanks,
Punit


On Thu, Aug 21, 2014 at 3:24 PM, Sahina Bose  wrote:

>
> On 08/21/2014 12:51 PM, Punit Dambiwal wrote:
>
> Hi Sahina,
>
>  Thanks for the update...but this url (see
> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just for the
> glusterfsi need it to be for gluster,hosts & VM's...
>
>  And in the another url..(
> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin ) all
> the following links are dead...
>
>  oVirt Monitoring UI Plugin
>
> This plugin brings integration with Nagios  or
> Icinga  monitoring solution into oVirt.
>
>- Author: René Koch 
>- Project web site:
>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
>- Installation documentation:
>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
>- UI plugin source code:
>https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn
>
>
>   Please provide me good source to deploy it...
>
>
> https://github.com/monitoring-ui-plugin/monitoring-ui-plugin
>
>
>  Thanks,
> Punit
>
>
> On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose  wrote:
>
>>
>> On 08/21/2014 12:31 PM, Punit Dambiwal wrote:
>>
>> Hi,
>>
>>  Is there any one integrate nagios with Ovirt for VM monitoring and
>> usages graphs... ??
>>
>>  If yes..please refer me the article..as the Ovirt report and DWH is not
>> good...
>>
>>
>>
>>  We have an integration with Nagios to provide monitoring for gluster
>> volumes and hosts - see
>> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO
>>
>> There's also a
>> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
>> written by  René Koch - which provides a generic integration of oVirt with
>> Nagios - could be what you're looking for.
>>
>>
>>
>>  Thanks,
>> Punit
>>
>>
>> ___
>> Users mailing 
>> listUsers@ovirt.orghttp://lists.ovirt.org/mailman/listinfo/users
>>
>>
>>
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Sahina Bose


On 08/21/2014 12:51 PM, Punit Dambiwal wrote:

Hi Sahina,

Thanks for the update...but this url (see 
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just for 
the glusterfsi need it to be for gluster,hosts & VM's...


And in the another 
url..(http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin) 
all the following links are dead...



  oVirt Monitoring UI Plugin

This plugin brings integration with Nagios  or 
Icinga  monitoring solution into oVirt.


  * Author: René Koch mailto:r.k...@ovido.at>>
  * Project web site:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
  * Installation documentation:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
  * UI plugin source code:
https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn


Please provide me good source to deploy it...


https://github.com/monitoring-ui-plugin/monitoring-ui-plugin



Thanks,
Punit


On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose > wrote:



On 08/21/2014 12:31 PM, Punit Dambiwal wrote:

Hi,

Is there any one integrate nagios with Ovirt for VM monitoring
and usages graphs... ??

If yes..please refer me the article..as the Ovirt report and DWH
is not good...



We have an integration with Nagios to provide monitoring for
gluster volumes and hosts - see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO

There's also a
http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
written by  René Koch - which provides a generic integration of
oVirt with Nagios - could be what you're looking for.




Thanks,
Punit


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





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


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Punit Dambiwal
Hi Sahina,

Thanks for the update...but this url (see
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO) is just for the
glusterfsi need it to be for gluster,hosts & VM's...

And in the another url..(
http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin ) all
the following links are dead...

oVirt Monitoring UI Plugin

This plugin brings integration with Nagios  or
Icinga  monitoring solution into oVirt.

   - Author: René Koch 
   - Project web site:
   https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
   - Installation documentation:
   https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:install
   - UI plugin source code:
   https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin:svn


Please provide me good source to deploy it...

Thanks,
Punit


On Thu, Aug 21, 2014 at 3:14 PM, Sahina Bose  wrote:

>
> On 08/21/2014 12:31 PM, Punit Dambiwal wrote:
>
> Hi,
>
>  Is there any one integrate nagios with Ovirt for VM monitoring and
> usages graphs... ??
>
>  If yes..please refer me the article..as the Ovirt report and DWH is not
> good...
>
>
>
> We have an integration with Nagios to provide monitoring for gluster
> volumes and hosts - see
> http://www.ovirt.org/Features/Nagios_Integration#HOW_TO
>
> There's also a
> http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin
> written by  René Koch - which provides a generic integration of oVirt with
> Nagios - could be what you're looking for.
>
>
>
>  Thanks,
> Punit
>
>
> ___
> Users mailing listUsers@ovirt.orghttp://lists.ovirt.org/mailman/listinfo/users
>
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Nagios with Ovirt

2014-08-21 Thread Sahina Bose


On 08/21/2014 12:31 PM, Punit Dambiwal wrote:

Hi,

Is there any one integrate nagios with Ovirt for VM monitoring and 
usages graphs... ??


If yes..please refer me the article..as the Ovirt report and DWH is 
not good...



We have an integration with Nagios to provide monitoring for gluster 
volumes and hosts - see 
http://www.ovirt.org/Features/Nagios_Integration#HOW_TO


There's also a 
http://www.ovirt.org/Features/UIPlugins#oVirt_Monitoring_UI_Plugin 
written by  René Koch - which provides a generic integration of oVirt 
with Nagios - could be what you're looking for.





Thanks,
Punit


___
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


[ovirt-users] Nagios with Ovirt

2014-08-21 Thread Punit Dambiwal
Hi,

Is there any one integrate nagios with Ovirt for VM monitoring and usages
graphs... ??

If yes..please refer me the article..as the Ovirt report and DWH is not
good...

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