Re: [ovirt-users] Remote PostgreSQL 9.5 (was: Answer file key for "nonlocal postgres")

2017-03-30 Thread Jamie Lawrence
> On Mar 27, 2017, at 10:42 PM, Yedidyah Bar David wrote: >> I know what I was doing is unsupported. I was wondering down the wrong >> troubleshooting path for a bit there, but I think ultimately what I need is >> also unsupported. >> >> It was because I was trying to push

Re: [ovirt-users] VDSM Hooks

2017-03-30 Thread Fred Rolland
John, Here is the readme for the localdisk hook: https://github.com/oVirt/vdsm/blob/master/vdsm_hooks/localdisk/README In order to use it you need to install it on the host, configure the VM User Property on the engine, and set the property on the VM that will use the hook. Note that a lot of

Re: [ovirt-users] Recent Install Docs?

2017-03-30 Thread Alan Griffiths
I believe that is the required setup - dedicated storage domain for HE. It's certainly the case on 4.0, I haven't played with 4.1 yet. For docs you can always check the RHV set, they are generally applicable to oVirt. https://access.redhat.com/documentation/en-us/red_hat_

Re: [ovirt-users] Python-SDK4: How to list VM user sessions?

2017-03-30 Thread Juan Hernández
On 03/30/2017 01:01 PM, Giulio Casella wrote: > Hi, > I'm trying to obtain a list of users connected to a VM, using python SDK > v4. > Here's what I'm doing: > > vm = vms_service.list(search="name=vmname")[0] > vm_service = vms_service.vm_service(vm.id) > sessions =

[ovirt-users] Questions regarding Mangement network and ISO Domain

2017-03-30 Thread Brenneman, Brad B.
To all, Fairly new to ovirt but ran into a couple issues which I am hoping someone can shed some light on. Environment (Ovirt 4.1) *1 Engine with Bonded NICs on single subnet *ISO domain created during install on engine *VDSM Host A with Bonded NICs on single

[ovirt-users] Recent Install Docs?

2017-03-30 Thread Charles Tassell
Hello, Are there any more recent install docs than what's on the website? Those all seem to be back from the 3.x days and don't really deal with the modern setup of using a hosted engine. More specifically, I've noticed that when deploying a hosted engine I can't import the storage

Re: [ovirt-users] VDSM Hooks

2017-03-30 Thread Liron Aravot
On Thu, Mar 30, 2017 at 7:30 PM, John wrote: > Hi, > > I've be googling and also trawling the oVirt documentation trying to find > instructions on how to install and use VDSM hooks in general but > specifically the "vdsm-hook-localdisk" hook. I have a machine that has a >

[ovirt-users] VDSM Hooks

2017-03-30 Thread John
Hi, I've be googling and also trawling the oVirt documentation trying to find instructions on how to install and use VDSM hooks in general but specifically the "vdsm-hook-localdisk" hook. I have a machine that has a large amount of free space on SSD which I was hoping to use to store a

[ovirt-users] [ANN] oVirt 4.1.1 Async release candidate

2017-03-30 Thread Sandro Bonazzola
Hi, following oVirt 4.1.1 GA the oVirt team identified some bugs worth to be addressed out of the usual release cycle. For this reason an async release including these fixes is under preparation. An update to the following packages have been pushed to the pre-release repository for testing. -

Re: [ovirt-users] Python-SDK4: How to list VM user sessions?

2017-03-30 Thread Ondra Machacek
On Thu, Mar 30, 2017 at 2:25 PM, Giulio Casella wrote: > On 30/03/2017 13:39, nico...@devels.es wrote: > >> Hi Giulio, >> >> I tried to reproduce your same steps and it returns an non-empty list >> for me. >> >> In [1]: vms_serv = sys_serv.vms_service() >> >> In [2]: vm =

Re: [ovirt-users] ovirt-hosted-engine state transition messages

2017-03-30 Thread Simone Tiraboschi
Could you please check your /var/log/ovirt-hosted-engine-ha/agent.log ? On Thu, Mar 30, 2017 at 3:10 AM, Jim Kusznir wrote: > Hello: > > I find that I often get random-seeming messages. A lot of them mention > "ReintializeFSM", but I also get engine down, engine start,

Re: [ovirt-users] Python-SDK4: How to list VM user sessions?

2017-03-30 Thread Giulio Casella
On 30/03/2017 13:39, nico...@devels.es wrote: Hi Giulio, I tried to reproduce your same steps and it returns an non-empty list for me. In [1]: vms_serv = sys_serv.vms_service() In [2]: vm = vms_serv.list(search='name=bleh')[0] In [3]: vmsv = vms_serv.vm_service(vm.id) In [4]: vmsess =

Re: [ovirt-users] Gluster and oVirt 4.0 questions

2017-03-30 Thread Alexander Wels
On Thursday, March 30, 2017 3:53:47 AM EDT Liron Aravot wrote: > Hi Jim, please see inline > > On Thu, Mar 30, 2017 at 4:08 AM, Jim Kusznir wrote: > > hello: > > > > I've been running my ovirt Version 4.0.5.5-1.el7.centos cluster for a > > while now, and am now revisiting

[ovirt-users] Default Quota could not be updated nor removed in ovirt hosted engine 4.1

2017-03-30 Thread Manuel Luis Aznar
Hello there, It seams that there is a bug with the Default Quota, as I reported in the subject of the email I am using oVirt Hosted Engine 4.1 When I tried to edit the Default Quota the system replies the following with Data Center in Audit Mode: Operation Canceled: Error while executing

Re: [ovirt-users] Python-SDK4: How to list VM user sessions?

2017-03-30 Thread nicolas
Hi Giulio, I tried to reproduce your same steps and it returns an non-empty list for me. In [1]: vms_serv = sys_serv.vms_service() In [2]: vm = vms_serv.list(search='name=bleh')[0] In [3]: vmsv = vms_serv.vm_service(vm.id) In [4]: vmsess = vmsv.sessions_service() In [5]: vmsess.list()

Re: [ovirt-users] oVirt 3.6 on CentOS 6.7 based HyperConverged DC : Upgradable?

2017-03-30 Thread Sahina Bose
On Thu, Mar 30, 2017 at 4:39 PM, Sahina Bose wrote: > > > On Wed, Mar 29, 2017 at 10:36 PM, Liron Aravot wrote: > >> >> >> On Wed, Mar 29, 2017 at 4:35 PM, Nicolas Ecarnot >> wrote: >> >>> [Please ignore the previous msg] >>> >>>

[ovirt-users] Python-SDK4: How to list VM user sessions?

2017-03-30 Thread Giulio Casella
Hi, I'm trying to obtain a list of users connected to a VM, using python SDK v4. Here's what I'm doing: vm = vms_service.list(search="name=vmname")[0] vm_service = vms_service.vm_service(vm.id) sessions = vm_service.sessions_service().list() But "sessions" is None. Same result using: s =

Re: [ovirt-users] oVirt 3.6 on CentOS 6.7 based HyperConverged DC : Upgradable?

2017-03-30 Thread Sahina Bose
On Wed, Mar 29, 2017 at 10:36 PM, Liron Aravot wrote: > > > On Wed, Mar 29, 2017 at 4:35 PM, Nicolas Ecarnot > wrote: > >> [Please ignore the previous msg] >> >> Hello, >> >> One of our DC is a very small one, though quite critical. >> It's almost hyper

Re: [ovirt-users] When creating a gluster brick in oVirt, what is the reason for having to fill in the RAID-parameters?

2017-03-30 Thread Goorkate, B.J.
Hi, Thanks for confirming this! Is there a preferred stripe size for gluster bricks? The default for RAID-10 seems to be 256KB, but the Dell RAID-controller defaults to 64KB. Regards, Bertjan On Thu, Mar 30, 2017 at 04:30:31PM +0530, Sahina Bose wrote: > > > On Wed, Mar 29, 2017 at 5:22

Re: [ovirt-users] When creating a gluster brick in oVirt, what is the reason for having to fill in the RAID-parameters?

2017-03-30 Thread Sahina Bose
On Wed, Mar 29, 2017 at 5:22 PM, Goorkate, B.J. wrote: > Hi all, > > When creating a gluster brick in oVirt, I have to fill in the parameters > of the > RAID volume the brick is on (that's how I understand it anyway): > RAID-type, number of disks and stripe size. > >

Re: [ovirt-users] ovirtvm-console : Failed to execute login on behalf - for user

2017-03-30 Thread Nathanaël Blanchet
Le 29/03/2017 à 18:36, Ravi Nori a écrit : Did you restart ovirt-engine after editing ovirt-engine.xml.in ? the logs you send me don't contain debug entries sorry, I forgot indeed, here is the debug log. Thank you. On Wed, Mar 29, 2017 at 12:21 PM, Nathanaël Blanchet

Re: [ovirt-users] vms stucked after migrate from 4.1.0 to 4.1.1 host

2017-03-30 Thread Jiri Slezka
On 03/28/2017 05:04 PM, Jiří Sléžka wrote: > On 03/28/2017 01:50 PM, Michal Skrivanek wrote: >> >>> On 28 Mar 2017, at 13:41, Jiří Sléžka wrote: >>> >>> On 03/28/2017 12:34 AM, Jiří Sléžka wrote: Hi all, I have just upgraded ovirt manager from 4.1.0 to 4.1.1,

Re: [ovirt-users] Details about why a live migration failed

2017-03-30 Thread Davide Ferrari
It fails even when trying to migrate to a CentOS 7.2 host :/ I guess I'll have to shut it down then :( 2017-03-30 9:55 GMT+02:00 Davide Ferrari : > Hello again > > Yep, it fails to migrate to any 7.3 host. > I still have to try to migrate to one of the old 7.2 hosts, I'll

Re: [ovirt-users] Gluster and oVirt 4.0 questions

2017-03-30 Thread Sahina Bose
On Thu, Mar 30, 2017 at 1:23 PM, Liron Aravot wrote: > Hi Jim, please see inline > > On Thu, Mar 30, 2017 at 4:08 AM, Jim Kusznir wrote: > >> hello: >> >> I've been running my ovirt Version 4.0.5.5-1.el7.centos cluster for a >> while now, and am now

Re: [ovirt-users] Details about why a live migration failed

2017-03-30 Thread Davide Ferrari
Hello again Yep, it fails to migrate to any 7.3 host. I still have to try to migrate to one of the old 7.2 hosts, I'll let you know 2017-03-27 13:51 GMT+02:00 Francesco Romani : > On 03/24/2017 04:01 PM, Davide Ferrari wrote: > > Source: CentOS 7.2 -

Re: [ovirt-users] Gluster and oVirt 4.0 questions

2017-03-30 Thread Liron Aravot
Hi Jim, please see inline On Thu, Mar 30, 2017 at 4:08 AM, Jim Kusznir wrote: > hello: > > I've been running my ovirt Version 4.0.5.5-1.el7.centos cluster for a > while now, and am now revisiting some aspects of it for ensuring that I > have good reliability. > > My

Re: [ovirt-users] Import KVM/libvirt VMs to oVirt 4.1 with External Provider

2017-03-30 Thread Shahar Havivi
When we try to do: vol = conn.storageVolLookupByPath(disk['alias']) e.g: vol = conn.storageVolLookupByPath('/opt/wiki-uat/mediawiki-uat.img') Libvirt raise an error: "libvirtError: Storage volume not found: no storage vol with matching path" e.g.: '/opt/wiki-uat/mediawiki-uat.img' is not exists

Re: [ovirt-users] Import KVM/libvirt VMs to oVirt 4.1 with External Provider

2017-03-30 Thread Pradeep Antil
Hi Shahar , vdsm shows the following errors. Just giving the background how do we created VMs in KVM, All the VMs are created on separate Luns of 100 GB and before creating VMs in KVM we usually format the LUN and then we create VMs on the formatted Lun.In this case we have mount the formatted

Re: [ovirt-users] Import KVM/libvirt VMs to oVirt 4.1 with External Provider

2017-03-30 Thread Shahar Havivi
Sorry for the miss leading message, its suppose to say that some of the selected VMs cannot be imported. This can be due to broken storage disk path or any other Libvirt parsing error. For more details you can look at the vdsm log (/var/log/vdsm/vdsm.log) and see why we failed to parse Libvirt xml

Re: [ovirt-users] Import KVM/libvirt VMs to oVirt 4.1 with External Provider

2017-03-30 Thread Pradeep Antil
Hi Team, While importing VMs with external Provider KVM on my oVirt setup, i am getting the below error: "All chosen VMs couldn't be retrieved by the external system and therefore have been filtered. Please see log for details. As per Shahar suggestion yesterday i was able to view the virtual