Re: [ovirt-users] move disk and lv not removed

2017-10-18 Thread Idan Shaby
Hi Gianluca,

This sounds like a bug to me.
Can you please attach engine and vdsm logs?


Thanks,
Idan

On Wed, Oct 18, 2017 at 4:41 PM, Gianluca Cecchi 
wrote:

> Hello,
> on an FC based environment I have a powered off VM
>
> Select VM --> disks subtab --> select one disk of 20Gb
> move
>
> at the end of the move apparently all went ok, but right after the
> "finished moving.." event I also get this error event
>
> VDSM host1 command HSMGetAllTasksStatusesVDS failed: Cannot remove Logical
> Volume: (['Cannot remove Logical Volume: 
> (u\'c5d360f5-cd90-4b3e-bdef-924649bfbc5f\',
> "[\'2255c544-165b-4126-86ee-70e6d1edef9a\']")'],)
>
> After that I also do the same for another disk of the same VM with size
> 80Gb and it completes ok, without the same event error.
> So the problem doesn't occur always
>
> It seem to me that the old disk (aka old lv) has remained as a left over.
> And in fact the source storage domain doesn't show 20Gb of more free
> space...
> From the SPM host
>
> # lvs | egrep "VG|2255c544-165b-4126-86ee-70e6d1edef9a"
>   LV   VG
>  Attr   LSize   Pool   OriginData%  Meta%  Move Log
> Cpy%Sync Convert
>   2255c544-165b-4126-86ee-70e6d1edef9a 072feb00-bc16-416d-9a23-39bde9cd3a94
> -wi---  20.00g
>
>   2255c544-165b-4126-86ee-70e6d1edef9a c5d360f5-cd90-4b3e-bdef-924649bfbc5f
> -wi-ao  20.00g
>
> #
>
> So it seems I have both the old LV on the original VG
> (2255c544-165b-4126-86ee-70e6d1edef9a) and the LV on the VG related to
> the target storage domain
>
> Is there any bug opened for this? How can I clean situation?
> Thanks,
> Gianluca
>
>
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Cannot uplaod ot ISO domain

2017-10-18 Thread Alex K
If this is the case then I will try to set the gluster network to be at the
network that engine can reach prior to adding the ISO domain. I would
prefere not to add an additional interface to engine as then I will need to
make the storage network a bridge which might incur some overhead and
affect performance of storage network.

Alex

On Oct 18, 2017 11:36 PM, "Elad Ben Aharon"  wrote:

> Hi,
>
> The storage where 'ISO' storage domain resides has to be reachable for the
> engine server. Please check network connectivity between the two.
>
> On Wed, Oct 18, 2017 at 7:41 PM, Alex K  wrote:
>
>> Hi all,
>>
>> I have setup a self hosted setup with 3 servers with several volumes in
>> replica 3.
>> These gluster volumes are set on a separate network (on separate NICs on
>> same servers), dedicated for gluster traffic. The engine does not have any
>> NIC in this network.
>> The ISO storage domain is also on top one of these gluster volumes.
>> Hope this makes sense.
>>
>> When I try to upload an ISO file from engine, I get the following error:
>>
>> engine-iso-uploader -i ISO upload /usr/share/ovirt-guest-tools-i
>> so/oVirt-toolsSetup_4.1-3.fc24.iso
>> Please provide the REST API password for the admin@internal oVirt Engine
>> user (CTRL+D to abort):
>> Uploading, please wait...
>> ERROR: mount.nfs: No route to host
>>
>> Seems that the engine is trying to mount the volume and gives a no route
>> to host.
>>
>> What is the correct procedure to add an ISO domain? Can't ISO domain be
>> on a separate dedicated network which is reachable from each host?
>>
>> Thanx,
>> Alex
>>
>>
>> ___
>> Users mailing list
>> Users@ovirt.org
>> http://lists.ovirt.org/mailman/listinfo/users
>>
>>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Vnc client from windows 10

2017-10-18 Thread John Taylor
Hi Gianluca,

I've used the following as a cmd script to parse out the parms from
the .vv and run
the ultravnc vncviewer (uvnc.com).



@setlocal enableextensions enabledelayedexpansion
@echo off
set file=%~1
set area=[virt-viewer]
set currarea=
for /f "usebackq delims=" %%a in ("!file!") do (
set ln=%%a
if "x!ln:~0,1!"=="x[" (
set currarea=!ln!
) else (
for /f "tokens=1,2 delims==" %%b in ("!ln!") do (
set currkey=%%b
set currval=%%c

if "x!area!"=="x!currarea!" if "x!host"=="x!currkey!" (
set host=!currval!
)

set key=port
if "x!area!"=="x!currarea!" if "x!currkey!"=="x!port" (
set port=!currval!
)

if "x!area!"=="x!currarea!" if "x!currkey!"=="x!password" (
set password=!currval!
)

)

)
)

start "vnc" "vncviewer.exe" !host!:!port! /password "!password!"
endlocal



Hope that helps.
-John




On Wed, Oct 18, 2017 at 10:57 AM, Gianluca Cecchi
 wrote:
> Hello,
> I'm trying to have a user connect to the console VM through vnc protocol,
> but without the virt-viewer application.
> The client is Windows 10.
> I have tried some options without success, with tightvnc, ultravnc and
> realvnc but all of them give error about syntax.
> Any native client suggested/recommended with windows 10 and oVirt?
>
> Tried also noVnc that works from a Linux client and so I'm sure all is ok at
> oVirt side, but from Windows 10 and chrome 61 I imported the certificate in
> trusted root authority but nevertheless I get the error
>
> Any hints?
> Thanks,
> Gianluca
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Cannot uplaod ot ISO domain

2017-10-18 Thread Elad Ben Aharon
Hi,

The storage where 'ISO' storage domain resides has to be reachable for the
engine server. Please check network connectivity between the two.

On Wed, Oct 18, 2017 at 7:41 PM, Alex K  wrote:

> Hi all,
>
> I have setup a self hosted setup with 3 servers with several volumes in
> replica 3.
> These gluster volumes are set on a separate network (on separate NICs on
> same servers), dedicated for gluster traffic. The engine does not have any
> NIC in this network.
> The ISO storage domain is also on top one of these gluster volumes.
> Hope this makes sense.
>
> When I try to upload an ISO file from engine, I get the following error:
>
> engine-iso-uploader -i ISO upload /usr/share/ovirt-guest-tools-
> iso/oVirt-toolsSetup_4.1-3.fc24.iso
> Please provide the REST API password for the admin@internal oVirt Engine
> user (CTRL+D to abort):
> Uploading, please wait...
> ERROR: mount.nfs: No route to host
>
> Seems that the engine is trying to mount the volume and gives a no route
> to host.
>
> What is the correct procedure to add an ISO domain? Can't ISO domain be on
> a separate dedicated network which is reachable from each host?
>
> Thanx,
> Alex
>
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Cannot uplaod ot ISO domain

2017-10-18 Thread Alex K
Hi all,

I have setup a self hosted setup with 3 servers with several volumes in
replica 3.
These gluster volumes are set on a separate network (on separate NICs on
same servers), dedicated for gluster traffic. The engine does not have any
NIC in this network.
The ISO storage domain is also on top one of these gluster volumes.
Hope this makes sense.

When I try to upload an ISO file from engine, I get the following error:

engine-iso-uploader -i ISO upload
/usr/share/ovirt-guest-tools-iso/oVirt-toolsSetup_4.1-3.fc24.iso
Please provide the REST API password for the admin@internal oVirt Engine
user (CTRL+D to abort):
Uploading, please wait...
ERROR: mount.nfs: No route to host

Seems that the engine is trying to mount the volume and gives a no route to
host.

What is the correct procedure to add an ISO domain? Can't ISO domain be on
a separate dedicated network which is reachable from each host?

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


[ovirt-users] qemu-kvm-ev-2.9.0-16.el7_4.8.1 now available for testing

2017-10-18 Thread Sandro Bonazzola
Hi, qemu-kvm-ev-2.9.0-16.el7_4.8.1
 is now available for
testing.
If no negative feedback will be reported, I'm going to push to release on
Monday, October 23rd.

Here's the changelog:

* Wed Oct 18 2017 Sandro Bonazzola  -
ev-2.9.0-16.el7_4.8.1
- Removing RH branding from package name

* Fri Sep 15 2017 Danilo Cesar Lemes de Paula  -
rhev-2.9.0-16.el7_4.8
- kvm-ui-move-qemu_input_linux_to_qcode.patch [bz#1482388]
- kvm-ui-update-keymaps.patch [bz#1482388]
- kvm-ui-add-multimedia-keys.patch [bz#1482388]
- kvm-ps2-enable-multimedia-keys.patch [bz#1482388]
- kvm-ui-drop-altgr-and-altgr_r-QKeyCodes.patch [bz#1482388]
- kvm-ui-drop-ac_search-and-ac_stop.patch [bz#1482388]
- Resolves: bz#1482388
  (Keys to control audio are not forwarded to the guest [rhel-7.4.z])

* Thu Sep 14 2017 Danilo Cesar Lemes de Paula  -
rhev-2.9.0-16.el7_4.7
- kvm-vhost-Release-memory-references-on-cleanup.patch [bz#1490742]
- Resolves: bz#1490742
  (Hot-unplugging a vhost network device leaks references to
VFIOPCIDevice's [rhel-7.4.z])

* Tue Sep 05 2017 Miroslav Rezanina  -
rhev-2.9.0-16.el7_4.6
- kvm-ps2-fix-sending-of-PAUSE-BREAK-scancodes.patch [bz#1482389]
- kvm-ui-correctly-detect-spice-PAUSE-scancode-sequence.patch [bz#1482389]
- kvm-vhost-ensure-vhost_ops-are-set-before-calling-iotlb-.patch
[bz#1480446]
- kvm-vhost-user-unregister-slave-req-handler-at-cleanup-t.patch
[bz#1480446]
- Resolves: bz#1480446
  (vhost-user/iommu: crash when backend disconnects [rhel-7.4.z])
- Resolves: bz#1482389
  (Unable to send PAUSE/BREAK to guests in VNC or SPICE [rhel-7.4.z])


-- 

SANDRO BONAZZOLA

ASSOCIATE MANAGER, SOFTWARE ENGINEERING, EMEA ENG VIRTUALIZATION R

Red Hat EMEA 

TRIED. TESTED. TRUSTED. 

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


[ovirt-users] Vnc client from windows 10

2017-10-18 Thread Gianluca Cecchi
Hello,
I'm trying to have a user connect to the console VM through vnc protocol,
but without the virt-viewer application.
The client is Windows 10.
I have tried some options without success, with tightvnc, ultravnc and
realvnc but all of them give error about syntax.
Any native client suggested/recommended with windows 10 and oVirt?

Tried also noVnc that works from a Linux client and so I'm sure all is ok
at oVirt side, but from Windows 10 and chrome 61 I imported the certificate
in trusted root authority but nevertheless I get the error

Any hints?
Thanks,
Gianluca
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Install oVirt in CentOS 7 Node

2017-10-18 Thread FERNANDO FREDIANI

Hi.

I have a host which I installed a Minimal CentOS 7 and turned into a 
oVirt Node therefore it didn't come with Cockpit installed and 
configured as it does in the oVirt-Node-NG.


Comparing both types of Hosts I have the following packages below in 
each scenario.

The only package missing between both is "cockpit-ovirt-dashboard".

However I have already tried to install it and it was unable to show up 
the Virtual Machines correctly and control them. Is any specific or 
custom configuration needed in the cockpit config files to make it work 
properly ?


- oVirt-Node-NG host:
    cockpit-ws-130-1.el7.centos.x86_64
    cockpit-docker-130-1.el7.centos.x86_64
    cockpit-ovirt-dashboard-0.10.7-0.0.6.el7.centos.noarch
    cockpit-system-130-1.el7.centos.noarch
    cockpit-networkmanager-130-1.el7.centos.noarch
    cockpit-storaged-130-1.el7.centos.noarch
    cockpit-130-1.el7.centos.x86_64
    cockpit-bridge-130-1.el7.centos.x86_64
    cockpit-dashboard-130-1.el7.centos.x86_64

- CentOS 7 Minimal install
    cockpit-system-141-3.el7.centos.noarch
    cockpit-ws-141-3.el7.centos.x86_64
    cockpit-docker-141-3.el7.centos.x86_64
    cockpit-dashboard-141-3.el7.centos.x86_64
    cockpit-141-3.el7.centos.x86_64
    cockpit-bridge-141-3.el7.centos.x86_64
    cockpit-storaged-141-3.el7.centos.noarch
    cockpit-networkmanager-141-3.el7.centos.noarch

Thanks
Fernando


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


[ovirt-users] move disk and lv not removed

2017-10-18 Thread Gianluca Cecchi
Hello,
on an FC based environment I have a powered off VM

Select VM --> disks subtab --> select one disk of 20Gb
move

at the end of the move apparently all went ok, but right after the
"finished moving.." event I also get this error event

VDSM host1 command HSMGetAllTasksStatusesVDS failed: Cannot remove Logical
Volume: (['Cannot remove Logical Volume:
(u\'c5d360f5-cd90-4b3e-bdef-924649bfbc5f\',
"[\'2255c544-165b-4126-86ee-70e6d1edef9a\']")'],)

After that I also do the same for another disk of the same VM with size
80Gb and it completes ok, without the same event error.
So the problem doesn't occur always

It seem to me that the old disk (aka old lv) has remained as a left over.
And in fact the source storage domain doesn't show 20Gb of more free
space...
>From the SPM host

# lvs | egrep "VG|2255c544-165b-4126-86ee-70e6d1edef9a"
  LV   VG
 Attr   LSize   Pool   OriginData%  Meta%  Move Log
Cpy%Sync Convert
  2255c544-165b-4126-86ee-70e6d1edef9a 072feb00-bc16-416d-9a23-39bde9cd3a94
-wi---  20.00g

  2255c544-165b-4126-86ee-70e6d1edef9a c5d360f5-cd90-4b3e-bdef-924649bfbc5f
-wi-ao  20.00g

#

So it seems I have both the old LV on the original VG
(2255c544-165b-4126-86ee-70e6d1edef9a) and the LV on the VG related to the
target storage domain

Is there any bug opened for this? How can I clean situation?
Thanks,
Gianluca
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Cockpit oVirt support

2017-10-18 Thread Ryan Barry
This looks great, guys. Congrats!

Does this also work with plain libvirt?

On Wed, Oct 18, 2017 at 3:24 AM, Michal Skrivanek <
michal.skriva...@redhat.com> wrote:

> Hi all,
> I’m happy to announce that we finally finished initial contribution of
> oVirt specific support into the Cockpit management platform
> See below for more details
>
> There are only limited amount of operations you can do at the moment, but
> it may already be interesting for troubleshooting and simple admin actions
> where you don’t want to launch the full blown webadmin UI
>
> Worth noting that if you were ever intimidated by the complexity of the
> GWT UI of oVirt portals and it held you back from contributing, please take
> another look!
>
> Thanks,
> michal
>
> Begin forwarded message:
>
> *From: *Marek Libra 
> *Subject: **Re: Cockpit 153 released*
> *Date: *17 October 2017 at 16:02:59 GMT+2
> *To: *Development discussion for the Cockpit Project  fedorahosted.org>
> *Reply-To: *Development discussion for the Cockpit Project <
> cockpit-de...@lists.fedorahosted.org>
>
> Walk-through video for the new "oVirt Machines" page can be found here:
> https://youtu.be/5i-kshT6c5A
>
> On Tue, Oct 17, 2017 at 12:08 PM, Martin Pitt  wrote:
>
>> http://cockpit-project.org/blog/cockpit-153.html
>>
>> Cockpit is the modern Linux admin interface. We release regularly. Here
>> are the release notes from version 153.
>>
>>
>> Add oVirt package
>> -
>>
>> This version introduces the "oVirt Machines" page on Fedora for
>> controlling
>> oVirt virtual machine clusters.  This code was moved into Cockpit as it
>> shares
>> a lot of code with the existing "Machines" page, which manages virtual
>> machines
>> through libvirt.
>>
>> This feature is packaged in cockpit-ovirt and when installed it will
>> replace
>> the "Machines" page.
>>
>> Thanks to Marek Libra for working on this!
>>
>> Screenshot:
>>
>> http://cockpit-project.org/images/ovirt-overview.png
>>
>> Change: https://github.com/cockpit-project/cockpit/pull/7139
>>
>>
>> Packaging cleanup
>> -
>>
>> This release fixes a lot of small packaging issues that were spotted by
>> rpmlint/lintian.
>>
>> Get it
>> --
>>
>> You can get Cockpit here:
>>
>> http://cockpit-project.org/running.html
>>
>> Cockpit 153 is available in Fedora 27:
>>
>> https://bodhi.fedoraproject.org/updates/cockpit-153-1.fc27
>>
>> Or download the tarball here:
>>
>> https://github.com/cockpit-project/cockpit/releases/tag/153
>>
>>
>> Take care,
>>
>> Martin Pitt
>>
>> ___
>> cockpit-devel mailing list -- cockpit-de...@lists.fedorahosted.org
>> To unsubscribe send an email to cockpit-devel-le...@lists.fedo
>> rahosted.org
>>
>>
>
>
> --
> Marek Libra
>
> senior software engineer
> Red Hat Czech
>
> 
> ___
> cockpit-devel mailing list -- cockpit-de...@lists.fedorahosted.org
> To unsubscribe send an email to cockpit-devel-le...@lists.fedorahosted.org
>
>
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
>


-- 

RYAN BARRY

SENIOR SOFTWARE ENGINEER - TEAM LEAD - RHEV HYPERVISOR

Red Hat NA 

rba...@redhat.comM: +1-651-815-9306 IM: rbarry

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


Re: [ovirt-users] [ovirt-devel] Cockpit oVirt support

2017-10-18 Thread FERNANDO FREDIANI

This is pretty intresting and nice to have.

I tried to find the screenshots and new features to see what the new 
webadmin UI looks like, but not sure if I am searching in the right place.


https://github.com/oVirt/cockpit-machines-ovirt-provider
or
https://www.ovirt.org/develop/release-management/features/integration/cockpit/

Fernando


On 18/10/2017 09:32, Barak Korren wrote:



On 18 October 2017 at 10:24, Michal Skrivanek 
> wrote:


Hi all,
I’m happy to announce that we finally finished initial
contribution of oVirt specific support into the Cockpit management
platform
See below for more details

There are only limited amount of operations you can do at the
moment, but it may already be interesting for troubleshooting and
simple admin actions where you don’t want to launch the full blown
webadmin UI

Worth noting that if you were ever intimidated by the complexity
of the GWT UI of oVirt portals and it held you back from
contributing, please take another look!

Thanks,
michal


Very nice work!

Where is this going? Are all WebAdmin features planned to be supported 
at some point? Its kinda nice to be able to access and manage the 
systems from any one of the hosts instead of having to know where the 
engine is...



--
Barak Korren
RHV DevOps team , RHCE, RHCi
Red Hat EMEA
redhat.com  | TRIED. TESTED. TRUSTED. | 
redhat.com/trusted 



___
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] VM leases errors

2017-10-18 Thread Nir Soffer
On Wed, Oct 18, 2017 at 2:31 PM Alex K  wrote:

> For anyone that might be wondering, this errors disappeared after
> removing/adding the leases.
>
> The tasks were showing still the "Editing VM configuration" as not
> completed.
>
> I removed them by cleaning the tasks from the psql:
>
> Within engine:
>
> su - postgres
> psql
> \c engine
> select * from job order by start_time desc;
> select DeleteJob('');
>
> Alex
>
>
> On Wed, Oct 18, 2017 at 1:07 PM, Alex K  wrote:
>
>> Hi all,
>>
>> While attempting to enable the VM leases for a specific VM I am receiving
>> the following error within the engine.log:
>>
>> 2017-10-18 07:56:03,186Z ERROR
>> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
>> (org.ovirt.thread.pool-6-thread-18) [37c74b60] EVENT_ID:
>> HOT_PLUG_LEASE_FAILED(1,220), Correlation ID: 37c74b60, Job ID:
>> fb7b0b47-3ca1-4588-99b6-2203337bcae5, Call Stack: null, Custom ID: null,
>> Custom Event ID: -1, Message: Failed to hot plug lease to the VM Win-DC.
>> The VM is running without a VM lease.
>> 2017-10-18 07:56:15,162Z ERROR
>> [org.ovirt.engine.core.bll.storage.lease.AddVmLeaseCommand]
>> (org.ovirt.thread.pool-6-thread-12) [37c74b60] Failure in hot plugging a
>> lease to VM 9f9a8be1-c4ed-4de8-a600-a751ae70a76b, message: EngineException:
>> org.ovirt.engine.core.vdsbroker.vdsbroker.VDSErrorException:
>> VDSGenericException: VDSErrorException: Failed to HotPlugLeaseVDS, error =
>> Virtual machine does not exist: {'vmId':
>> u'9f9a8be1-c4ed-4de8-a600-a751ae70a76b'}, code = 1 (Failed with error noVM
>> and code 1)
>>
>> Also the tasks logs at dashboard is showing the "Editing VM
>> configuration" always as running, without the tasks completing.
>>
>
This smells like a bug, please file a bug.

Please include also vdsm log from the host the vm was running in.


>
>> The SPM host does nto lsit any running tasks:
>>
>> vdsClient -s 0 getAllTasksStatuses
>> {'status': {'message': 'OK', 'code': 0}, 'allTasksStatus': {}}
>>
>
Hot plugging a lease does not involve the SPM, this is expected.

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


Re: [ovirt-users] Host fencing issues

2017-10-18 Thread Fernando Fuentes
Yaniv,

Thanks for your reply. I understand and I will upgrade... I am just
stuck on 4.0.x for a few more days and figured I can solve this issue
but it is obvious something is really wrong with this "old" version.

--
Fernando Fuentes
ffuen...@txweather.org
http://www.txweather.org



On Wed, Oct 18, 2017, at 01:52 AM, Yaniv Kaul wrote:
> 
> 
> On Wed, Oct 18, 2017 at 8:09 AM, Fernando Fuentes
>  wrote:>> __
>> Ok I have not collected data yet...
>> I figure I upgraded my engine to the latest revision of the 4.0
>> branch and I did... It actually fix nothing... No matter what I do
>> the hosts continue to experience the same issue Is this a known
>> problem in the 4.0 branch with CentOS7?> 
> The latest revision of 4.x is 4.1.6. There's no '4.0 branch'
> really, once 4.1 was released, and I warmly advise you to upgrade
> to latest 4.1.>  
>> 
>> 
>> I will collect data as soon as I get a chance...
>> 
>> On another note... I was able to bring online a host using the ovirt
>> 4.0 node image, I experience other issues though... I cant seem to
>> migrate VM's out from the node I can migrate VM's in but not
>> out... As if the node is not compatible with the rest of the hosts
>> which run Centos 7 x86_64... Is this hunch correct? can ovirt node
>> work along side with Centos7 hosts?> 
> A separate email thread is preferred, but I assume you have
> connectivity issues on that node, DNS or routing issues.> 
> Yes, a node can work alongside a regular host.
> Y.
>  
>> 
>> 
>> Thoughts and ideas?
>> 
>> 
>> Regards,
>> 
>> --
>> Fernando Fuentes
>> ffuen...@txweather.org
>> http://www.txweather.org
>> 
>> 
>> 
>> 
>> On Mon, Oct 16, 2017, at 02:03 PM, Fernando Fuentes wrote:
>>> Thats right.
>>> I am going to collect the data and report back.
>>> 
>>> Regards,
>>> 
>>> 
>>> --
>>> Fernando Fuentes
>>> ffuen...@txweather.org
>>> http://www.txweather.org
>>> 
>>> 
>>> 
>>> On Mon, Oct 16, 2017, at 10:00 AM, Yaniv Kaul wrote:
 
 
 On Mon, Oct 16, 2017 at 5:21 PM, Fernando Fuentes
  wrote:> __
> Any ideas team?
> :(
 
 I suspect if you've applied the workaround for libvirt
 authentication change and things still don't work, we'll need to
 see the relevant logs to further understand the issue. Y.
 
> 
> 
> 
> 
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
> 
> 
> 
> 
> On Fri, Oct 13, 2017, at 11:47 AM, Fernando Fuentes wrote:
>> Team,
>> 
>> I think I am hitting this bug:
>> 
>> https://gerrit.ovirt.org/#/c/76934/
>> 
>> With that fix libvirtd starts but ovirt still wont bring it
>> online.>> 
>> --
>> Fernando Fuentes
>> ffuen...@txweather.org
>> http://www.txweather.org
>> 
>> 
>> 
>> On Fri, Oct 13, 2017, at 11:42 AM, Fernando Fuentes wrote:
>>> I am getting this all over the logs:
>>> 
>>> https://pastebin.com/5Ua5u2ZA
>>> 
>>> --
>>> Fernando Fuentes
>>> ffuen...@txweather.org
>>> http://www.txweather.org
>>> 
>>> 
>>> 
>>> On Fri, Oct 13, 2017, at 11:30 AM, Fernando Fuentes wrote:
 You where right.
 I was able to start it manually but its still doing the same
 thing after I try to activate the server it fenced the server
 and send a reboot... Here is the status: 
 https://pastebin.com/xbXX8UBX
 
 
 
 --
 Fernando Fuentes
 ffuen...@txweather.org
 http://www.txweather.org
 
 
 
 On Fri, Oct 13, 2017, at 11:00 AM, Dafna Ron wrote:
> this suggests that libvirt is down. 
> can you please check libvirtd service status and get the log
> for it?> 
> 
> Thanks, 
> Dafna
> 
> On 10/13/2017 04:48 PM, Fernando Fuentes wrote:
>> Team,
>> 
>> I went to the log and capture the messages from when the host
>> did the update all the way down to the failure.>> 
>> https://pastebin.com/AwP1gh5g
>> 
>> 
>> I hope that helps narrowing down the issue
>> Ideas, thoughts, and comments are welcome!
>> 
>> Regards,
>> 
>> --
>> Fernando Fuentes
>> ffuen...@txweather.org
>> http://www.txweather.org
>> 
>> 
>> 
>> On Fri, Oct 13, 2017, at 10:03 AM, Fernando Fuentes wrote:
>>> Thanks for your reply.
>>> 
>>> As requested I got this from the messages log:
>>> 
>>> https://pastebin.com/t0HRhvT9
>>> 
>>> This one is from the host engine:
>>> 
>>> https://pastebin.com/8vji6MGs
>>> 
>>> And this one is from the host vdsm:
>>> 
>>> https://pastebin.com/GgnqRvTE
>>> 

Re: [ovirt-users] User cannot create VMs having sufficient permissions to do so

2017-10-18 Thread nicolas

Seems I found out the problem.

This user had a permission as InstanceCreator over a VM. If I remove 
this permission, he can successfully create new VMs.


This seems a bug, not sure if known or not.

Should I file a BZ?

Thanks.

El 2017-10-18 11:04, nico...@devels.es escribió:

Hi,

We're running ovirt-4.1.6.2-1. We have a user that logs into the user
portal and tries to create a VM, but a message claiming that "There is
no Cluster on which you can create a VM. Please check Data Center
status and Cluster permissions." shows up.

However, this user has permissions on the cluster (both VmCreator and
DiskProfileUser, and also has a Quota created on the Cluster which
allows him to create VMs).

When clicking on the 'New VM' button, all we see in the engine.log is:

2017-10-18 10:59:31,825+01 ERROR
[org.ovirt.engine.core.bll.GetAllLabelsQuery] (default task-103)
[c23549c6-37a4-48d7-923d-6618e027cdca] Query execution failed due to
insufficient permissions.

This user has pretty much the same permissions as thousands of users
who can create VMs, but this one can't.

How can we debug what's happening and how to solve it?

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

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


Re: [ovirt-users] [ovirt-devel] Cockpit oVirt support

2017-10-18 Thread Barak Korren
On 18 October 2017 at 10:24, Michal Skrivanek 
wrote:

> Hi all,
> I’m happy to announce that we finally finished initial contribution of
> oVirt specific support into the Cockpit management platform
> See below for more details
>
> There are only limited amount of operations you can do at the moment, but
> it may already be interesting for troubleshooting and simple admin actions
> where you don’t want to launch the full blown webadmin UI
>
> Worth noting that if you were ever intimidated by the complexity of the
> GWT UI of oVirt portals and it held you back from contributing, please take
> another look!
>
> Thanks,
> michal
>


Very nice work!

Where is this going? Are all WebAdmin features planned to be supported at
some point? Its kinda nice to be able to access and manage the systems from
any one of the hosts instead of having to know where the engine is...


-- 
Barak Korren
RHV DevOps team , RHCE, RHCi
Red Hat EMEA
redhat.com | TRIED. TESTED. TRUSTED. | redhat.com/trusted
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] VM leases errors

2017-10-18 Thread Alex K
For anyone that might be wondering, this errors disappeared after
removing/adding the leases.

The tasks were showing still the "Editing VM configuration" as not
completed.

I removed them by cleaning the tasks from the psql:

Within engine:

su - postgres
psql
\c engine
select * from job order by start_time desc;
select DeleteJob('');

Alex


On Wed, Oct 18, 2017 at 1:07 PM, Alex K  wrote:

> Hi all,
>
> While attempting to enable the VM leases for a specific VM I am receiving
> the following error within the engine.log:
>
> 2017-10-18 07:56:03,186Z ERROR [org.ovirt.engine.core.dal.
> dbbroker.auditloghandling.AuditLogDirector] 
> (org.ovirt.thread.pool-6-thread-18)
> [37c74b60] EVENT_ID: HOT_PLUG_LEASE_FAILED(1,220), Correlation ID:
> 37c74b60, Job ID: fb7b0b47-3ca1-4588-99b6-2203337bcae5, Call Stack: null,
> Custom ID: null, Custom Event ID: -1, Message: Failed to hot plug lease to
> the VM Win-DC. The VM is running without a VM lease.
> 2017-10-18 07:56:15,162Z ERROR 
> [org.ovirt.engine.core.bll.storage.lease.AddVmLeaseCommand]
> (org.ovirt.thread.pool-6-thread-12) [37c74b60] Failure in hot plugging a
> lease to VM 9f9a8be1-c4ed-4de8-a600-a751ae70a76b, message:
> EngineException: org.ovirt.engine.core.vdsbroker.vdsbroker.VDSErrorException:
> VDSGenericException: VDSErrorException: Failed to HotPlugLeaseVDS, error =
> Virtual machine does not exist: {'vmId': 
> u'9f9a8be1-c4ed-4de8-a600-a751ae70a76b'},
> code = 1 (Failed with error noVM and code 1)
>
> Also the tasks logs at dashboard is showing the "Editing VM configuration"
> always as running, without the tasks completing.
>
> The SPM host does nto lsit any running tasks:
>
> vdsClient -s 0 getAllTasksStatuses
> {'status': {'message': 'OK', 'code': 0}, 'allTasksStatus': {}}
>
>
> Any ideas?
>
> Than,
> Alex
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] VM leases errors

2017-10-18 Thread Alex K
Hi all,

While attempting to enable the VM leases for a specific VM I am receiving
the following error within the engine.log:

2017-10-18 07:56:03,186Z ERROR
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(org.ovirt.thread.pool-6-thread-18) [37c74b60] EVENT_ID:
HOT_PLUG_LEASE_FAILED(1,220), Correlation ID: 37c74b60, Job ID:
fb7b0b47-3ca1-4588-99b6-2203337bcae5, Call Stack: null, Custom ID: null,
Custom Event ID: -1, Message: Failed to hot plug lease to the VM Win-DC.
The VM is running without a VM lease.
2017-10-18 07:56:15,162Z ERROR
[org.ovirt.engine.core.bll.storage.lease.AddVmLeaseCommand]
(org.ovirt.thread.pool-6-thread-12) [37c74b60] Failure in hot plugging a
lease to VM 9f9a8be1-c4ed-4de8-a600-a751ae70a76b, message: EngineException:
org.ovirt.engine.core.vdsbroker.vdsbroker.VDSErrorException:
VDSGenericException: VDSErrorException: Failed to HotPlugLeaseVDS, error =
Virtual machine does not exist: {'vmId':
u'9f9a8be1-c4ed-4de8-a600-a751ae70a76b'}, code = 1 (Failed with error noVM
and code 1)

Also the tasks logs at dashboard is showing the "Editing VM configuration"
always as running, without the tasks completing.

The SPM host does nto lsit any running tasks:

vdsClient -s 0 getAllTasksStatuses
{'status': {'message': 'OK', 'code': 0}, 'allTasksStatus': {}}


Any ideas?

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


[ovirt-users] User cannot create VMs having sufficient permissions to do so

2017-10-18 Thread nicolas

Hi,

We're running ovirt-4.1.6.2-1. We have a user that logs into the user 
portal and tries to create a VM, but a message claiming that "There is 
no Cluster on which you can create a VM. Please check Data Center status 
and Cluster permissions." shows up.


However, this user has permissions on the cluster (both VmCreator and 
DiskProfileUser, and also has a Quota created on the Cluster which 
allows him to create VMs).


When clicking on the 'New VM' button, all we see in the engine.log is:

2017-10-18 10:59:31,825+01 ERROR 
[org.ovirt.engine.core.bll.GetAllLabelsQuery] (default task-103) 
[c23549c6-37a4-48d7-923d-6618e027cdca] Query execution failed due to 
insufficient permissions.


This user has pretty much the same permissions as thousands of users who 
can create VMs, but this one can't.


How can we debug what's happening and how to solve it?

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


Re: [ovirt-users] [ovirt-devel] Cockpit oVirt support

2017-10-18 Thread Roy Golan
On Wed, 18 Oct 2017 at 10:25 Michal Skrivanek 
wrote:

> Hi all,
> I’m happy to announce that we finally finished initial contribution of
> oVirt specific support into the Cockpit management platform
> See below for more details
>
> There are only limited amount of operations you can do at the moment, but
> it may already be interesting for troubleshooting and simple admin actions
> where you don’t want to launch the full blown webadmin UI
>
> Worth noting that if you were ever intimidated by the complexity of the
> GWT UI of oVirt portals and it held you back from contributing, please take
> another look!
>
> Thanks,
> michal
>
>
Congrats Michal, Marek and team, this is very nice! The unified look & feel
is such a powerful thing (I didn't realize for a while that you left
webadmin).

> Begin forwarded message:
>
> *From: *Marek Libra 
> *Subject: **Re: Cockpit 153 released*
> *Date: *17 October 2017 at 16:02:59 GMT+2
> *To: *Development discussion for the Cockpit Project <
> cockpit-de...@lists.fedorahosted.org>
> *Reply-To: *Development discussion for the Cockpit Project <
> cockpit-de...@lists.fedorahosted.org>
>
> Walk-through video for the new "oVirt Machines" page can be found here:
> https://youtu.be/5i-kshT6c5A
>
> On Tue, Oct 17, 2017 at 12:08 PM, Martin Pitt  wrote:
>
>> http://cockpit-project.org/blog/cockpit-153.html
>>
>> Cockpit is the modern Linux admin interface. We release regularly. Here
>> are the release notes from version 153.
>>
>>
>> Add oVirt package
>> -
>>
>> This version introduces the "oVirt Machines" page on Fedora for
>> controlling
>> oVirt virtual machine clusters.  This code was moved into Cockpit as it
>> shares
>> a lot of code with the existing "Machines" page, which manages virtual
>> machines
>> through libvirt.
>>
>> This feature is packaged in cockpit-ovirt and when installed it will
>> replace
>> the "Machines" page.
>>
>> Thanks to Marek Libra for working on this!
>>
>> Screenshot:
>>
>> http://cockpit-project.org/images/ovirt-overview.png
>>
>> Change: https://github.com/cockpit-project/cockpit/pull/7139
>>
>>
>> Packaging cleanup
>> -
>>
>> This release fixes a lot of small packaging issues that were spotted by
>> rpmlint/lintian.
>>
>> Get it
>> --
>>
>> You can get Cockpit here:
>>
>> http://cockpit-project.org/running.html
>>
>> Cockpit 153 is available in Fedora 27:
>>
>> https://bodhi.fedoraproject.org/updates/cockpit-153-1.fc27
>>
>> Or download the tarball here:
>>
>> https://github.com/cockpit-project/cockpit/releases/tag/153
>>
>>
>> Take care,
>>
>> Martin Pitt
>>
>> ___
>> cockpit-devel mailing list -- cockpit-de...@lists.fedorahosted.org
>> To unsubscribe send an email to
>> cockpit-devel-le...@lists.fedorahosted.org
>>
>>
>
>
> --
> Marek Libra
>
> senior software engineer
> Red Hat Czech
>
> 
> ___
> cockpit-devel mailing list -- cockpit-de...@lists.fedorahosted.org
> To unsubscribe send an email to cockpit-devel-le...@lists.fedorahosted.org
>
>
> ___
> Devel mailing list
> de...@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/devel
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Hosted Engine storage on management IP

2017-10-18 Thread Kasturi Narra
yes, it will do that. Once you have the steps below done you should see
that hosted-storage get sync on gluster network.

1) create a new network with name 'blah'
2) Assign glusternw role to the newly created network
3) Now drag and drop gluster network to the interface with which gluster
trusted pool is connected.

Now when you go to volumes tab and look at hosted-storage volume brick
directory should have the path something like ':/

Hope this helps !!

Thanks
kasturi

On Wed, Oct 18, 2017 at 2:31 PM, TranceWorldLogic . <
tranceworldlo...@gmail.com> wrote:

> Hi,
>
> I saw that vdsm is updating gluster cluster with gluster network IP.
> (in file /var/lib/glusterd/peers/ I can see hostname2 entry)
>
> Will this also make sure hosted-storage get sync on gluster network ?
> Please help me.
>
> Thanks,
> ~Rohit
>
> On Wed, Oct 18, 2017 at 12:39 PM, TranceWorldLogic . <
> tranceworldlo...@gmail.com> wrote:
>
>> "That will take care of syncing the bricks in the UI of hosted-storage
>> gluster volume on gluster network."
>> Sorry, not understood, what do you mean UI here. Would you please explain
>> in detail ?
>>
>> On Wed, Oct 18, 2017 at 12:33 PM, Kasturi Narra 
>> wrote:
>>
>>> Hi,
>>>
>>> You can assign glusternw role to the newly created gluster network
>>>  and associate the interface with which you have configured gluster pool
>>> with gluster network. That will take care of syncing the bricks in the UI
>>> of hosted-storage gluster volume on gluster network.
>>>
>>> Thanks
>>> kasturi
>>>
>>> On Tue, Oct 17, 2017 at 9:59 PM, TranceWorldLogic . <
>>> tranceworldlo...@gmail.com> wrote:
>>>
 Hi,

 I was trying to setup separate gluster network in ovirt.
 But I saw hosted-storage volume which I had created for hosted-engine
 still running on managment network.

 Can I move that hosted-storage gluster volume on gluster network ?

 Thanks,
 ~Rohit

 ___
 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] Hosted Engine storage on management IP

2017-10-18 Thread TranceWorldLogic .
Hi,

I saw that vdsm is updating gluster cluster with gluster network IP.
(in file /var/lib/glusterd/peers/ I can see hostname2 entry)

Will this also make sure hosted-storage get sync on gluster network ?
Please help me.

Thanks,
~Rohit

On Wed, Oct 18, 2017 at 12:39 PM, TranceWorldLogic . <
tranceworldlo...@gmail.com> wrote:

> "That will take care of syncing the bricks in the UI of hosted-storage
> gluster volume on gluster network."
> Sorry, not understood, what do you mean UI here. Would you please explain
> in detail ?
>
> On Wed, Oct 18, 2017 at 12:33 PM, Kasturi Narra  wrote:
>
>> Hi,
>>
>> You can assign glusternw role to the newly created gluster network
>>  and associate the interface with which you have configured gluster pool
>> with gluster network. That will take care of syncing the bricks in the UI
>> of hosted-storage gluster volume on gluster network.
>>
>> Thanks
>> kasturi
>>
>> On Tue, Oct 17, 2017 at 9:59 PM, TranceWorldLogic . <
>> tranceworldlo...@gmail.com> wrote:
>>
>>> Hi,
>>>
>>> I was trying to setup separate gluster network in ovirt.
>>> But I saw hosted-storage volume which I had created for hosted-engine
>>> still running on managment network.
>>>
>>> Can I move that hosted-storage gluster volume on gluster network ?
>>>
>>> Thanks,
>>> ~Rohit
>>>
>>> ___
>>> 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] Hosted Engine storage on management IP

2017-10-18 Thread Kasturi Narra
Hi,

You can assign glusternw role to the newly created gluster network  and
associate the interface with which you have configured gluster pool with
gluster network. That will take care of syncing the bricks in the UI of
hosted-storage gluster volume on gluster network.

Thanks
kasturi

On Tue, Oct 17, 2017 at 9:59 PM, TranceWorldLogic . <
tranceworldlo...@gmail.com> wrote:

> Hi,
>
> I was trying to setup separate gluster network in ovirt.
> But I saw hosted-storage volume which I had created for hosted-engine
> still running on managment network.
>
> Can I move that hosted-storage gluster volume on gluster network ?
>
> Thanks,
> ~Rohit
>
> ___
> 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] Host fencing issues

2017-10-18 Thread Yaniv Kaul
On Wed, Oct 18, 2017 at 8:09 AM, Fernando Fuentes 
wrote:

> Ok I have not collected data yet...
> I figure I upgraded my engine to the latest revision of the 4.0 branch and
> I did... It actually fix nothing... No matter what I do the hosts continue
> to experience the same issue Is this a known problem in the 4.0 branch
> with CentOS7?
>

The latest revision of 4.x is 4.1.6. There's no '4.0 branch' really, once
4.1 was released, and I warmly advise you to upgrade to latest 4.1.


>
> I will collect data as soon as I get a chance...
>
> On another note... I was able to bring online a host using the ovirt 4.0
> node image, I experience other issues though... I cant seem to migrate VM's
> out from the node I can migrate VM's in but not out... As if the node
> is not compatible with the rest of the hosts which run Centos 7 x86_64...
> Is this hunch correct? can ovirt node work along side with Centos7 hosts?
>

A separate email thread is preferred, but I assume you have connectivity
issues on that node, DNS or routing issues.

Yes, a node can work alongside a regular host.
Y.


>
> Thoughts and ideas?
>
> Regards,
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Mon, Oct 16, 2017, at 02:03 PM, Fernando Fuentes wrote:
>
> Thats right.
> I am going to collect the data and report back.
>
> Regards,
>
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Mon, Oct 16, 2017, at 10:00 AM, Yaniv Kaul wrote:
>
>
>
> On Mon, Oct 16, 2017 at 5:21 PM, Fernando Fuentes 
> wrote:
>
>
> Any ideas team?
> :(
>
>
> I suspect if you've applied the workaround for libvirt authentication
> change and things still don't work, we'll need to see the relevant logs to
> further understand the issue.
> Y.
>
>
>
>
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
>
> On Fri, Oct 13, 2017, at 11:47 AM, Fernando Fuentes wrote:
>
> Team,
>
> I think I am hitting this bug:
>
> https://gerrit.ovirt.org/#/c/76934/
>
> With that fix libvirtd starts but ovirt still wont bring it online.
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Fri, Oct 13, 2017, at 11:42 AM, Fernando Fuentes wrote:
>
> I am getting this all over the logs:
>
> https://pastebin.com/5Ua5u2ZA
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Fri, Oct 13, 2017, at 11:30 AM, Fernando Fuentes wrote:
>
> You where right.
> I was able to start it manually but its still doing the same thing after I
> try to activate the server it fenced the server and send a reboot... Here
> is the status:
>
> https://pastebin.com/xbXX8UBX
>
>
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Fri, Oct 13, 2017, at 11:00 AM, Dafna Ron wrote:
>
> this suggests that libvirt is down.
> can you please check libvirtd service status and get the log for it?
>
>
> Thanks,
> Dafna
>
> On 10/13/2017 04:48 PM, Fernando Fuentes wrote:
>
> Team,
>
> I went to the log and capture the messages from when the host did the
> update all the way down to the failure.
>
> https://pastebin.com/AwP1gh5g
>
>
> I hope that helps narrowing down the issue
> Ideas, thoughts, and comments are welcome!
>
> Regards,
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Fri, Oct 13, 2017, at 10:03 AM, Fernando Fuentes wrote:
>
> Thanks for your reply.
>
> As requested I got this from the messages log:
>
> https://pastebin.com/t0HRhvT9
>
> This one is from the host engine:
>
> https://pastebin.com/8vji6MGs
>
> And this one is from the host vdsm:
>
> https://pastebin.com/GgnqRvTE
>
> The funny part is that right when I did the update it seems that vdsm died
> and there is no log after the update.
>
> On the messages lo you can see the errors and the attempts of me trying to
> restart  manually but it dies.
>
> Any ideas?
>
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
> http://www.txweather.org
>
>
>
> On Fri, Oct 13, 2017, at 01:42 AM, Tomas Jelinek wrote:
>
> can you please provide some logs to the issue?
> /var/log/ovirt-engine/engine.log from engine machine and
> /var/log/vdsm/vdsm.log from the affected host would be great start.
>
> thank you
>
> On Fri, Oct 13, 2017 at 2:47 AM, Fernando Fuentes 
> wrote:
>
> Hello Team,
>
> I updated one of my host on my cluster and after it finish and try to
> activate the host it quickly claimed that the host was unresponsive and
> it fenced the host... Now every time I try to activate the host it
> clames that is unresponsive and proceeds to fence it... This was not
> happening before the update
> The host is reachable with no problems nor issues...
>
> Any ideas?
>
> Centos 7.4 x86_64 host.
> Attached is the vdsm log
>
> engine is oVirt Engine Version: 4.0.2.6-1.el7.centos
>
> Regards,
>
> --
> Fernando Fuentes
> ffuen...@txweather.org
>