Re: [ovirt-users] Custom Cloud-Init script only partially executing

2014-10-13 Thread Omer Frenkel


- Original Message -
 From: Chris Routh ro...@amateurwriting.net
 To: users@ovirt.org
 Sent: Monday, October 13, 2014 12:23:23 AM
 Subject: Re: [ovirt-users] Custom Cloud-Init script only partially executing
 
 On 2014-10-12 12:54, Chris Routh wrote:
  On 2014-10-12 09:17, Omer Frenkel wrote:
  - Original Message -
  From: Chris Routh ro...@amateurwriting.net
  To: users@ovirt.org
  Sent: Wednesday, October 8, 2014 1:42:53 PM
  Subject: [ovirt-users] Custom Cloud-Init script only partially
  executing
  
  I'm trying to get the custom cloud-init script section in my site to
  run. My goal is to have the VM run 'yum update', add the PuppetLabs
  repository, and then install the latest puppet agent, and join it to
  Puppet.
  
  Following the docs for oVirt and Cloud-Init I have this:
  
  BEGIN SCRIPT
  ===
  yum_repos:
   # The name of the repository
   puppetlabs-release:
   baseurl:
  http://yum.puppetlabs.com/puppetlabs-release-el-6.noarch.rpm
   enabled: true
   failovermethod: priority
   gpgcheck: true
   gpgkey: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs
   name: Puppet Labs repository for Enterprise Linux 6
  
  
  # Upgrade the instance on first boot
  package_upgrade: true
  
  
  # Install additional packages on first boot
  packages:
   - puppet
  
  # Automatically setup and run puppetd
  puppet:
  conf:
  agent:
  server: puppet.example.com
  certname: %f
  ca_cert: |
 -BEGIN CERTIFICATE-
  My Cert 
 -END CERTIFICATE-
  
  
  ===
  END SCRIPT
  
  However what I end up with from this is:
  
  - No Yum update
  - No added repository
  - Puppet gets installed from the default repos
  - No attempt to join
  
  
  According to the cloud-init docs my code is correct, however oVirt is
  not respecting anything, with the sole exception being the
  'packages:'
  argument. Can someone please explain?
  
  Also, I have combed the script and ensured that the indentation was 4
  spaces, and not tabs. I noted that previous users in this mailing
  list
  have had that issue before.
  
  
  the custom script should be sent as-is to the vm,
  you can check what is actually attached to the vm,
  just mount the config-2 cd rom and look for it under
  openstack/latest
  please update if it somehow sent wrong
  
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
  
  
  I have gotten much farther in troubleshooting this thanks to your
  help. I managed to find the config-2 cdrom by using 'blkid' and then
  mounted it. I see that my code is correct. I was then able to run the
  script manual with debug mode and being some trial and error
  troubleshooting.
  
  I managed to figure out that in order for my script to work, I needed
  two extra modules added to /etc/cloud/cloud.cfg:
  
  /etc/cloud/cloud.cfg
  ===
  
  cloud_config_modules:
   - yum-add-repo
   - package-update-upgrade-install
  
  ===
  
  Now, while that allows me to fix the issue with a manual run after the
  VM has been created, it doesn't really cure the root issue.
  
  How do I add these modules to the cdrom-2 so that this will work
  without intervention on the first run?
  
  I'm using the ovirt-image-repository CentOS-6.5 image as a template.
  Is the issue in the image? Or the cdrom? Will creating a custom
  template help?
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
 
 After further investigation it appears the problem is in the config of
 the Glance image for CentOS in the ovirt-image-repository.
 
 Is there a way to load these modules with a setting in ovirt? Or can we
 request that these modules be enabled in the Glance image?

i'm not sure about editing the Glance image,
but creating a template, as you suggested should work:
create a vm from the image, edit the cloud.cfg as you like, and then create a 
template from this vm.

now when you will use the new template, you should have the correct cfg.

hope it helps

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


Re: [ovirt-users] New Feature: engine NIC health check

2014-10-13 Thread Martin Mucha
ad a)
ab b) good, I will make it configurable via engine-config.

ad c) ok, we probably should think about what should be in that table. I've 
proposed, that only failures should be recorded. Since there's currently no use 
for other values/NIC states, and NICs will be probably functional most of the 
time. This will minimize the need to write anything to db, and therefore name 
EngineNicFailures. I also wanted to store information in format: This NIC, 
was not up during check at '.MM.dd HH:mm:ss '. Which gives more 
information than what you're talking about. But there's no need for this data, 
so yes currently it'd be possible to store NIC status along with last failure 
timestamp. So the table could look like:

CREATE TABLE nics_health ( id UUID primary key, name VARCHAR(255), is_healthy 
BOOL, last_failure TIMESTAMP);

this way, we have to update record during each health check, while in 
previously proposed [by me] approach only when there's failure, and 'purge' of 
obsolete data can occur only when there's fence request and/or on some time 
period. What you're proposing provides less information (which is fine, since 
we don't need them), it's simpler, but it generates some unnecessary load for 
db. It's not big deal, but it's not optimal/necessary, since state, when nic is 
not up is not probable(if I understand it correctly).

Sorry, have no idea what DWH stands for.

ad d) I have no problem extending this feature with providing data over rest, 
but others should probably agree with that. I don't think any client(external 
system) need this information, and I also don't think engine nic health is any 
clients business in first place.

——
I will update feature page asap.
M.


- Original Message -
From: Yair Zaslavsky yzasl...@redhat.com
To: Martin Mucha mmu...@redhat.com
Cc: engine-de...@ovirt.org, users@ovirt.org
Sent: Friday, October 10, 2014 3:14:37 PM
Subject: Re: [ovirt-users] New Feature: engine NIC health check



- Original Message -
 From: Martin Mucha mmu...@redhat.com
 To: engine-de...@ovirt.org, users@ovirt.org
 Sent: Wednesday, October 8, 2014 2:33:06 PM
 Subject: [ovirt-users] New Feature: engine NIC health check
 
 Hi,
 
 here's link for new feature, related to monitoring engine's NIC, trying to
 detect failure on engine itself and it that case block fencing.
 http://www.ovirt.org/Features/engine_NIC_health_check
 
 thanks for every input, namely for one addressing some of opened issues.
 
 M.

I was curious  on how you perform the health check, so I read the feature page 
- good to learn more Java :)
Regarding open issues -
a. Yes, IMHO the scanning interval should be configured via engine-config - do 
you see a reason why not to do that? Maybe we should set a minimal interval 
value and enforSce it?
b. Same for the no faiures since.. interval
c. I dont like the name of the table you're suggesting. Please consider an 
alternative. Also you may want to consider having a view that returns you the 
static infomration of the nic + the stats part (dynamic part? maybe just 
nic_state ? ) Why would u like to purge old data and not just hold a record per 
nic and update per each interval? in this case, no purging is required.
Maybe for DWH you will want some info on the history of the status of the 
nics... but I'm not sure if this is relevant for now.
d. If you go with my view suggestion, you  might consider displaying the 
state at REST-API

Yair

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

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


Re: [ovirt-users] New Feature: engine NIC health check

2014-10-13 Thread Oved Ourfali
Some comments:
1. IMO all timeouts should be configurable.
2. The effect it has on fencing will be part of the Cluster's fencing policy, 
so a new configuration item should be added there as well (can be scoped as 
part of a different feature, but in that case you don't need to use the 
information at all as part of the scope of your work, just make the information 
available).
3. I understand that the scope is EngineNics on a system level rather than 
configure them on a DC/Cluster scope. I guess there are use-cases in which you 
use different legs for different DCs, as some might be local, some remote, 
and etc... So consider doing the configuration in a DC level.
4. You wrote engine-setup instead of engine-config a few times throughout 
the wiki page.

Thanks,
Oved

- Original Message -
 From: Martin Mucha mmu...@redhat.com
 To: engine-de...@ovirt.org, users@ovirt.org
 Sent: Wednesday, October 8, 2014 2:33:06 PM
 Subject: [ovirt-users] New Feature: engine NIC health check
 
 Hi,
 
 here's link for new feature, related to monitoring engine's NIC, trying to
 detect failure on engine itself and it that case block fencing.
 http://www.ovirt.org/Features/engine_NIC_health_check
 
 thanks for every input, namely for one addressing some of opened issues.
 
 M.
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] ISO_DOMAIN as iscsi storage type

2014-10-13 Thread ml ml
Hello List,

i am very unhappy with NFS for my ISO_DOMAIN domain.

Can i simply remove my ISO_DOMAIN via NFS and add a ISO_DOMAIN via isci?

My Setup: http://oi60.tinypic.com/2cmu7nm.jpg

I once ran into a pitfall where i was not able to add a ISO DOMAIN
anymore, so i would rather ask in advance if i can remove the
ISO_DOMAIN and simply add it again via iscsi.

Do i need to take care of anything here?

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


Re: [ovirt-users] LDAP_Quick_Start on CentOS 6.5

2014-10-13 Thread ml ml
oVirt Engine Version: 3.4.0-1.el6

On Wed, Oct 1, 2014 at 10:54 PM, Sven Kieske svenkie...@gmail.com wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Hi.

 which ovirt-engine version?

 kind regards

 Sven
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2

 iQGcBAEBAgAGBQJULGoNAAoJEAq0kGAWDrqlT/sL/jHWfMbu7/PjtyeetklTmaWy
 QMAEHHLuK+I4ktvObITAs33Jm20aAqubuYAET+Xj/GFL7ORZQxZlHVdK+aNmhfSB
 1QPAuyq7VhXSCO3UqWHE452p8BDSBhoKc1CqV9ElFr3lKUC/lMcngE9qAcq8E5jn
 LPnq9g41upzcjGSdAOkDLuwO5v4s7w1b24rPxr289T7xSL12BfKJCa+0A6JoXY8F
 vLzWybiMYnWlLjxw2gQHdLLQB6Un9B5G6Ym4jvqwCr1MjvxXn1HkE+uE3fwPlQrA
 Zua/FfZOYyiWh1mhfkWbHd13pfBGdnF7ovMICT0NpzTDCUkORFhJy4I3nO//gKzr
 k57JjC6d/p7iRMJIeHDA9KmO7f8sPfwJKW9KusuhQbt2euPLvguAhatoW5WerJPv
 fEjZJb3f0UZ6J+C8dLQkuLY5DmGD4YHLuZqHcRgg+JeObWOizbWey9oq9Aq9ARS+
 iujaabsJE5/emw8SwSgp/Xa7m93stL2RTqCqaLpfTg==
 =xKN3
 -END PGP SIGNATURE-
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] How to See Ovirt Console From a Remote Windows Host

2014-10-13 Thread Daniel Abrich
Jon Forrest nobozo@... writes:

 
 I know that this is simple for some of you, but I also
 know from Googling around that lots of people have had
 trouble seeing their ovirt console from a remote Windows
 host. Below I describe what finally worked for me. I hope
 this helps somebody avoid wasting as much time as I did
 today.
 
 I'm a fairly experienced VMWare user who's learning ovirt.
 I just installed an all-in-one ovirt server and copied a
 CentOS 6.5 iso into it. I then tried to boot a new VM
 but soon learned that console access is different in ovirt
 than on VMWare.
 
 I then spent over an hour trying the various documented
 ways to view a remote console using Spice on my Windows 7
 desktop. I even tried using a Linux VM to see if the Firefox
 plugin for Spice would work. Nothing.
 
 What finally worked was installing the virt-viewer Windows
 client (http://virt-manager.org/download/). Then, I opened
 the ovirt Administration Portal in Firefox running on my
 Windows 7 desktop. I created a new VM and configured it
 the way I wanted. Then, from the Virtual Machines tab, I started
 the new VM. Pretty soon the little console icon turned green so
 I clicked on it. I got the prompt from Firefox asking me what
 app I wanted to associate with the .vv URL that opened when
 I clicked on the console icon. I browsed around and selected
 
 \Program Files\VirtViewer\bin\remote-viewer.exe
 
 which is from the virt-viewer client package I installed above.
 I told Firefox to always use this app for this kind of file.
 
 This works great! I was able to boot the CentOS system and
 install it with no problems.
 
 Good luck!
 Jon Forrest
 

Hi, I have one problem with that. I believe that the problem is rather in
oVirt, not the viewer. I have oVirt installed at work and I also have
connection to the work environment using IPv6 tunnelling (Windows WAN). In
the oVirt all hosts are added using FQDN. The problem is that all hosts in
the LAN (inside the company) are resolved via IPv4 and the same FQDN is
resolved via IPv6 when I'm connected via WAN. In the console.vv file I can
see the IPv4 address unfortunately and the connection to the console via WAN
is not working. If I change the file putting FQDN to the host= line
everything is working fine.

How to change the oVirt? I'd prefer that the line host= contains the FQDN
(or whatever is being put in the engine database) not the IP address?

Regards,

Daniel

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


Re: [ovirt-users] Spice

2014-10-13 Thread suporte
Hi, 

Finally it´s working. 
What finally worked was installing the virt-viewer Windows client ( 
http://virt-manager.org/download/ ) , 64 bits in my case, and FireFox. 
I wanted to associate with the .vv URL that opened when I clicked on the 
console icon. I browsed around and selected \Program 
Files\VirtViewer\bin\remote-viewer.exe 


- Mensagem original -

De: supo...@logicworks.pt 
Para: Frantisek Kobzik fkob...@redhat.com 
Cc: users@ovirt.org 
Enviadas: Domingo, 12 De Outubro de 2014 21:50:56 
Assunto: Re: [ovirt-users] Spice 

Hi, 

I have tried virt-viewer installed on the client cmputer and associated it to 
.vv file. but no way. 
And what about noVNC? it does not work too? 

thanks 

Jose 

- Mensagem original -

De: Frantisek Kobzik fkob...@redhat.com 
Para: supo...@logicworks.pt 
Cc: users@ovirt.org 
Enviadas: Sexta-feira, 10 De Outubro de 2014 16:11:37 
Assunto: Re: [ovirt-users] Spice 

Hi, 

- As for the activex plugin, I need to do some reseach how to make it run on 
oVirt (or if it's even possible). the wiki page is outdated. 
- Concerning .vv file - this way to connect to console assumes the client to 
have virt-viewer installed (there is msi installer for windows here [1]). You 
can install the msi on your client machine and associate .vv file with 
'remote-viewer' application (maybe the association is done automatically, I 
don't know it by heart). 

Hope it helps! 

Cheers, 
Franta. 

[1]: http://virt-manager.org/download/ 


- Original Message - 
From: supo...@logicworks.pt 
To: Frantisek Kobzik fkob...@redhat.com 
Cc: users@ovirt.org 
Sent: Thursday, October 9, 2014 3:48:35 PM 
Subject: Re: [ovirt-users] Spice 

Hi Franta, 

- yes is about active-x browser plugin 
- There was no /us/share/spice directory on the engine machine, only 
spice-html5. I create the directory and copied this files: 
virt-viewer-0.5.3.exe, virt-viewer.inf, version, from .cab file (still no luck) 
- Didn´t try IE9 

By native console mode, do you mean running this command? engine-config -s 
ClientModeSpiceDefault=value , where value is one of Auto , Plugin or Native . 

Thanks 

Jose 

- Mensagem original - 

De: Frantisek Kobzik fkob...@redhat.com 
Para: supo...@logicworks.pt 
Cc: users@ovirt.org 
Enviadas: Quinta-feira, 9 De Outubro de 2014 13:12:41 
Assunto: Re: [ovirt-users] Spice 

Hi Jose, 

couple of questions: 
- are you talking about active-x browser plugin? 
- Do you have plugin *.cab files installed on the engine machine (in 
/usr/share/spice directory). 
- Does the feature work in IE9? 

If the answer to all questions above is Yes, then crash may be caused by bug 
when embedding plugin in page DOM. I'm afraid it's the problem in any 3.4 
oVirt. The problem will be fixed in oVirt 3.5. 

As a workaround you can use 'Native' console mode. But in this case you must 
have virt-viewer application installed on your client (windows) machine. 

Cheers, 
Franta. 


- Original Message - 
From: supo...@logicworks.pt 
To: users@ovirt.org 
Sent: Thursday, October 9, 2014 1:43:13 PM 
Subject: [ovirt-users] Spice 

I´m trying to install virt-viewer on a windows server 2008R2, with IE10. 
I'm running oVirt 3.4.1-1.fc19. Installed virt-viewer-x64-1.0. 
When click on the console IE10 crashes. 
Don't see any firewall blocking ports. 

Any idea? 

-- 

Jose Ferradeira 
http://www.logicworks.pt 


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



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

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


Re: [ovirt-users] LDAP_Quick_Start on CentOS 6.5

2014-10-13 Thread Mohyedeen Nazzal
Simple LDAP integration is not available for ovirt-engine  3.5.0

Thanks,
Mohyedeen

On Mon, Oct 13, 2014 at 11:28 AM, ml ml mliebher...@googlemail.com wrote:

 oVirt Engine Version: 3.4.0-1.el6

 On Wed, Oct 1, 2014 at 10:54 PM, Sven Kieske svenkie...@gmail.com wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  Hi.
 
  which ovirt-engine version?
 
  kind regards
 
  Sven
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v2
 
  iQGcBAEBAgAGBQJULGoNAAoJEAq0kGAWDrqlT/sL/jHWfMbu7/PjtyeetklTmaWy
  QMAEHHLuK+I4ktvObITAs33Jm20aAqubuYAET+Xj/GFL7ORZQxZlHVdK+aNmhfSB
  1QPAuyq7VhXSCO3UqWHE452p8BDSBhoKc1CqV9ElFr3lKUC/lMcngE9qAcq8E5jn
  LPnq9g41upzcjGSdAOkDLuwO5v4s7w1b24rPxr289T7xSL12BfKJCa+0A6JoXY8F
  vLzWybiMYnWlLjxw2gQHdLLQB6Un9B5G6Ym4jvqwCr1MjvxXn1HkE+uE3fwPlQrA
  Zua/FfZOYyiWh1mhfkWbHd13pfBGdnF7ovMICT0NpzTDCUkORFhJy4I3nO//gKzr
  k57JjC6d/p7iRMJIeHDA9KmO7f8sPfwJKW9KusuhQbt2euPLvguAhatoW5WerJPv
  fEjZJb3f0UZ6J+C8dLQkuLY5DmGD4YHLuZqHcRgg+JeObWOizbWey9oq9Aq9ARS+
  iujaabsJE5/emw8SwSgp/Xa7m93stL2RTqCqaLpfTg==
  =xKN3
  -END PGP SIGNATURE-
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users

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


Re: [ovirt-users] Spice

2014-10-13 Thread David Jaša
Hi Jose,

Cool it works for you. Please note however that this way, you will need
to update the client manually (there is no auto-update feature in the
client currently).

David


On Po, 2014-10-13 at 11:23 +0100, supo...@logicworks.pt wrote:
 Hi,
 
 
 Finally it´s working.
 
 What finally worked was installing the virt-viewer Windows client
 (http://virt-manager.org/download/) , 64 bits in my case, and FireFox.
 
 I wanted to associate with the .vv URL that opened when I clicked on
 the console icon. I browsed around and selected \Program Files
 \VirtViewer\bin\remote-viewer.exe
 
 
 
 
 
 __
 De: supo...@logicworks.pt
 Para: Frantisek Kobzik fkob...@redhat.com
 Cc: users@ovirt.org
 Enviadas: Domingo, 12 De Outubro de 2014 21:50:56
 Assunto: Re: [ovirt-users] Spice
 
 
 Hi,
 
 
 
 I have tried virt-viewer installed on the client cmputer and
 associated it to .vv file. but no way.
 
 And what about noVNC? it does not work too?
 
 
 
 thanks
 
 
 
 Jose
 
 
 
 
 __
 De: Frantisek Kobzik fkob...@redhat.com
 Para: supo...@logicworks.pt
 Cc: users@ovirt.org
 Enviadas: Sexta-feira, 10 De Outubro de 2014 16:11:37
 Assunto: Re: [ovirt-users] Spice
 
 
 Hi,
 
 
  - As for the activex plugin, I need to do some reseach how to make it
 run on oVirt (or if it's even possible). the wiki page is outdated.
  - Concerning .vv file - this way to connect to console assumes the
 client to have virt-viewer installed (there is msi installer for
 windows here [1]). You can install the msi on your client machine and
 associate .vv file with 'remote-viewer' application (maybe the
 association is done automatically, I don't know it by heart).
 
 
 Hope it helps!
 
 
 Cheers,
 Franta.
 
 
 [1]: http://virt-manager.org/download/
 
 
 
 - Original Message -
 From: supo...@logicworks.pt
 To: Frantisek Kobzik fkob...@redhat.com
 Cc: users@ovirt.org
 Sent: Thursday, October 9, 2014 3:48:35 PM
 Subject: Re: [ovirt-users] Spice
 
 
 Hi Franta, 
 
 
 - yes is about active-x browser plugin 
 - There was no /us/share/spice directory on the engine machine, only
 spice-html5. I create the directory and copied this files:
 virt-viewer-0.5.3.exe, virt-viewer.inf, version, from .cab file (still
 no luck) 
 - Didn´t try IE9 
 
 
 By native console mode, do you mean running this command?
 engine-config -s ClientModeSpiceDefault=value , where value is one of
 Auto , Plugin or Native . 
 
 
 Thanks 
 
 
 Jose 
 
 
 - Mensagem original -
 
 
 De: Frantisek Kobzik fkob...@redhat.com 
 Para: supo...@logicworks.pt 
 Cc: users@ovirt.org 
 Enviadas: Quinta-feira, 9 De Outubro de 2014 13:12:41 
 Assunto: Re: [ovirt-users] Spice 
 
 
 Hi Jose, 
 
 
 couple of questions: 
 - are you talking about active-x browser plugin? 
 - Do you have plugin *.cab files installed on the engine machine
 (in /usr/share/spice directory). 
 - Does the feature work in IE9? 
 
 
 If the answer to all questions above is Yes, then crash may be caused
 by bug when embedding plugin in page DOM. I'm afraid it's the problem
 in any 3.4 oVirt. The problem will be fixed in oVirt 3.5. 
 
 
 As a workaround you can use 'Native' console mode. But in this case
 you must have virt-viewer application installed on your client
 (windows) machine. 
 
 
 Cheers, 
 Franta. 
 
 
 
 - Original Message - 
 From: supo...@logicworks.pt 
 To: users@ovirt.org 
 Sent: Thursday, October 9, 2014 1:43:13 PM 
 Subject: [ovirt-users] Spice 
 
 
 I´m trying to install virt-viewer on a windows server 2008R2, with
 IE10. 
 I'm running oVirt 3.4.1-1.fc19. Installed virt-viewer-x64-1.0. 
 When click on the console IE10 crashes. 
 Don't see any firewall blocking ports. 
 
 
 Any idea? 
 
 
 -- 
 
 
 Jose Ferradeira 
 http://www.logicworks.pt 
 
 
 
 ___ 
 Users mailing list 
 Users@ovirt.org 
 http://lists.ovirt.org/mailman/listinfo/users 
 
 
 
 
 
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
 
 
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users


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


Re: [ovirt-users] Fwd: shortcut keys

2014-10-13 Thread Fernando Fuentes

Didi,

Thank you for your reply.

I will gather all of the information as requested and post back.

Thank you for your time.

Regards,

On 10/13/2014 12:43 AM, Yedidyah Bar David wrote:

- Original Message -

From: Fernando Fuentes ffuen...@aasteel.com
To: users@ovirt.org
Sent: Monday, October 13, 2014 2:24:57 AM
Subject: [ovirt-users] Fwd:  shortcut keys

Second round maybe somebody can shed some light on the issue below?
=]

Thanks!


 Original Message 
Team,

New here to the list...
Been using ovirt for some time now I just updated from 3.3.5  to 3.4.1.

We have Windows 7 Guest and use putty to connect to our DB System.
We use specific hot keys set in our termcap, etc...

putty?


To be straight to the point... on oVirt branch 3.3.XX the hotkeys Shift
+ F8  Shift + F9 where capture by our terminals and where been read
correctly...

I just updated oVirt to 3.4.1 and all went fine EXCEPT =] That now those
hotkeys are no longer working... Running putty to our DB server via ssh
and than running the command read does nothing... It reads all hotkeys
and key combinations from F1 to F12 and Shift F1 to F7 and skips F8 and
F9...

putty?


What changed on oVirt 3.4.1 that I can no longer use this hotkeys?

I also try to use them on windows and they are just not coming though at
all... It seems to me that spice is catching the key sequence and
capturing it before delivering it to the guest

or spice?

Please be more specific.

What exactly you are doing, what happened in 3.3, what happens in 3.4.
Include exact versions of all relevant software etc. - including version
of ovirt, vdsm, qemu, spice client.

I can hardly believe that an ovirt version has anything to do with
putty accessing a vm.

spice is a different matter.


My data center/cluster runs on Centos 6.5 x86_64 All have 96GB of RAM
and all have the same CPU Family...

My ovirt manager runs as well on Centos 6.5 x86_64 on a different hosts
that runs luci/kvm for HA clustering.

Any ideas?


--
Fernando Fuentes
Technical Lead  Systems Administrator
Email: ffuen...@aasteel.com American Alloy Steel, Inc.
Houston, Texas
Website: http://www.aasteel.com Phone: 713-462-8081
Fax:   713-462-0527

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



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


Best,


--

Fernando Fuentes

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


Re: [ovirt-users] LDAP_Quick_Start on CentOS 6.5

2014-10-13 Thread Mohyedeen Nazzal
Is't correct that in ovirt-engine 3.4 to integrate with LDAP, Kerberos
server is required. And now in 3.5 we can integrate with OpenLDAP directly ?

Thanks,
Mohyedeen.

On Mon, Oct 13, 2014 at 2:30 PM, Sven Kieske s.kie...@mittwald.de wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 On 13/10/14 13:14, Mohyedeen Nazzal wrote:
  Simple LDAP integration is not available for ovirt-engine  3.5.0

 This is wrong, see the docs:


 https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.4/html/Technical_Guide/chap-Directory_Services.html

 Please do not provide information if you are not
 sure that it is correct. At least indicate that you are not
 sure, thanks.

 - --
 Mit freundlichen Grüßen / Regards

 Sven Kieske

 Systemadministrator
 Mittwald CM Service GmbH  Co. KG
 Königsberger Straße 6
 32339 Espelkamp
 T: +49-5772-293-100
 F: +49-5772-293-333
 https://www.mittwald.de
 Geschäftsführer: Robert Meyer
 St.Nr.: 331/5721/1033, USt-IdNr.: DE814773217, HRA 6640, AG Bad Oeynhausen
 Komplementärin: Robert Meyer Verwaltungs GmbH, HRB 13260, AG Bad
 Oeynhausen
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.22 (GNU/Linux)

 iQIcBAEBAgAGBQJUO7fmAAoJEC5d3lL7/I9zGoQP/2kti8iYfWx/RHLKipNxRIhj
 15bZzBkUdvBLR4z1L0i5Mi5Mq2mLQiViUEwLavNwQjJfPMc0SH0p1+8m0J0peZef
 d+37u4L9y8GRb5l8SVS0oqqHy3nnBcwcuxsdRvchtXqmMbPUIi8j8JOMNi7kTEKf
 KSxGPYCwwdMAbtlgVv5u5481roQAhxy+UpeoFhjMGzRxPxJnyQdY2F/y3xVDaTRJ
 fmeeg3lTJJtCec1YYVfUaVydeMSGmbNTDixrOivOTBxc+c4XPCgUnDkrV5RWQglr
 RIW2HmvDVpUKkTFyOQU+jb/6hmtGvrm+y2qJYKtgVm2stkDYF9aALQjkdWPRYFlS
 xGbkpEyzqnVszM4+/8q4Scf/BOnj/vh5Cqfzxz5DIEawxDQx122O3+mekWcMy/jM
 lye8b/xmEGGjypqRypQXwFG/UIkid2g7a9W2yEKUyF46Dk08ly0IJGaa9iDKniA6
 54t6aQ7v+WNJlqma2hLscAup/HkqY4vW+nRB/LwVsMr6ytu0kCFaQ+MwF6F/lEtf
 DqdenI+UOzUlf7NX34LZOlxkCRne6I9uJjZHdtIUy16L57C3PP82VILXQo6GbIh7
 qR0mYk4GdRQYSTXAD3LOXwjE/PLUa5JyRnBsCOjZEo5b3PFAWyanIYMM486l5p73
 UfyTNxJDMUcPs3gM4Kme
 =2tGT
 -END PGP SIGNATURE-
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users

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


Re: [ovirt-users] LDAP_Quick_Start on CentOS 6.5

2014-10-13 Thread Alon Bar-Lev

Yes, see[1]

[1] 
http://gerrit.ovirt.org/gitweb?p=ovirt-engine-extension-aaa-ldap.git;a=blob;f=README;hb=HEAD

- Original Message -
 From: Mohyedeen Nazzal mohyedeen.naz...@gmail.com
 To: Sven Kieske s.kie...@mittwald.de
 Cc: users@ovirt.org
 Sent: Monday, October 13, 2014 5:07:02 PM
 Subject: Re: [ovirt-users] LDAP_Quick_Start on CentOS 6.5
 
 
 Is't correct that in ovirt-engine 3.4 to integrate with LDAP, Kerberos server
 is required. And now in 3.5 we can integrate with OpenLDAP directly ?
 
 Thanks,
 Mohyedeen.
 
 On Mon, Oct 13, 2014 at 2:30 PM, Sven Kieske  s.kie...@mittwald.de  wrote:
 
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On 13/10/14 13:14, Mohyedeen Nazzal wrote:
  Simple LDAP integration is not available for ovirt-engine  3.5.0
 
 This is wrong, see the docs:
 
 https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.4/html/Technical_Guide/chap-Directory_Services.html
 
 Please do not provide information if you are not
 sure that it is correct. At least indicate that you are not
 sure, thanks.
 
 - --
 Mit freundlichen Grüßen / Regards
 
 Sven Kieske
 
 Systemadministrator
 Mittwald CM Service GmbH  Co. KG
 Königsberger Straße 6
 32339 Espelkamp
 T: +49-5772-293-100
 F: +49-5772-293-333
 https://www.mittwald.de
 Geschäftsführer: Robert Meyer
 St.Nr.: 331/5721/1033, USt-IdNr.: DE814773217, HRA 6640, AG Bad Oeynhausen
 Komplementärin: Robert Meyer Verwaltungs GmbH, HRB 13260, AG Bad
 Oeynhausen
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0.22 (GNU/Linux)
 
 iQIcBAEBAgAGBQJUO7fmAAoJEC5d3lL7/I9zGoQP/2kti8iYfWx/RHLKipNxRIhj
 15bZzBkUdvBLR4z1L0i5Mi5Mq2mLQiViUEwLavNwQjJfPMc0SH0p1+8m0J0peZef
 d+37u4L9y8GRb5l8SVS0oqqHy3nnBcwcuxsdRvchtXqmMbPUIi8j8JOMNi7kTEKf
 KSxGPYCwwdMAbtlgVv5u5481roQAhxy+UpeoFhjMGzRxPxJnyQdY2F/y3xVDaTRJ
 fmeeg3lTJJtCec1YYVfUaVydeMSGmbNTDixrOivOTBxc+c4XPCgUnDkrV5RWQglr
 RIW2HmvDVpUKkTFyOQU+jb/6hmtGvrm+y2qJYKtgVm2stkDYF9aALQjkdWPRYFlS
 xGbkpEyzqnVszM4+/8q4Scf/BOnj/vh5Cqfzxz5DIEawxDQx122O3+mekWcMy/jM
 lye8b/xmEGGjypqRypQXwFG/UIkid2g7a9W2yEKUyF46Dk08ly0IJGaa9iDKniA6
 54t6aQ7v+WNJlqma2hLscAup/HkqY4vW+nRB/LwVsMr6ytu0kCFaQ+MwF6F/lEtf
 DqdenI+UOzUlf7NX34LZOlxkCRne6I9uJjZHdtIUy16L57C3PP82VILXQo6GbIh7
 qR0mYk4GdRQYSTXAD3LOXwjE/PLUa5JyRnBsCOjZEo5b3PFAWyanIYMM486l5p73
 UfyTNxJDMUcPs3gM4Kme
 =2tGT
 -END PGP SIGNATURE-
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
 
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Ryan Nix
Hi,

I'm trying to use oVirt 3.4 to manage a simple Gluster 3.5.2 node setup.
However, I can't seem to add either node (there are only two).  I keep
getting the following in the log:
Host installation failed. Command returned failure code 1 during ssh session
Redhat lists the answer on their customer portal page, however, I can't see
the answer unless I purchase RHEL.  Is anyone familiar with this error?
https://access.redhat.com/solutions/514633

Thanks!

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


Re: [ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Alon Bar-Lev


- Original Message -
 From: Ryan Nix ryan@gmail.com
 To: users@ovirt.org
 Sent: Monday, October 13, 2014 5:32:42 PM
 Subject: [ovirt-users] Host installation failed. Command returned failure 
 code 1 during ssh session
 
 Hi,
 
 I'm trying to use oVirt 3.4 to manage a simple Gluster 3.5.2 node setup.
 However, I can't seem to add either node (there are only two). I keep
 getting the following in the log:
 Host installation failed. Command returned failure code 1 during ssh session
 Redhat lists the answer on their customer portal page, however, I can't see
 the answer unless I purchase RHEL. Is anyone familiar with this error?
 https://access.redhat.com/solutions/514633
 

you should scroll up the event log and see what error you get during the 
host-deploy process.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users



Re: [ovirt-users] How to See Ovirt Console From a Remote Windows Host

2014-10-13 Thread Michal Skrivanek

On Oct 13, 2014, at 11:11 , Daniel Abrich dan...@abrich.eu wrote:

 Jon Forrest nobozo@... writes:
 
 
 I know that this is simple for some of you, but I also
 know from Googling around that lots of people have had
 trouble seeing their ovirt console from a remote Windows
 host. Below I describe what finally worked for me. I hope
 this helps somebody avoid wasting as much time as I did
 today.
 
 I'm a fairly experienced VMWare user who's learning ovirt.
 I just installed an all-in-one ovirt server and copied a
 CentOS 6.5 iso into it. I then tried to boot a new VM
 but soon learned that console access is different in ovirt
 than on VMWare.
 
 I then spent over an hour trying the various documented
 ways to view a remote console using Spice on my Windows 7
 desktop. I even tried using a Linux VM to see if the Firefox
 plugin for Spice would work. Nothing.
 
 What finally worked was installing the virt-viewer Windows
 client (http://virt-manager.org/download/). Then, I opened
 the ovirt Administration Portal in Firefox running on my
 Windows 7 desktop. I created a new VM and configured it
 the way I wanted. Then, from the Virtual Machines tab, I started
 the new VM. Pretty soon the little console icon turned green so
 I clicked on it. I got the prompt from Firefox asking me what
 app I wanted to associate with the .vv URL that opened when
 I clicked on the console icon. I browsed around and selected
 
 \Program Files\VirtViewer\bin\remote-viewer.exe
 
 which is from the virt-viewer client package I installed above.
 I told Firefox to always use this app for this kind of file.
 
 This works great! I was able to boot the CentOS system and
 install it with no problems.
 
 Good luck!
 Jon Forrest
 
 
 Hi, I have one problem with that. I believe that the problem is rather in
 oVirt, not the viewer. I have oVirt installed at work and I also have
 connection to the work environment using IPv6 tunnelling (Windows WAN). In
 the oVirt all hosts are added using FQDN. The problem is that all hosts in
 the LAN (inside the company) are resolved via IPv4 and the same FQDN is
 resolved via IPv6 when I'm connected via WAN. In the console.vv file I can
 see the IPv4 address unfortunately and the connection to the console via WAN
 is not working. If I change the file putting FQDN to the host= line
 everything is working fine.
 
 How to change the oVirt? I'd prefer that the line host= contains the FQDN
 (or whatever is being put in the engine database) not the IP address?

there's a Display address override per host where you can map each host's 
console address to something else; some other IP or FQDN
you just need to set it for all hosts

Thanks,
michal

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

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


[ovirt-users] disk moving issue

2014-10-13 Thread Fernando Fuentes

Team,

I am having issues moving a disk from one storage domain to another.
This use to work fine and now it does not...

Here is what I got from the logs...

2014-10-13 09:59:53,940 ERROR 
[org.ovirt.engine.core.vdsbroker.irsbroker.DeleteImageGroupVDSCommand] 
(org.ovirt.thread.pool-6-thread-25) [3ccfa4be] Command 
DeleteImageGroupVDSCommand( storagePoolId = 
e131c251-9998-42b4-b05b-851b49549d9a, ignoreFailoverLimit = false, 
storageDomainId = fa46ad1f-623c-4793-83b8-b1fdae268a9b, imageGroupId = 
f0e4655c-f089-4cee-83d8-c4b63ddffab9, postZeros = false, forceDelete = 
false) execution failed. Exception: 
IrsOperationFailedNoFailoverException: IRSGenericException: 
IRSErrorException: Image does not exist in domain: 
'image=f0e4655c-f089-4cee-83d8-c4b63ddffab9, 
domain=fa46ad1f-623c-4793-83b8-b1fdae268a9b'


2014-10-13 09:59:53,977 INFO 
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] 
(org.ovirt.thread.pool-6-thread-25) Correlation ID: 3fa88f0b, Job ID: 
dea5edb4-9180-4031-add6-9077c9ede757, Call Stack: null, Custom Event ID: 
-1, Message: User admin have failed to move disk Win7-Test-Base_Disk1 to 
domain virt-images-a.


Any ideas on how I can go by fixing this issue?

I am running:

ovirt-engine3.4.0-1.el6
vdsm.x86_64  4.14.6-0.el6
ovirt-engine-cli   3.4.0.5-1.el6

All is running on Centos 6.5 x86_64

Regards,

--

Fernando Fuentes
Technical Lead  Systems Administrator
Email: ffuen...@aasteel.com
 
American Alloy Steel, Inc.

Houston, Texas
Website: http://www.aasteel.com
 
Phone: 713-722-4222

Fax:   713-300-5688

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


Re: [ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Ryan Nix
The log file for the deploy process disappears quickly from /tmp/ovirt,
however, this is what I was able to capture:

2014-10-13 10:07:49 DEBUG otopi.context context._executeMethod:138 Stage
internal_packages METHOD
otopi.plugins.otopi.core.transaction.Plugin._pre_prepare

2014-10-13 10:07:49 DEBUG otopi.transaction transaction._prepare:77
preparing 'Yum Transaction'

Loaded plugins: fastestmirror

2014-10-13 10:07:49 DEBUG otopi.context context._executeMethod:138 Stage
internal_packages METHOD
otopi.plugins.otopi.network.hostname.Plugin._internal_packages

2014-10-13 10:07:49 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum queue package iproute for install

Loading mirror speeds from cached hostfile

2014-10-13 10:07:49 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: epel/metalink (0%)

2014-10-13 10:07:49 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: epel/metalink 16 k(100%)

 * base: mirror.steadfast.net

 * epel: mirror.steadfast.net

 * extras: mirror.cisp.com

 * updates: centosq4.centos.org

2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomdZB5dnstmp.xml (0%)

2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomdZB5dnstmp.xml 3.7 k(100%)

2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomdWiBr5Stmp.xml (0%)

2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomdWiBr5Stmp.xml 3.3 k(100%)

2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomdFNAh24tmp.xml (0%)

2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomdFNAh24tmp.xml 2.9 k(100%)

2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomda3kAIJtmp.xml (0%)

2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
yumpackager.verbose:88 Yum Downloading: repomda3kAIJtmp.xml 2.9 k(100%)



On Mon, Oct 13, 2014 at 9:54 AM, Alon Bar-Lev alo...@redhat.com wrote:



 - Original Message -
  From: Ryan Nix ryan@gmail.com
  To: users@ovirt.org
  Sent: Monday, October 13, 2014 5:32:42 PM
  Subject: [ovirt-users] Host installation failed. Command returned
 failure code 1 during ssh session
 
  Hi,
 
  I'm trying to use oVirt 3.4 to manage a simple Gluster 3.5.2 node setup.
  However, I can't seem to add either node (there are only two). I keep
  getting the following in the log:
  Host installation failed. Command returned failure code 1 during ssh
 session
  Redhat lists the answer on their customer portal page, however, I can't
 see
  the answer unless I purchase RHEL. Is anyone familiar with this error?
  https://access.redhat.com/solutions/514633
 

 you should scroll up the event log and see what error you get during the
 host-deploy process.

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


Re: [ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Alon Bar-Lev

In the event log when you click the host in ui you should see alerts tab, in 
this you will get status of installation.
Not trivial to look within that tab, but one you know this tab lots of 
information is visible.
In this tab you will also see a message where the host-deploy log is stored at 
engine machine it should be at /var/log/ovirt-engine/host-deploy.
Please attach this file or examine the events and understand what is the 
problem.

- Original Message -
 From: Ryan Nix ryan@gmail.com
 To: Alon Bar-Lev alo...@redhat.com
 Cc: users@ovirt.org
 Sent: Monday, October 13, 2014 6:14:58 PM
 Subject: Re: [ovirt-users] Host installation failed. Command returned failure 
 code 1 during ssh session
 
 The log file for the deploy process disappears quickly from /tmp/ovirt,
 however, this is what I was able to capture:
 
 2014-10-13 10:07:49 DEBUG otopi.context context._executeMethod:138 Stage
 internal_packages METHOD
 otopi.plugins.otopi.core.transaction.Plugin._pre_prepare
 
 2014-10-13 10:07:49 DEBUG otopi.transaction transaction._prepare:77
 preparing 'Yum Transaction'
 
 Loaded plugins: fastestmirror
 
 2014-10-13 10:07:49 DEBUG otopi.context context._executeMethod:138 Stage
 internal_packages METHOD
 otopi.plugins.otopi.network.hostname.Plugin._internal_packages
 
 2014-10-13 10:07:49 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum queue package iproute for install
 
 Loading mirror speeds from cached hostfile
 
 2014-10-13 10:07:49 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: epel/metalink (0%)
 
 2014-10-13 10:07:49 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: epel/metalink 16 k(100%)
 
  * base: mirror.steadfast.net
 
  * epel: mirror.steadfast.net
 
  * extras: mirror.cisp.com
 
  * updates: centosq4.centos.org
 
 2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomdZB5dnstmp.xml (0%)
 
 2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomdZB5dnstmp.xml 3.7 k(100%)
 
 2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomdWiBr5Stmp.xml (0%)
 
 2014-10-13 10:07:51 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomdWiBr5Stmp.xml 3.3 k(100%)
 
 2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomdFNAh24tmp.xml (0%)
 
 2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomdFNAh24tmp.xml 2.9 k(100%)
 
 2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomda3kAIJtmp.xml (0%)
 
 2014-10-13 10:07:52 DEBUG otopi.plugins.otopi.packagers.yumpackager
 yumpackager.verbose:88 Yum Downloading: repomda3kAIJtmp.xml 2.9 k(100%)
 
 
 
 On Mon, Oct 13, 2014 at 9:54 AM, Alon Bar-Lev alo...@redhat.com wrote:
 
 
 
  - Original Message -
   From: Ryan Nix ryan@gmail.com
   To: users@ovirt.org
   Sent: Monday, October 13, 2014 5:32:42 PM
   Subject: [ovirt-users] Host installation failed. Command returned
  failure code 1 during ssh session
  
   Hi,
  
   I'm trying to use oVirt 3.4 to manage a simple Gluster 3.5.2 node setup.
   However, I can't seem to add either node (there are only two). I keep
   getting the following in the log:
   Host installation failed. Command returned failure code 1 during ssh
  session
   Redhat lists the answer on their customer portal page, however, I can't
  see
   the answer unless I purchase RHEL. Is anyone familiar with this error?
   https://access.redhat.com/solutions/514633
  
 
  you should scroll up the event log and see what error you get during the
  host-deploy process.
 
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] disk moving issue

2014-10-13 Thread Fernando Fuentes

Team,

Let me add that I have the same issue as posted here:

https://www.mail-archive.com/users@ovirt.org/msg21018.html

Cant create images on other nfs domains but i can make them just fine on 
the master nfs domain.


Maybe this is related to my issue...

Any ideas?

TIA.

Regards,


On 10/13/2014 10:12 AM, Fernando Fuentes wrote:

Team,

I am having issues moving a disk from one storage domain to another.
This use to work fine and now it does not...

Here is what I got from the logs...

2014-10-13 09:59:53,940 ERROR 
[org.ovirt.engine.core.vdsbroker.irsbroker.DeleteImageGroupVDSCommand] 
(org.ovirt.thread.pool-6-thread-25) [3ccfa4be] Command 
DeleteImageGroupVDSCommand( storagePoolId = 
e131c251-9998-42b4-b05b-851b49549d9a, ignoreFailoverLimit = false, 
storageDomainId = fa46ad1f-623c-4793-83b8-b1fdae268a9b, imageGroupId = 
f0e4655c-f089-4cee-83d8-c4b63ddffab9, postZeros = false, forceDelete = 
false) execution failed. Exception: 
IrsOperationFailedNoFailoverException: IRSGenericException: 
IRSErrorException: Image does not exist in domain: 
'image=f0e4655c-f089-4cee-83d8-c4b63ddffab9, 
domain=fa46ad1f-623c-4793-83b8-b1fdae268a9b'


2014-10-13 09:59:53,977 INFO 
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] 
(org.ovirt.thread.pool-6-thread-25) Correlation ID: 3fa88f0b, Job ID: 
dea5edb4-9180-4031-add6-9077c9ede757, Call Stack: null, Custom Event 
ID: -1, Message: User admin have failed to move disk 
Win7-Test-Base_Disk1 to domain virt-images-a.


Any ideas on how I can go by fixing this issue?

I am running:

ovirt-engine3.4.0-1.el6
vdsm.x86_64  4.14.6-0.el6
ovirt-engine-cli   3.4.0.5-1.el6

All is running on Centos 6.5 x86_64

Regards,



--

Fernando Fuentes
Technical Lead  Systems Administrator
Email: ffuen...@aasteel.com
 
American Alloy Steel, Inc.

Houston, Texas
Website: http://www.aasteel.com
 
Phone: 713-722-4222

Fax:   713-300-5688

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


Re: [ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Alon Bar-Lev
You should see this in UI:

2014-10-13 10:07:57 ERROR otopi.context context._executeMethod:161 Failed to 
execute stage 'Setup validation': Cannot locate gluster packages, possible 
cause is incorrect channels

Please confirm you know where to look.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Alon Bar-Lev


- Original Message -
 From: Ryan Nix ryan@gmail.com
 To: Alon Bar-Lev alo...@redhat.com
 Cc: users@ovirt.org
 Sent: Monday, October 13, 2014 7:10:09 PM
 Subject: Re: [ovirt-users] Host installation failed. Command returned failure 
 code 1 during ssh session
 
 I'm not seeing that in Events through the UI.

Please go to Hosts
Then select the host you are deploying.
And at lower tab go to Events tab, it is at the right.

 
 ​
 
 On Mon, Oct 13, 2014 at 10:50 AM, Alon Bar-Lev alo...@redhat.com wrote:
 
  You should see this in UI:
 
  2014-10-13 10:07:57 ERROR otopi.context context._executeMethod:161 Failed
  to execute stage 'Setup validation': Cannot locate gluster packages,
  possible cause is incorrect channels
 
  Please confirm you know where to look.
 
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] oVirt 3.4 + Ipa Server

2014-10-13 Thread Marcelo Donato
oVirt 3.4 is not possible to integrate with IPA?



-- 
Ao encaminhar esta mensagem, por favor:
1. Apague o meu e-mail e o meu nome.
2. Apague também os endereços dos amigos antes de reenviar
3. Use Cco ou Bcc para enviar mensagens!
Dificulte a disseminação de vírus e spam.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Host installation failed. Command returned failure code 1 during ssh session

2014-10-13 Thread Ryan Nix
I swear that is what I'm clicking on.

One of the messages:  ovirt Failed to execute stage 'Setup validation':
Cannot locate gluster packages, possible cause is incorrect channels.

Does that mean I need to install the oVirt yum repositories on the Gluster
bricks themselves?

On Mon, Oct 13, 2014 at 11:37 AM, Alon Bar-Lev alo...@redhat.com wrote:


 You are still do not look in the right location, to ease your work please
 understand that you can see specific host related messages by using the
 Hosts tab, select the host, go to lower tabs, select Events tab.

 When you select the generic events you may lose messages quickly as you
 see messages from all components.

 Anyway, please read the message and act upon.

 - Original Message -
  From: Ryan Nix ryan@gmail.com
  To: Alon Bar-Lev alo...@redhat.com
  Sent: Monday, October 13, 2014 7:32:41 PM
  Subject: Re: [ovirt-users] Host installation failed. Command returned
 failure code 1 during ssh session
 
  Here it is, although I'm not seeing this:  2014-10-13 10:07:57 ERROR
  otopi.context context._executeMethod:161 Failed to execute stage 'Setup
  validation':
 
 
  ​
 
  On Mon, Oct 13, 2014 at 11:20 AM, Alon Bar-Lev alo...@redhat.com
 wrote:
 
  
  
   - Original Message -
From: Ryan Nix ryan@gmail.com
To: Alon Bar-Lev alo...@redhat.com
Cc: users@ovirt.org
Sent: Monday, October 13, 2014 7:10:09 PM
Subject: Re: [ovirt-users] Host installation failed. Command returned
   failure code 1 during ssh session
   
I'm not seeing that in Events through the UI.
  
   Please go to Hosts
   Then select the host you are deploying.
   And at lower tab go to Events tab, it is at the right.
  
   
​
   
On Mon, Oct 13, 2014 at 10:50 AM, Alon Bar-Lev alo...@redhat.com
   wrote:
   
 You should see this in UI:

 2014-10-13 10:07:57 ERROR otopi.context context._executeMethod:161
   Failed
 to execute stage 'Setup validation': Cannot locate gluster
 packages,
 possible cause is incorrect channels

 Please confirm you know where to look.

   
  
 

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


Re: [ovirt-users] oVirt 3.4 + Ipa Server

2014-10-13 Thread Jim Kinney
I have the latest 3.4 version and it works with FreeIPA. An earlier version
did not properly populate the users sections for adding users to Ovirt.
When I rebuilt with the latest 3.4 version, I did NOT join the Ovirt host
to the domain using ipa-join tools. I only joined it using the
engine-manage-domain tools.

2014-10-13 12:49 GMT-04:00 Marcelo Donato don...@din.uem.br:

 oVirt 3.4 is not possible to integrate with IPA?



 --
 Ao encaminhar esta mensagem, por favor:
 1. Apague o meu e-mail e o meu nome.
 2. Apague também os endereços dos amigos antes de reenviar
 3. Use Cco ou Bcc para enviar mensagens!
 Dificulte a disseminação de vírus e spam.

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




-- 
-- 
James P. Kinney III

Every time you stop a school, you will have to build a jail. What you gain
at one end you lose at the other. It's like feeding a dog on his own tail.
It won't fatten the dog.
- Speech 11/23/1900 Mark Twain


*http://heretothereideas.blogspot.com/
http://heretothereideas.blogspot.com/*
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] oVirt 3.4 + Ipa Server

2014-10-13 Thread Marcelo Donato
Hi Jim.

oVirt + FreeIPA, I'm in trouble, can you help me?



-- 
Ao encaminhar esta mensagem, por favor:
1. Apague o meu e-mail e o meu nome.
2. Apague também os endereços dos amigos antes de reenviar
3. Use Cco ou Bcc para enviar mensagens!
Dificulte a disseminação de vírus e spam.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] How to mapping LDAP users in AAA

2014-10-13 Thread lofyer
I've got a LDAP server without kerberos and I am trying to intergrate 
its users to oVirt-3.5 with AAA.

==
/etc/ovirt-engine/aaa/example.properties:

include = openldap.properties

vars.user = cn=directory manager
vars.password = mypassword
vars.server = example.com

#pool.default.ssl.startTLS = false
#pool.default.ssl.truststore.file = /etc/ldap_tls/ca_cert.pem
#pool.default.ssl.truststore.password = admin

pool.default.serverset.single.server = ${global:vars.server}
pool.default.auth.simple.bindDN = ${global:vars.user}
pool.default.auth.simple.password = ${global:vars.password}
==

This is my basic ldap infomation:

ou=Groups
|
+ cn=UserGroup1
|
+ cn=UserGroup2

ou=UserGroup1
|
+ cn=user1
|
+ cn=user2


ou=UserGroup2
|
+ cn=user3
|
+ cn=user4

==

Now I can see example.com in web portal but I cannot list users in UG1 
or UG2.


I find that I could map DN, ID NAME, DISPLAY in the config file. What 
should I add in the config file then?

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


Re: [ovirt-users] How to mapping LDAP users in AAA

2014-10-13 Thread Yair Zaslavsky


- Original Message -
 From: lofyer lof...@gmail.com
 To: users users@ovirt.org
 Sent: Tuesday, October 14, 2014 5:10:56 AM
 Subject: [ovirt-users] How to mapping LDAP users in AAA
 
 I've got a LDAP server without kerberos and I am trying to intergrate
 its users to oVirt-3.5 with AAA.
 ==

Which ldap server is that, what vendor?

 /etc/ovirt-engine/aaa/example.properties:
 
 include = openldap.properties
 
 vars.user = cn=directory manager
 vars.password = mypassword
 vars.server = example.com
 
 #pool.default.ssl.startTLS = false
 #pool.default.ssl.truststore.file = /etc/ldap_tls/ca_cert.pem
 #pool.default.ssl.truststore.password = admin
 
 pool.default.serverset.single.server = ${global:vars.server}
 pool.default.auth.simple.bindDN = ${global:vars.user}
 pool.default.auth.simple.password = ${global:vars.password}
 ==
 
 This is my basic ldap infomation:
 
 ou=Groups
 |
 + cn=UserGroup1
 |
 + cn=UserGroup2
 
 ou=UserGroup1
 |
 + cn=user1
 |
 + cn=user2
 
 
 ou=UserGroup2
 |
 + cn=user3
 |
 + cn=user4
 
 ==
 
 Now I can see example.com in web portal but I cannot list users in UG1
 or UG2.
 
 I find that I could map DN, ID NAME, DISPLAY in the config file. What
 should I add in the config file then?
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users