remote-viewer from admin vs user portal
by Gianluca Cecchi
Hello,
I have the impression that there is a different behavior between admin and
user portal when opening a VM console with remote-viewer.
My client is an updated CentOS 7 machine and I'm using firefox on it to
connect to oVirt 4.0.4 portals.
If I connect to a VM (that is a Fedora 24 os) from web admin it runs
remote-viewer.
I switch to full screen mode and leave it some hours.
When I come back I see a black screen and I'm not able to re-get the
session.
I can click on top center to pop up the menu and exit the remote-viewer
full screen but also in window mode I'm not able to get again the desktop
environment inside the VM (I configured Mate desktop in fedora 24 VM): it
remains black window. The VM itsel is ok: I can close the remote-viewer
window and open again the console and I get the desktop environment.
Instead from User Portal on the same client I can open the console (again
remote-viewer), leave the session in full screen mode and come back many
hours later and as soon as I click or press a key I get the session ok
(sometimes actually I get the screen saver locked of the client desktop
environment itself, but as soon as I unlock it I can connec thent to the VM
desktop).
Any special reason for this?
In both cases the command seems the same:
admin portal:
$ ps -ef|grep remote-viewer
g.cecchi 10356 9462 0 18:59 pts/1 00:00:00 grep --color=auto
remote-viewer
g.cecchi 16814 20129 0 01:30 ? 00:00:54 /usr/bin/remote-viewer
/tmp/mozilla_g.cecchi0/console.vv
user portal (extended mode)
$ ps -ef|grep remote-viewer
g.cecchi 11544 20129 0 19:02 ? 00:01:18 /usr/bin/remote-viewer
/tmp/mozilla_g.cecchi0/console.vv
g.cecchi 23534 9462 0 22:54 pts/1 00:00:00 grep --color=auto
remote-viewer
Not a big problem, but quite strange.
Gianluca
7 years, 11 months
can't import vm from KVM host
by Nelson Lameiras
Hello,
I'm trying to import virtual machines from a KVM host (centos 7.2) to an oVirt 4.0.2 Cluster using the "import" feature on GUI.
If the original VM is using RAW/QCOW2 files as storage, everything works fine.
But if the original VM is using a special block special device as storage (like a LVM or SAN volume), it's simply not recognized.
The VM does appear in the import list of the KVM host, but it's disk count is 0!
Is this a known technical obstacle or am I doing something wrong ?
below is the storage part of the xml describing the original VM :
<disk type='block' device='disk'>
<driver name='qemu' type='raw' cache='none' io='native'/>
<source dev='/dev/mapper/vg_01-lv_sys'/>
<target dev='vda' bus='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/>
</disk>
<disk type='block' device='disk'>
<driver name='qemu' type='raw' cache='none' io='native'/>
<source dev='/dev/sdc'/>
<target dev='vdb' bus='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/>
</disk>
We have hundreds of virtual machines in production with this type of configuration... How can we migrate them safely to oVirt?
thanks
Nelson
7 years, 11 months
Unexpected behaviour during creating VM using oVirt API
by Roman Chukov
Hello,
I am trying to create a virtual machine from a template using oVirt
API. Somehow like this:
---
def createVM(connection, cluster, vmname, vmtemplate):
try:
param = params.VM( name=vmname, \
cluster=connection.clusters.get(name=cluster), \
template=connection.templates.get(name=vmtemplate), \
use_latest_template_version = True )
except:
print "Could not construct a request to oVirtapi,please check parameters which were being sent to"
return None
try:
connection.vms.add(param)
except:
print "I was not able to commit my request into oVirt api."
return None
return "OK"
---
Everything is fine when I have only ONE version of a template. But I am
used to create several number of versions for one template because it
is quite flexible. In this case, when I run my script, I receive an
"AmbiguousQueryError" error even if an option
"use_latest_template_version = True" is used.
I revised
file /usr/lib/python2.7/site-packages/ovirtsdk/utils/filterhelper.py
and found near line 30 that this error is raised unquestionably:
--
if len(result) > 1:
raise AmbiguousQueryError(query)
return result[0] if result else None
--
It seems quite strange. Either I do not understand the meaning of
option "use_latest_template_version" or using of this option does not
make sense, I mean query constructed in params.VM() function will not
be passed by filterhelper.py in current implementation.
I made a small patch that allows me to use the latest
version of the template during VM creation:
--
if len(result) > 1 :
result = result[len(result) - 1]
return result
#raise AmbiguousQueryError(query)
return result[0] if result else Nonepython-2.7.5-34.el7.x86_64
--
But I am still not sure that original behaviour of filehelper.py is
unexpectable. I would be very pleasant if you explain me this issue.
My OS is CentOS 7. I use Python python-2.7.5-34.el7.x86_64. Version of
ovirt-engine-sdk is ovirt-engine-sdk-python-3.6.8.0-1.el7.centos.noarch
--
Thanks in advance, Roman A. Chukov.
https://asgardahost.org
8 years
Cannot Migrate Hosted Engine
by knarra
This is a multi-part message in MIME format.
--------------651BD8646697326B808E7677
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Hi,
I have installed latest upstream master on RHEL7.2. When i try to
put a host in maintenance which runs HE vm i see that vm does not get
migrated to another host and host is stuck in "preparing for maintenace"
state. I see the following errors in the vdsm.log . Can you please help
me understand why this error is seen?
1.
2016-10-27 16:40:22,742 ERROR (Thread-3293) [virt.vm]
(vmId='21e0e248-19bf-47b3-b72f-6a3740d9ff43') Hook script execution
failed: internal error: Child process (LC_ALL=C PAT
2.
H=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
/etc/libvirt/hooks/qemu HostedEngine migrate begin -) unexpected
exit status 1: Traceback (most recent call last):
3.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main
4.
_process_domxml(tree)
5.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 80, in
_process_domxml
6.
_set_graphics(devices, target_vm_conf)
7.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 156, in
_set_graphics
8.
target_display_network, target_display_ip =
_vmconf_display(target_vm_conf)
9.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 177, in
_vmconf_display
10.
raise VmMigrationHookError('VM conf graphics not detected')
11.
VmMigrationHookError: VM conf graphics not detected
12.
Traceback (most recent call last):
13.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 201, in <module>
14.
main(*sys.argv[1:])
15.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main
16.
_process_domxml(tree)
17.
File "/usr/libexec/vdsm/vm_migrate_hoo (migration:261)
18.
2016-10-27 16:40:22,757 ERROR (Thread-3293) [virt.vm]
(vmId='21e0e248-19bf-47b3-b72f-6a3740d9ff43') Failed to migrate
(migration:390)
19.
Traceback (most recent call last):
20.
File "/usr/share/vdsm/virt/migration.py", line 372, in run
21.
self._startUnderlyingMigration(time.time())
22.
File "/usr/share/vdsm/virt/migration.py", line 447, in
_startUnderlyingMigration
23.
self._perform_with_downtime_thread(duri, muri)
24.
File "/usr/share/vdsm/virt/migration.py", line 498, in
_perform_with_downtime_thread
25.
self._perform_migration(duri, muri)
26.
File "/usr/share/vdsm/virt/migration.py", line 485, in
_perform_migration
27.
self._vm._dom.migrateToURI3(duri, params, flags)
28.
File "/usr/lib/python2.7/site-packages/vdsm/virt/virdomain.py",
line 69, in f
29.
ret = attr(*args, **kwargs)
30.
File
"/usr/lib/python2.7/site-packages/vdsm/libvirtconnection.py", line
123, in wrapper
31.
ret = f(*args, **kwargs)
32.
File "/usr/lib/python2.7/site-packages/vdsm/utils.py", line 899,
in wrapper
33.
return func(inst, *args, **kwargs)
34.
File "/usr/lib64/python2.7/site-packages/libvirt.py", line 1836,
in migrateToURI3
35.
:
36.
if ret == -1: raise libvirtError ('virDomainMigrateToURI3()
failed', dom=self)
37.
libvirtError: Hook script execution failed: internal error: Child
process (LC_ALL=C
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
/etc/libvirt/hooks/qemu HostedEngine migrate begin -) unexpected
exit status 1: Traceback (most recent call last):
38.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main
39.
_process_domxml(tree)
40.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 80, in
_process_domxml
41.
_set_graphics(devices, target_vm_conf)
42.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 156, in
_set_graphics
43.
target_display_network, target_display_ip =
_vmconf_display(target_vm_conf)
44.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 177, in
_vmconf_display
45.
raise VmMigrationHookError('VM conf graphics not detected')
46.
VmMigrationHookError: VM conf graphics not detected
47.
Traceback (most recent call last):
48.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 201, in <module>
49.
main(*sys.argv[1:])
50.
File "/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main
51.
_process_domxml(tree)
52.
File "/usr/libexec/vdsm/vm_migrate_hoo
Thanks
kasturi.
--------------651BD8646697326B808E7677
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 8bit
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p>Hi,</p>
<p> I have installed latest upstream master on RHEL7.2. When i
try to put a host in maintenance which runs HE vm i see that vm
does not get migrated to another host and host is stuck in
"preparing for maintenace" state. I see the following errors in
the vdsm.log . Can you please help me understand why this error is
seen? <br>
</p>
<p>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</p>
<ol style="color: rgb(0, 0, 0); font-family: "Liberation
Sans", "Lucida Grande", "Luxi Sans",
"Bitstream Vera Sans", helvetica, verdana, arial,
sans-serif; font-size: 12px; font-style: normal;
font-variant-ligatures: normal; font-variant-caps: normal;
font-weight: normal; letter-spacing: normal; line-height: normal;
orphans: 2; text-align: left; text-indent: 0px; text-transform:
none; white-space: normal; widows: 2; word-spacing: 0px;
-webkit-text-stroke-width: 0px; background-color: rgb(255, 255,
255);">
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">2016-10-27
16:40:22,742 ERROR (Thread-3293) [virt.vm]
(vmId='21e0e248-19bf-47b3-b72f-6a3740d9ff43') Hook script
execution failed: internal error: Child process (LC_ALL=C PAT</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">H=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
/etc/libvirt/hooks/qemu HostedEngine migrate begin -)
unexpected exit status 1: Traceback (most recent call last):</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
_process_domxml(tree)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 80, in
_process_domxml</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
_set_graphics(devices, target_vm_conf)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 156, in
_set_graphics</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
target_display_network, target_display_ip =
_vmconf_display(target_vm_conf)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 177, in
_vmconf_display</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
raise VmMigrationHookError('VM conf graphics not detected')</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">VmMigrationHookError:
VM conf graphics not detected</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">Traceback
(most recent call last):</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 201, in
<module></div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
main(*sys.argv[1:])</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
_process_domxml(tree)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hoo (migration:261)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">2016-10-27
16:40:22,757 ERROR (Thread-3293) [virt.vm]
(vmId='21e0e248-19bf-47b3-b72f-6a3740d9ff43') Failed to
migrate (migration:390)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">Traceback
(most recent call last):</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/share/vdsm/virt/migration.py", line 372, in run</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
self._startUnderlyingMigration(time.time())</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/share/vdsm/virt/migration.py", line 447, in
_startUnderlyingMigration</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
self._perform_with_downtime_thread(duri, muri)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/share/vdsm/virt/migration.py", line 498, in
_perform_with_downtime_thread</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
self._perform_migration(duri, muri)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/share/vdsm/virt/migration.py", line 485, in
_perform_migration</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
self._vm._dom.migrateToURI3(duri, params, flags)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/lib/python2.7/site-packages/vdsm/virt/virdomain.py",
line 69, in f</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> ret
= attr(*args, **kwargs)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/lib/python2.7/site-packages/vdsm/libvirtconnection.py",
line 123, in wrapper</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> ret
= f(*args, **kwargs)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/lib/python2.7/site-packages/vdsm/utils.py", line 899, in
wrapper</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
return func(inst, *args, **kwargs)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/lib64/python2.7/site-packages/libvirt.py", line 1836, in
migrateToURI3</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">:</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> if
ret == -1: raise libvirtError ('virDomainMigrateToURI3()
failed', dom=self)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">libvirtError:
Hook script execution failed: internal error: Child process
(LC_ALL=C
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
/etc/libvirt/hooks/qemu HostedEngine migrate begin -)
unexpected exit status 1: Traceback (most recent call last):</div>
</li>
<li style="font-weight: normal; vertical-align: top; background:
rgb(240, 240, 240);">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
_process_domxml(tree)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 80, in
_process_domxml</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
_set_graphics(devices, target_vm_conf)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 156, in
_set_graphics</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
target_display_network, target_display_ip =
_vmconf_display(target_vm_conf)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 177, in
_vmconf_display</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
raise VmMigrationHookError('VM conf graphics not detected')</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">VmMigrationHookError:
VM conf graphics not detected</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">Traceback
(most recent call last):</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 201, in
<module></div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
main(*sys.argv[1:])</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hook.py", line 51, in main</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;">
_process_domxml(tree)</div>
</li>
<li style="font-weight: normal; vertical-align: top;">
<div style="font-style: normal; font-variant: normal;
font-weight: normal; font-stretch: normal; font-size: 1em;
line-height: 1.2em; font-family: monospace; margin: 0px;
padding: 0px; vertical-align: top; background: none;"> File
"/usr/libexec/vdsm/vm_migrate_hoo</div>
</li>
</ol>
<p>Thanks</p>
<p>kasturi.<br>
</p>
</body>
</html>
--------------651BD8646697326B808E7677--
8 years
Uncaught exception occurred. Cannot read property 'f' of null
by Jorick Astrego
This is a multi-part message in MIME format.
--------------E3265EB9524CB4458A4C62ED
Content-Type: text/plain;
charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Hi=2C
We have ovirt connected to our freeipa domain=2E Things work fine=20
generally=2C but once in a while I get the following error pop up in the ui=
=3A
Uncaught exception occurred=2E Please try reloading the page=2E Details=
=3A
Exception caught=3A Exception caught=3A =28TypeError=29 =5F=5Fgwt=24exc=
eption=3A
=3Cskipped=3E=3A Cannot read property =27f=27 of null
Please have your administrator check the UI logs
The log that goes with it=3A
2016-10-17 16=3A31=3A32=2C578 ERROR=20
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteLogging=
Service=5D=20
=28default task-21=29 =5B=5D Permutation name=3A 430985F23DFC1C8BE1C7FDD91E=
DAA785
2016-10-17 16=3A31=3A32=2C578 ERROR=20
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteLogging=
Service=5D=20
=28default task-21=29 =5B=5D Uncaught exception=3A =3A=20
com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exception caught=
=3A=20
Exception caught=3A =28TypeError=29
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27f=27 of=
null
at=20
Unknown=2Eps=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=29=20
at=20
Unknown=2Exs=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2EC3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EF3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EP2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40117=29=20
at=20
Unknown=2Ehwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2Etwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40162=29=20
at=20
Unknown=2Exwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4014293=29=20
at=20
Unknown=2EKVe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=401172=29=20
at=20
Unknown=2EyUe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4033=29=20
at Unknown=2Eviy=28=3Canonymous=3E=4053=29 at Unknown=2EPiy=28=3Canonymo=
us=3E=4018587=29 =20
at=20
Unknown=2EzOr=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40189=29=20
at=20
Unknown=2E=24to=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadm=
in/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40311=29=20
at=20
Unknown=2EVBo=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=402599=29=20
at=20
Unknown=2EmCo=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408942=29=20
at=20
Unknown=2EqRn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40116=29=20
at=20
Unknown=2EtRn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40568=29=20
at=20
Unknown=2EkVn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=29=20
at=20
Unknown=2EnVn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4025943=29=20
at=20
Unknown=2EcUn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40150=29=20
at=20
Unknown=2EfUn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4024587=29=20
at=20
Unknown=2EKJe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4021125=29=20
at=20
Unknown=2EIzk=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4010384=29=20
at=20
Unknown=2EP3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40137=29=20
at=20
Unknown=2Eg4=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408271=29=20
at=20
Unknown=2E=3Canonymous=3E=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-eng=
ine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4065=29=20
at=20
Unknown=2E=5Ft=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4029=29=20
at=20
Unknown=2Edu=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4057=29=20
at=20
Unknown=2E=3Canonymous=3E=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-eng=
ine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4054=29Caused=
=20
by=3A com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exception=
caught=3A=20
=28TypeError=29
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27f=27 of=
null
at=20
Unknown=2Eps=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=29=20
at=20
Unknown=2Exs=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2EC3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EF3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EI2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4086=29=20
at=20
Unknown=2ElNx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4044=29=20
at=20
Unknown=2EPMx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4083=29=20
at=20
Unknown=2EZMx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=405765=29=20
at=20
Unknown=2Egwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4013988=29=20
at=20
Unknown=2Ex=24=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=404001=29=20
at=20
Unknown=2EZ2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=29=20
at=20
Unknown=2EP2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4059=29=20
=2E=2E=2E 25 more
Caused by=3A com=2Egoogle=2Egwt=2Ecore=2Eclient=2EJavaScriptException=3A=20=
=28TypeError=29
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27f=27 of=
null
at=20
Unknown=2EKds=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2EhNx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=29=20
at=20
Unknown=2EjNx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=406015=29=20
at=20
Unknown=2Ex=24=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=404001=29=20
at=20
Unknown=2EZ2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=29=20
at=20
Unknown=2EI2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4028=29=20
=2E=2E=2E 32 more
2016-10-18 11=3A37=3A38=2C018 ERROR=20
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteLogging=
Service=5D=20
=28default task-31=29 =5B=5D Permutation name=3A 430985F23DFC1C8BE1C7FDD91E=
DAA785
2016-10-18 11=3A37=3A38=2C019 ERROR=20
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteLogging=
Service=5D=20
=28default task-31=29 =5B=5D Uncaught exception=3A =3A=20
com=2Egoogle=2Egwt=2Ecore=2Eclient=2EJavaScriptException=3A =28TypeError=29=
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27F=27 of=
null
at=20
Unknown=2EiQo=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=409744=29=20
at=20
Unknown=2EkRn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4084=29=20
at=20
Unknown=2EnRn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40438=29=20
at=20
Unknown=2EeVn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4040=29=20
at=20
Unknown=2EhVn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4025827=29=20
at=20
Unknown=2EcUn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40180=29=20
at=20
Unknown=2EfUn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4024587=29=20
at=20
Unknown=2EKJe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4021125=29=20
at=20
Unknown=2EIzk=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4010384=29=20
at=20
Unknown=2EP3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40137=29=20
at=20
Unknown=2Eg4=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408271=29=20
at=20
Unknown=2E=3Canonymous=3E=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-eng=
ine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4065=29=20
at=20
Unknown=2E=5Ft=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4029=29=20
at=20
Unknown=2Edu=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4057=29=20
at=20
Unknown=2E=3Canonymous=3E=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-eng=
ine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4054=29
2016-10-18 15=3A37=3A44=2C405 ERROR=20
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteLogging=
Service=5D=20
=28default task-8=29 =5B=5D Permutation name=3A 430985F23DFC1C8BE1C7FDD91ED=
AA785
2016-10-18 15=3A37=3A44=2C406 ERROR=20
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteLogging=
Service=5D=20
=28default task-8=29 =5B=5D Uncaught exception=3A =3A=20
com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exception caught=
=3A=20
Exception caught=3A =28TypeError=29
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27f=27 of=
null
at=20
Unknown=2Eps=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=29=20
at=20
Unknown=2Exs=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2EC3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EF3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EP2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40117=29=20
at=20
Unknown=2Ehwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2Etwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40162=29=20
at=20
Unknown=2Exwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4014293=29=20
at=20
Unknown=2EKVe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=401172=29=20
at=20
Unknown=2EyUe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4033=29=20
at Unknown=2Eviy=28=3Canonymous=3E=4053=29 at Unknown=2EPiy=28=3Canonymo=
us=3E=4018587=29 =20
at=20
Unknown=2EzOr=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40189=29=20
at=20
Unknown=2E=24to=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadm=
in/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40311=29=20
at=20
Unknown=2EVBo=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=402599=29=20
at=20
Unknown=2EmCo=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408942=29=20
at=20
Unknown=2EqRn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40116=29=20
at=20
Unknown=2EtRn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40568=29=20
at=20
Unknown=2EkVn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=29=20
at=20
Unknown=2EnVn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4025943=29=20
at=20
Unknown=2EcUn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40150=29=20
at=20
Unknown=2EfUn=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4024587=29=20
at=20
Unknown=2EKJe=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4021125=29=20
at=20
Unknown=2EIzk=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4010384=29=20
at=20
Unknown=2EP3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40137=29=20
at=20
Unknown=2Eg4=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408271=29=20
at=20
Unknown=2E=3Canonymous=3E=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-eng=
ine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4065=29=20
at=20
Unknown=2E=5Ft=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4029=29=20
at=20
Unknown=2Edu=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4057=29=20
at=20
Unknown=2E=3Canonymous=3E=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-eng=
ine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4054=29Caused=
=20
by=3A com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exception=
caught=3A=20
=28TypeError=29
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27f=27 of=
null
at=20
Unknown=2Eps=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=29=20
at=20
Unknown=2Exs=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2EC3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EF3=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=29=20
at=20
Unknown=2EI2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4086=29=20
at=20
Unknown=2ElNx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4044=29=20
at=20
Unknown=2EPMx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4083=29=20
at=20
Unknown=2EZMx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=405765=29=20
at=20
Unknown=2Egwf=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4013988=29=20
at=20
Unknown=2Ex=24=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=404001=29=20
at=20
Unknown=2EZ2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=29=20
at=20
Unknown=2EP2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4059=29=20
=2E=2E=2E 25 more
Caused by=3A com=2Egoogle=2Egwt=2Ecore=2Eclient=2EJavaScriptException=3A=20=
=28TypeError=29
=5F=5Fgwt=24exception=3A =3Cskipped=3E=3A Cannot read property =27f=27 of=
null
at=20
Unknown=2EKds=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=29=20
at=20
Unknown=2EhNx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=29=20
at=20
Unknown=2EjNx=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin=
/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=406015=29=20
at=20
Unknown=2Ex=24=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmi=
n/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=404001=29=20
at=20
Unknown=2EZ2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=29=20
at=20
Unknown=2EI2=28https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/=
430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4028=29=20
=2E=2E=2E 32 more
Met vriendelijke groet=2C With kind regards=2C
Jorick Astrego
Netbulae Virtualization Experts=20
----------------
=09Tel=3A 053 20 30 270 =09info=40netbulae=2Eeu =09Staalsteden 4-3A =09KvK=
08198180
=09Fax=3A 053 20 30 271 =09www=2Enetbulae=2Eeu =097547 TA Enschede =09BTW=
NL821234584B01
----------------
--------------E3265EB9524CB4458A4C62ED
Content-Type: text/html;
charset="utf-8"
Content-Transfer-Encoding: quoted-printable
=3Chtml=3E
=3Chead=3E
=3Cmeta http-equiv=3D=22content-type=22 content=3D=22text/html=3B chars=
et=3Dutf-8=22=3E
=3C/head=3E
=3Cbody text=3D=22=23000000=22 bgcolor=3D=22=23FFFFFF=22=3E
=3Cp=3EHi=2C =3Cbr=3E
=3C/p=3E
=3Cp=3EWe have ovirt connected to our freeipa domain=2E Things work fin=
e
generally=2C but once in a while I get the following error pop up in=
the ui=3A=3Cbr=3E
=3C/p=3E
=3Cblockquote=3E
=3Cp=3EUncaught exception occurred=2E Please try reloading the page=
=2E
Details=3A Exception caught=3A Exception caught=3A =28TypeError=29=
=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read pro=
perty =27f=27 of
null=3Cbr=3E
Please have your administrator check the UI logs=3Cbr=3E
=3C/p=3E
=3C/blockquote=3E
=3Cp=3EThe log that goes with it=3A=3Cbr=3E
=3C/p=3E
=3Cp=3E2016-10-17 16=3A31=3A32=2C578 ERROR
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteL=
oggingService=5D
=28default task-21=29 =5B=5D Permutation name=3A
430985F23DFC1C8BE1C7FDD91EDAA785=3Cbr=3E
2016-10-17 16=3A31=3A32=2C578 ERROR
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteL=
oggingService=5D
=28default task-21=29 =5B=5D Uncaught exception=3A =3A
com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exception=
caught=3A
Exception caught=3A =28TypeError=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27f=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2Eps=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=403837=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Exs=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EC3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EF3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40117=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40117=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Ehwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Etwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40162=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40162=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Exwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4014293=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4014=
293=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EKVe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=401172=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40117=
2=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EyUe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4033=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4033=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at Unknown=2Eviy=28=26lt=3Banonymous=26gt=3B=4053=29=C2=A0=C2=A0=
=C2=A0 at
Unknown=2EPiy=28=26lt=3Banonymous=26gt=3B=4018587=29=C2=A0=C2=A0=
=C2=A0 at
Unknown=2EzOr=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40189=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40189=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=24to=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=40311=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etes=
t/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403=
11=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EVBo=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=402599=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40259=
9=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EmCo=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=408942=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40894=
2=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EqRn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40116=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40116=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EtRn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40568=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40568=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EkVn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4074=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EnVn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4025943=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4025=
943=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EcUn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40150=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40150=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EfUn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4024587=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4024=
587=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EKJe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4021125=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4021=
125=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EIzk=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4010384=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4010=
384=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40137=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40137=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Eg4=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=408271=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408271=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=26lt=3Banonymous=26gt=3B=28=3Ca class=3D=22moz-txt-link-freetext=
=22 href=3D=22https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/4=
30985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4065=22=3Ehttps=3A//ovirttes=
t=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=
=2Ecache=2Ehtml=4065=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=5Ft=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=4029=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4029=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Edu=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4057=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4057=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=26lt=3Banonymous=26gt=3B=28=3Ca class=3D=22moz-txt-link-freetext=
=22 href=3D=22https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/4=
30985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4054=22=3Ehttps=3A//ovirttes=
t=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=
=2Ecache=2Ehtml=4054=3C/a=3E=29Caused
by=3A com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exce=
ption
caught=3A =28TypeError=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27f=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2Eps=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=403837=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Exs=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EC3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EF3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EI2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4086=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4086=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2ElNx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4044=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4044=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EPMx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4083=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4083=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EZMx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=405765=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40576=
5=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Egwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4013988=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4013=
988=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Ex=24=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=404001=22=3Ehttps=3A//ovirttest=2Enetbulae=2Ete=
st/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40=
4001=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EZ2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40209=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4059=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4059=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
=2E=2E=2E 25 more=3Cbr=3E
Caused by=3A com=2Egoogle=2Egwt=2Ecore=2Eclient=2EJavaScriptException=
=3A
=28TypeError=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27f=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2EKds=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EhNx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4074=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EjNx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=406015=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40601=
5=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Ex=24=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=404001=22=3Ehttps=3A//ovirttest=2Enetbulae=2Ete=
st/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40=
4001=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EZ2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40209=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EI2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4028=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4028=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
=2E=2E=2E 32 more=3Cbr=3E
=3Cbr=3E
2016-10-18 11=3A37=3A38=2C018 ERROR
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteL=
oggingService=5D
=28default task-31=29 =5B=5D Permutation name=3A
430985F23DFC1C8BE1C7FDD91EDAA785=3Cbr=3E
2016-10-18 11=3A37=3A38=2C019 ERROR
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteL=
oggingService=5D
=28default task-31=29 =5B=5D Uncaught exception=3A =3A
com=2Egoogle=2Egwt=2Ecore=2Eclient=2EJavaScriptException=3A =28TypeEr=
ror=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27F=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2EiQo=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=409744=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40974=
4=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EkRn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4084=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4084=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EnRn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40438=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40438=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EeVn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4040=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4040=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EhVn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4025827=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4025=
827=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EcUn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40180=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40180=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EfUn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4024587=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4024=
587=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EKJe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4021125=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4021=
125=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EIzk=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4010384=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4010=
384=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40137=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40137=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Eg4=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=408271=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408271=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=26lt=3Banonymous=26gt=3B=28=3Ca class=3D=22moz-txt-link-freetext=
=22 href=3D=22https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/4=
30985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4065=22=3Ehttps=3A//ovirttes=
t=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=
=2Ecache=2Ehtml=4065=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=5Ft=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=4029=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4029=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Edu=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4057=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4057=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=26lt=3Banonymous=26gt=3B=28=3Ca class=3D=22moz-txt-link-freetext=
=22 href=3D=22https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/4=
30985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4054=22=3Ehttps=3A//ovirttes=
t=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=
=2Ecache=2Ehtml=4054=3C/a=3E=29=3Cbr=3E
=3Cbr=3E
2016-10-18 15=3A37=3A44=2C405 ERROR
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteL=
oggingService=5D
=28default task-8=29 =5B=5D Permutation name=3A
430985F23DFC1C8BE1C7FDD91EDAA785=3Cbr=3E
2016-10-18 15=3A37=3A44=2C406 ERROR
=5Borg=2Eovirt=2Eengine=2Eui=2Efrontend=2Eserver=2Egwt=2EOvirtRemoteL=
oggingService=5D
=28default task-8=29 =5B=5D Uncaught exception=3A =3A
com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exception=
caught=3A
Exception caught=3A =28TypeError=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27f=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2Eps=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=403837=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Exs=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EC3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EF3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40117=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40117=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Ehwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Etwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40162=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40162=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Exwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4014293=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4014=
293=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EKVe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=401172=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40117=
2=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EyUe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4033=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4033=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at Unknown=2Eviy=28=26lt=3Banonymous=26gt=3B=4053=29=C2=A0=C2=A0=
=C2=A0 at
Unknown=2EPiy=28=26lt=3Banonymous=26gt=3B=4018587=29=C2=A0=C2=A0=
=C2=A0 at
Unknown=2EzOr=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40189=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40189=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=24to=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=40311=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etes=
t/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403=
11=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EVBo=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=402599=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40259=
9=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EmCo=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=408942=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40894=
2=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EqRn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40116=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40116=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EtRn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40568=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40568=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EkVn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4074=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EnVn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4025943=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4025=
943=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EcUn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=40150=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40150=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EfUn=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4024587=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4024=
587=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EKJe=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4021125=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4021=
125=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EIzk=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4010384=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4010=
384=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40137=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40137=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Eg4=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=408271=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=408271=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=26lt=3Banonymous=26gt=3B=28=3Ca class=3D=22moz-txt-link-freetext=
=22 href=3D=22https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/4=
30985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4065=22=3Ehttps=3A//ovirttes=
t=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=
=2Ecache=2Ehtml=4065=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=5Ft=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=4029=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4029=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Edu=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4057=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4057=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2E=26lt=3Banonymous=26gt=3B=28=3Ca class=3D=22moz-txt-link-freetext=
=22 href=3D=22https=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/4=
30985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4054=22=3Ehttps=3A//ovirttes=
t=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=
=2Ecache=2Ehtml=4054=3C/a=3E=29Caused
by=3A com=2Egoogle=2Egwt=2Eevent=2Eshared=2EUmbrellaException=3A Exce=
ption
caught=3A =28TypeError=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27f=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2Eps=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=403837=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/o=
virt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=403837=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Exs=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EC3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EF3=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4019=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4019=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EI2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4086=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4086=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2ElNx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4044=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4044=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EPMx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4083=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4083=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EZMx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=405765=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40576=
5=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Egwf=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4013988=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest=
/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4013=
988=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Ex=24=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=404001=22=3Ehttps=3A//ovirttest=2Enetbulae=2Ete=
st/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40=
4001=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EZ2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40209=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EP2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4059=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4059=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
=2E=2E=2E 25 more=3Cbr=3E
Caused by=3A com=2Egoogle=2Egwt=2Ecore=2Eclient=2EJavaScriptException=
=3A
=28TypeError=29 =3Cbr=3E
=C2=A0=5F=5Fgwt=24exception=3A =26lt=3Bskipped=26gt=3B=3A Cannot read=
property =27f=27 of
null=3Cbr=3E
=C2=A0=C2=A0=C2=A0 at
Unknown=2EKds=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4041=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4041=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EhNx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=4074=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4074=3C=
/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EjNx=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A=
//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD=
91EDAA785=2Ecache=2Ehtml=406015=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/=
ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40601=
5=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2Ex=24=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=
=3A//ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7=
FDD91EDAA785=2Ecache=2Ehtml=404001=22=3Ehttps=3A//ovirttest=2Enetbulae=2Ete=
st/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40=
4001=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EZ2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=40209=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ov=
irt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=40209=
=3C/a=3E=29=C2=A0=C2=A0=C2=A0
at
Unknown=2EI2=28=3Ca class=3D=22moz-txt-link-freetext=22 href=3D=22https=3A/=
/ovirttest=2Enetbulae=2Etest/ovirt-engine/webadmin/430985F23DFC1C8BE1C7FDD9=
1EDAA785=2Ecache=2Ehtml=4028=22=3Ehttps=3A//ovirttest=2Enetbulae=2Etest/ovi=
rt-engine/webadmin/430985F23DFC1C8BE1C7FDD91EDAA785=2Ecache=2Ehtml=4028=3C/=
a=3E=29=C2=A0=C2=A0=C2=A0
=2E=2E=2E 32 more=3Cbr=3E
=3C/p=3E
=20=
=3CBR /=3E
=3CBR /=3E
=3Cb style=3D=22color=3A=23604c78=22=3E=3C/b=3E=3Cbr=3E=3Cbr=3E=3Cspan styl=
e=3D=22color=3A=23604c78=3B=22=3E=3Cfont color=3D=22000000=22=3E=3Cspan sty=
le=3D=22mso-fareast-language=3Aen-gb=3B=22 lang=3D=22NL=22=3EMet vriendelij=
ke groet=2C With kind regards=2C=3Cbr=3E=3Cbr=3EJorick Astrego=3Cbr=3E=3C/s=
pan=3E=3C/font=3E=3C/span=3E=3Cb style=3D=22color=3A=23604c78=22=3E=3Cbr=3E=
Netbulae Virtualization Experts =3C/b=3E=3Cbr=3E=3Chr style=3D=22border=3An=
one=3Bborder-top=3A1px solid =23ccc=3B=22=3E=3Ctable style=3D=22width=3A 52=
2px=22=3E=3Ctbody=3E=3Ctr=3E=3Ctd style=3D=22width=3A 130px=3Bfont-size=3A=
10px=22=3ETel=3A 053 20 30 270=3C/td=3E =3Ctd style=3D=22width=3A 130p=
x=3Bfont-size=3A 10px=22=3Einfo=40netbulae=2Eeu=3C/td=3E =3Ctd style=3D=
=22width=3A 130px=3Bfont-size=3A 10px=22=3EStaalsteden 4-3A=3C/td=3E =20=
=3Ctd style=3D=22width=3A 130px=3Bfont-size=3A 10px=22=3EKvK 08198180=3C/td=
=3E=3C/tr=3E=3Ctr=3E =3Ctd style=3D=22width=3A 130px=3Bfont-size=3A 10px=
=22=3EFax=3A 053 20 30 271=3C/td=3E =3Ctd style=3D=22width=3A 130px=3Bfo=
nt-size=3A 10px=22=3Ewww=2Enetbulae=2Eeu=3C/td=3E =3Ctd style=3D=22width=
=3A 130px=3Bfont-size=3A 10px=22=3E7547 TA Enschede=3C/td=3E =3Ctd style=
=3D=22width=3A 130px=3Bfont-size=3A 10px=22=3EBTW NL821234584B01=3C/td=3E=
=3C/tr=3E=3C/tbody=3E=3C/table=3E=3Cbr=3E=3Chr style=3D=22border=3Anone=3Bb=
order-top=3A1px solid =23ccc=3B=22=3E=3CBR /=3E
=3C/body=3E
=3C/html=3E
--------------E3265EB9524CB4458A4C62ED--
8 years
Unable to get volume size for domain ... after engine upgrade 4.0.4
by Claudio Soprano
Hello all,
we upgraded the engine (standalone) from 3.6.5 to 4.0.4 for the Backing
file too long bug.
we upgraded 2 hosts on 10 from 3.6.5 to 4.0.4 too.
we tried to shutdown some VMs and now when we try to start them again we get
"Unable to get volume size for domain
384f9059-ef2f-4d43-a54f-de71c5d589c8 volume
83ab4406-ea8d-443e-b64b-77b4e1dcb978"
Where the domain changes for each VMs we try to start, some VMs have
snapshots but one was cloned from a snapshot but has no snapshots itself.
Also this cloned VM after the shutdown doesn't start anymore, same error.
These VMs don't start neither 3.6.5 or 4.0.4 hosts.
I hope in any help because we have about 200 VMs and we don't know if
they will start again after a shutdown.
Claudio
--
/ | / _____/ / | / _____/ | /
/ / | / / / / | / / / | /
/ / | / ___/ _____/ / / | / ___/ / | /
/ / | / / / / | / / / | /
______/ _/ __/ _/ _/ _/ __/ _/ _/ __/
Claudio Soprano phone: (+39)-06-9403.2349/2355
Computing Service fax: (+39)-06-9403.2649
LNF-INFN e-mail: Claudio.Soprano(a)lnf.infn.it
Via Enrico Fermi, 40 www: http://www.lnf.infn.it/
I-00044 Frascati, Italy
8 years
First steps with ovirt, what can I expect?
by Ben De Luca
Hi,
I am building my first ovirt system and I am wondering about the state
of my system. I think it should be different than what it is right now. If
any one has advice, opinions or thought I am open to hearing. Sorry If I
have some of the terminology wrong).
I am try to building a 3 node cluster, with nfs3 storage on top of
centos 7.2 system.
I have 3 identical nodes, and one machine providing dns for the 3
nodes. I have configured names for the nodes and for the engine
I installed centos-release-ovirt40 (which has resolved to
centos-release-ovirt40-1.0-1.el7.centos.noarch)
Using the appliance I found at
http://resources.ovirt.org/pub/ovirt-4.0/rpm/el7/noarch/ovirt-engine-appl...
I ran hosted-engine --deploy . it completed without error.
What has me confused is I can only reach the management engine
(ping/web console) on the host that I ran hosted-engine --deploy. The other
nodes can not reach it.
I feel like I should be able to connect to it from every where so I can
add the other nodes, as I have never done this before I dont know what
state it should be at the moment. Is there another step I need to take to
make it visible on the rest of the network?
-Ben
8 years
external users problem
by Baptiste Agasse
Hi all,
We use ovirt 4.0.4 with FreeIPA as external provider. The external provider was configured via the 'ovirt-engine-extension-aaa-ldap-setup' command. The authentication works fine, but in the webui, when you go on the 'Active User Sessions', all users uuid is showed as '00000000-0000-0000-0000-000000000000'. Other problem, maybe related, when a user create a VM, by default a permission is created with the role of 'UserVmManager'. On the 'Permissions' pane, we see a line with no value for User, Authorization provider, Namespace. The only value set on this line is the role (UserVmManager in that case). When we try to remove this line, an exception occurs in the webui that prevent deletion of this line.
This behavior is verified on all our oVirt environments (oVirt 4.0.4 + FreeIPA)
Someone hit the same problem ?
Have a nice day.
Regards.
--
Baptiste AGASSE
8 years
Upgrading oVirt 3.6 with existing HTTPS certificate signed by custom CA to oVirt 4
by Beckman, Daniel
--_000_3BBB204A189E49F49EBF9ACC76AE4508ingramcontentcom_
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: base64
V2UgaGF2ZSBvVmlydCAzLjYuNyBhbmQgSSBhbSBwcmVwYXJpbmcgdG8gdXBncmFkZSB0byA0LjAu
NCByZWxlYXNlLiBJIHJlYWQgdGhlIHJlbGVhc2Ugbm90ZXMgKGh0dHBzOi8vd3d3Lm92aXJ0Lm9y
Zy9yZWxlYXNlLzQuMC40LykgYW5kIG5vdGVkIGNvbW1lbnQgIzQgdW5kZXIg4oCcSW5zdGFsbCAv
IFVwZ3JhZGUgZnJvbSBwcmV2aW91cyB2ZXJzaW9u4oCdOg0KDQpJZiB5b3UgYXJlIHVzaW5nIEhU
VFBTIGNlcnRpZmljYXRlIHNpZ25lZCBieSBjdXN0b20gY2VydGlmaWNhdGUgYXV0aG9yaXR5LCBw
bGVhc2UgdGFrZSBhIGxvb2sgYXQgaHR0cHM6Ly9idWd6aWxsYS5yZWRoYXQuY29tLzEzMzY4Mzgg
Zm9yIHN0ZXBzIHdoaWNoIG5lZWQgdG8gYmUgZG9uZSBhZnRlciBtaWdyYXRpb24gdG8gNC4wLiBB
bHNvIHBsZWFzZSBjb25zdWx0IGh0dHBzOi8vYnVnemlsbGEucmVkaGF0LmNvbS8xMzEzMzc5IGhv
dyB0byBzZXR1cCB0aGlzIGN1c3RvbSBDQSBmb3IgdXNlIHdpdGggdmlydC12aWV3ZXIgY2xpZW50
cy4NCg0KU28gSSByZWZlcnJlZCB0byB0aGUgZmlyc3QgYnVnemlsbGEgKGh0dHBzOi8vYnVnemls
bGEucmVkaGF0LmNvbS9zaG93X2J1Zy5jZ2k/aWQ9MTMzNjgzOCksIHdoZXJlIGl0IHN0YXRlcyBh
cyBmb2xsb3dzOg0KDQpJZiBjdXN0b21lciB3YW50cyB0byB1c2UgY3VzdG9tIEhUVFBTIGNlcnRp
ZmljYXRlIHNpZ25lZCBieSBkaWZmZXJlbnQgQ0EsIHRoZW4gaGUgaGFzIHRvIHBlcmZvcm0gZm9s
bG93aW5nIHN0ZXBzOg0KDQoxLiBJbnN0YWxsIGN1c3RvbSBDQSAodGhhdCBzaWduZWQgSFRUUFMg
Y2VydGlmaWNhdGUpIGludG8gaG9zdCB3aWRlIHRydXN0b3JlIChtb3JlIGluZm8gY2FuIGJlIGZv
dW5kIGluIHVwZGF0ZS1jYS10cnVzdCBtYW4gcGFnZSkNCg0KMi4gQ29uZmlndXJlIEhUVFBTIGNl
cnRpZmljYXRlIGluIEFwYWNoZSAodGhpcyBzdGVwIGlzIHNhbWUgYXMgaW4gcHJldmlvdXMgdmVy
c2lvbnMpDQoNCjMuIENyZWF0ZSBuZXcgY29uZmlndXJhdGlvbiBmaWxlIChmb3IgZXhhbXBsZSAv
ZXRjL292aXJ0LWVuZ2luZS9lbmdpbmUuY29uZi5kLzk5LWN1c3RvbS10cnVzdHN0b3JlLmNvbmYp
IHdpdGggZm9sbG93aW5nIGNvbnRlbnQ6DQpFTkdJTkVfSFRUUFNfUEtJX1RSVVNUX1NUT1JFPSIv
ZXRjL3BraS9qYXZhL2NhY2VydHMiIEVOR0lORV9IVFRQU19QS0lfVFJVU1RfU1RPUkVfUEFTU1dP
UkQ9IiINCg0KNC4gUmVzdGFydCBvdmlydC1lbmdpbmUgc2VydmljZQ0KDQpJIGZpbmQgaXQgaHVt
b3JvdXMgdGhhdCBzdGVwICMgMSBzdWdnZXN0cyByZWFkaW5nIHRoZSDigJxtYW4gcGFnZeKAnSB3
aGljaCBpcyBvbmx5IHNsaWdodGx5IGJldHRlciB0aGFuIHN1Z2dlc3RpbmcgdG8g4oCcZ29vZ2xl
4oCdIGl0Lg0KDQpIYXMgYW55b25lIHVzaW5nIGEgY3VzdG9tIENBIGZvciB0aGVpciBIVFRQUyBj
ZXJ0aWZpY2F0ZSBzdWNjZXNzZnVsbHkgdXBncmFkZWQgdG8gb1ZpcnQgND8gSWYgc28gY291bGQg
eW91IHNoYXJlIHlvdXIgZGV0YWlsZWQgc3RlcHM/IE9yIGNhbiBhbnlvbmUgcG9pbnQgbWUgdG8g
YW4gYWN0dWFsIGV4YW1wbGUgb2YgdGhpcyBwcm9jZWR1cmU/IEnigJltIGEgbGl0dGxlIG5lcnZv
dXMgYWJvdXQgdGhlIHVwZ3JhZGUgaWYgeW91IGNhbuKAmXQgYWxyZWFkeSB0ZWxsLg0KDQpUaGFu
a3MsDQpEYW5pZWwNCg==
--_000_3BBB204A189E49F49EBF9ACC76AE4508ingramcontentcom_
Content-Type: text/html; charset=UTF-8
Content-ID: <27B6218010F0174DA2A2868460575073(a)namprd12.prod.outlook.com>
Content-Transfer-Encoding: base64
PGh0bWwgeG1sbnM6bz0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTpvZmZpY2U6b2ZmaWNlIiB4
bWxuczp3PSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTp3b3JkIiB4bWxuczptPSJo
dHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL29mZmljZS8yMDA0LzEyL29tbWwiIHhtbG5zPSJo
dHRwOi8vd3d3LnczLm9yZy9UUi9SRUMtaHRtbDQwIj4NCjxoZWFkPg0KPG1ldGEgaHR0cC1lcXVp
dj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7IGNoYXJzZXQ9dXRmLTgiPg0KPG1l
dGEgbmFtZT0iVGl0bGUiIGNvbnRlbnQ9IiI+DQo8bWV0YSBuYW1lPSJLZXl3b3JkcyIgY29udGVu
dD0iIj4NCjxtZXRhIG5hbWU9IkdlbmVyYXRvciIgY29udGVudD0iTWljcm9zb2Z0IFdvcmQgMTUg
KGZpbHRlcmVkIG1lZGl1bSkiPg0KPHN0eWxlPjwhLS0NCi8qIEZvbnQgRGVmaW5pdGlvbnMgKi8N
CkBmb250LWZhY2UNCgl7Zm9udC1mYW1pbHk6IkNhbWJyaWEgTWF0aCI7DQoJcGFub3NlLTE6MiA0
IDUgMyA1IDQgNiAzIDIgNDt9DQpAZm9udC1mYWNlDQoJe2ZvbnQtZmFtaWx5OkNhbGlicmk7DQoJ
cGFub3NlLTE6MiAxNSA1IDIgMiAyIDQgMyAyIDQ7fQ0KLyogU3R5bGUgRGVmaW5pdGlvbnMgKi8N
CnAuTXNvTm9ybWFsLCBsaS5Nc29Ob3JtYWwsIGRpdi5Nc29Ob3JtYWwNCgl7bWFyZ2luOjBpbjsN
CgltYXJnaW4tYm90dG9tOi4wMDAxcHQ7DQoJZm9udC1zaXplOjEyLjBwdDsNCglmb250LWZhbWls
eTpDYWxpYnJpO30NCmE6bGluaywgc3Bhbi5Nc29IeXBlcmxpbmsNCgl7bXNvLXN0eWxlLXByaW9y
aXR5Ojk5Ow0KCWNvbG9yOiMwNTYzQzE7DQoJdGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZTt9DQph
OnZpc2l0ZWQsIHNwYW4uTXNvSHlwZXJsaW5rRm9sbG93ZWQNCgl7bXNvLXN0eWxlLXByaW9yaXR5
Ojk5Ow0KCWNvbG9yOiM5NTRGNzI7DQoJdGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZTt9DQpzcGFu
LkVtYWlsU3R5bGUxNw0KCXttc28tc3R5bGUtdHlwZTpwZXJzb25hbC1jb21wb3NlOw0KCWZvbnQt
ZmFtaWx5OkNhbGlicmk7DQoJY29sb3I6d2luZG93dGV4dDt9DQpzcGFuLm1zb0lucw0KCXttc28t
c3R5bGUtdHlwZTpleHBvcnQtb25seTsNCgltc28tc3R5bGUtbmFtZToiIjsNCgl0ZXh0LWRlY29y
YXRpb246dW5kZXJsaW5lOw0KCWNvbG9yOnRlYWw7fQ0KLk1zb0NocERlZmF1bHQNCgl7bXNvLXN0
eWxlLXR5cGU6ZXhwb3J0LW9ubHk7DQoJZm9udC1mYW1pbHk6Q2FsaWJyaTt9DQpAcGFnZSBXb3Jk
U2VjdGlvbjENCgl7c2l6ZTo4LjVpbiAxMS4waW47DQoJbWFyZ2luOjEuMGluIDEuMGluIDEuMGlu
IDEuMGluO30NCmRpdi5Xb3JkU2VjdGlvbjENCgl7cGFnZTpXb3JkU2VjdGlvbjE7fQ0KLS0+PC9z
dHlsZT4NCjwvaGVhZD4NCjxib2R5IGJnY29sb3I9IndoaXRlIiBsYW5nPSJFTi1VUyIgbGluaz0i
IzA1NjNDMSIgdmxpbms9IiM5NTRGNzIiPg0KPGRpdiBjbGFzcz0iV29yZFNlY3Rpb24xIj4NCjxw
IGNsYXNzPSJNc29Ob3JtYWwiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTEuMHB0Ij5XZSBoYXZl
IG9WaXJ0IDMuNi43IGFuZCBJIGFtIHByZXBhcmluZyB0byB1cGdyYWRlIHRvIDQuMC40IHJlbGVh
c2UuIEkgcmVhZCB0aGUgcmVsZWFzZSBub3RlcyAoPGEgaHJlZj0iaHR0cHM6Ly93d3cub3ZpcnQu
b3JnL3JlbGVhc2UvNC4wLjQvKSI+aHR0cHM6Ly93d3cub3ZpcnQub3JnL3JlbGVhc2UvNC4wLjQv
KTwvYT4gYW5kIG5vdGVkIGNvbW1lbnQgIzQNCiB1bmRlciDigJxJbnN0YWxsIC8gVXBncmFkZSBm
cm9tIHByZXZpb3VzIHZlcnNpb27igJ06PG86cD48L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9
Ik1zb05vcm1hbCI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMS4wcHQiPjxvOnA+Jm5ic3A7PC9v
OnA+PC9zcGFuPjwvcD4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPjxpPjxzcGFuIHN0eWxlPSJmb250
LXNpemU6MTEuMHB0Ij5JZiB5b3UgYXJlIHVzaW5nIEhUVFBTIGNlcnRpZmljYXRlIHNpZ25lZCBi
eSBjdXN0b20gY2VydGlmaWNhdGUgYXV0aG9yaXR5LCBwbGVhc2UgdGFrZSBhIGxvb2sgYXQgaHR0
cHM6Ly9idWd6aWxsYS5yZWRoYXQuY29tLzEzMzY4MzggZm9yIHN0ZXBzIHdoaWNoIG5lZWQgdG8g
YmUgZG9uZSBhZnRlciBtaWdyYXRpb24gdG8gNC4wLiBBbHNvIHBsZWFzZSBjb25zdWx0DQogaHR0
cHM6Ly9idWd6aWxsYS5yZWRoYXQuY29tLzEzMTMzNzkgaG93IHRvIHNldHVwIHRoaXMgY3VzdG9t
IENBIGZvciB1c2Ugd2l0aCB2aXJ0LXZpZXdlciBjbGllbnRzLjxvOnA+PC9vOnA+PC9zcGFuPjwv
aT48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48aT48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEx
LjBwdCI+PG86cD4mbmJzcDs8L286cD48L3NwYW4+PC9pPjwvcD4NCjxwIGNsYXNzPSJNc29Ob3Jt
YWwiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTEuMHB0Ij5TbyBJIHJlZmVycmVkIHRvIHRoZSBm
aXJzdCBidWd6aWxsYSAoPGEgaHJlZj0iaHR0cHM6Ly9idWd6aWxsYS5yZWRoYXQuY29tL3Nob3df
YnVnLmNnaT9pZD0xMzM2ODM4KSI+aHR0cHM6Ly9idWd6aWxsYS5yZWRoYXQuY29tL3Nob3dfYnVn
LmNnaT9pZD0xMzM2ODM4KTwvYT4sIHdoZXJlIGl0IHN0YXRlcyBhcyBmb2xsb3dzOjxvOnA+PC9v
OnA+PC9zcGFuPjwvcD4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPjxzcGFuIHN0eWxlPSJmb250LXNp
emU6MTEuMHB0Ij48bzpwPiZuYnNwOzwvbzpwPjwvc3Bhbj48L3A+DQo8cCBjbGFzcz0iTXNvTm9y
bWFsIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjExLjBwdCI+SWYgY3VzdG9tZXIgd2FudHMgdG8g
dXNlIGN1c3RvbSBIVFRQUyBjZXJ0aWZpY2F0ZSBzaWduZWQgYnkgZGlmZmVyZW50IENBLCB0aGVu
IGhlIGhhcyB0byBwZXJmb3JtIGZvbGxvd2luZyBzdGVwczoNCjxvOnA+PC9vOnA+PC9zcGFuPjwv
cD4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTEuMHB0Ij48
bzpwPiZuYnNwOzwvbzpwPjwvc3Bhbj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48c3BhbiBz
dHlsZT0iZm9udC1zaXplOjExLjBwdCI+MS4gSW5zdGFsbCBjdXN0b20gQ0EgKHRoYXQgc2lnbmVk
IEhUVFBTIGNlcnRpZmljYXRlKSBpbnRvIGhvc3Qgd2lkZSB0cnVzdG9yZSAobW9yZSBpbmZvIGNh
biBiZSBmb3VuZCBpbiB1cGRhdGUtY2EtdHJ1c3QgbWFuIHBhZ2UpDQo8bzpwPjwvbzpwPjwvc3Bh
bj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjExLjBw
dCI+PG86cD4mbmJzcDs8L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+PHNw
YW4gc3R5bGU9ImZvbnQtc2l6ZToxMS4wcHQiPjIuIENvbmZpZ3VyZSBIVFRQUyBjZXJ0aWZpY2F0
ZSBpbiBBcGFjaGUgKHRoaXMgc3RlcCBpcyBzYW1lIGFzIGluIHByZXZpb3VzIHZlcnNpb25zKQ0K
PG86cD48L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+PHNwYW4gc3R5bGU9
ImZvbnQtc2l6ZToxMS4wcHQiPjxvOnA+Jm5ic3A7PC9vOnA+PC9zcGFuPjwvcD4NCjxwIGNsYXNz
PSJNc29Ob3JtYWwiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6MTEuMHB0Ij4zLiBDcmVhdGUgbmV3
IGNvbmZpZ3VyYXRpb24gZmlsZSAoZm9yIGV4YW1wbGUgL2V0Yy9vdmlydC1lbmdpbmUvZW5naW5l
LmNvbmYuZC85OS1jdXN0b20tdHJ1c3RzdG9yZS5jb25mKSB3aXRoIGZvbGxvd2luZyBjb250ZW50
Og0KPG86cD48L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+PHNwYW4gc3R5
bGU9ImZvbnQtc2l6ZToxMS4wcHQiPkVOR0lORV9IVFRQU19QS0lfVFJVU1RfU1RPUkU9JnF1b3Q7
L2V0Yy9wa2kvamF2YS9jYWNlcnRzJnF1b3Q7IEVOR0lORV9IVFRQU19QS0lfVFJVU1RfU1RPUkVf
UEFTU1dPUkQ9JnF1b3Q7JnF1b3Q7DQo8bzpwPjwvbzpwPjwvc3Bhbj48L3A+DQo8cCBjbGFzcz0i
TXNvTm9ybWFsIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjExLjBwdCI+PG86cD4mbmJzcDs8L286
cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6
ZToxMS4wcHQiPjQuIFJlc3RhcnQgb3ZpcnQtZW5naW5lIHNlcnZpY2U8bzpwPjwvbzpwPjwvc3Bh
bj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjExLjBw
dCI+PG86cD4mbmJzcDs8L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+PHNw
YW4gc3R5bGU9ImZvbnQtc2l6ZToxMS4wcHQiPkkgZmluZCBpdCBodW1vcm91cyB0aGF0IHN0ZXAg
IyAxIHN1Z2dlc3RzIHJlYWRpbmcgdGhlIOKAnG1hbiBwYWdl4oCdIHdoaWNoIGlzIG9ubHkgc2xp
Z2h0bHkgYmV0dGVyIHRoYW4gc3VnZ2VzdGluZyB0byDigJxnb29nbGXigJ0gaXQuDQo8bzpwPjwv
bzpwPjwvc3Bhbj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48c3BhbiBzdHlsZT0iZm9udC1z
aXplOjExLjBwdCI+PG86cD4mbmJzcDs8L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05v
cm1hbCI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMS4wcHQiPkhhcyBhbnlvbmUgdXNpbmcgYSBj
dXN0b20gQ0EgZm9yIHRoZWlyIEhUVFBTIGNlcnRpZmljYXRlIHN1Y2Nlc3NmdWxseSB1cGdyYWRl
ZCB0byBvVmlydCA0PyBJZiBzbyBjb3VsZCB5b3Ugc2hhcmUgeW91ciBkZXRhaWxlZCBzdGVwcz8g
T3IgY2FuIGFueW9uZSBwb2ludCBtZSB0byBhbiBhY3R1YWwgZXhhbXBsZSBvZiB0aGlzIHByb2Nl
ZHVyZT8gSeKAmW0gYSBsaXR0bGUNCiBuZXJ2b3VzIGFib3V0IHRoZSB1cGdyYWRlIGlmIHlvdSBj
YW7igJl0IGFscmVhZHkgdGVsbC4gPG86cD48L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1z
b05vcm1hbCI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMS4wcHQiPjxvOnA+Jm5ic3A7PC9vOnA+
PC9zcGFuPjwvcD4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6
MTEuMHB0Ij5UaGFua3MsPG86cD48L286cD48L3NwYW4+PC9wPg0KPHAgY2xhc3M9Ik1zb05vcm1h
bCI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZToxMS4wcHQiPkRhbmllbDxvOnA+PC9vOnA+PC9zcGFu
PjwvcD4NCjwvZGl2Pg0KPC9ib2R5Pg0KPC9odG1sPg0K
--_000_3BBB204A189E49F49EBF9ACC76AE4508ingramcontentcom_--
8 years
desktop version of client?
by Amy Morrisson
Hey there,
I'm looking for some kind of desktop client for ovirt. I believe as per
what I've seen that there's nothing official so I'm looking for any other
options (even if it's an own development). As a last resource we can use
the web admin but the purpose is to have a few thin clients which would
start the client at boot time so it's more confortable for users, plus most
times the web admin becomes slow after a while.
I'm not sure if something like this exists. In any case thanks for any tip.
By the way, we're using ovirt 3.6.7, fwiw.
Amy Morrisson
8 years