Re: [Users] vdi

2014-03-24 Thread Andrew Cathrow


- Original Message -
 
 
 - Original Message -
  From: Maurice James midnightst...@msn.com
  To: Antoni Segura Puimedon asegu...@redhat.com
  Sent: Saturday, March 22, 2014 12:15:31 AM
  Subject: RE: [Users] vdi
  
  Not pxe boot the vm, but boot a thin client to make use of a vm
  running on
  oVirt. Is that possible?
 
 I have never tried, but I guess making a minimal linux image booting
 the thin client
 to the browser, which should be pointing to the user portal login
 page should be
 good.


I know that downstream, with RHEV, we've got customers doing this - where Red 
Hat services helped build a kiosk image of RHEL for this purpose.

A number of thin client vendors do support spice.


 
  
  -Original Message-
  From: Antoni Segura Puimedon [mailto:asegu...@redhat.com]
  Sent: Friday, March 21, 2014 2:14 AM
  To: Maurice James
  Cc: users@ovirt.org
  Subject: Re: [Users] vdi
  
  
  
  - Original Message -
   From: Maurice James midnightst...@msn.com
   To: users@ovirt.org
   Sent: Friday, March 21, 2014 12:01:50 AM
   Subject: [Users] vdi
   
   
   
   Does anyone have instructions on how to pxe boot a an ovirt
   hosted vm?
  
  As long as the VM's vNIC is on a VM network that has access to the
  pxe server
  it should just work (it does for me).
  
   
   ___
   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: [Users] oVirt 3.5 planning

2014-03-18 Thread Andrew Cathrow
Nice ! 

- Original Message -

 Dňa 18.03.2014 13:24, Federico Alberto Sayd wrote / napísal(a):

  On 24/02/14 13:59, Itamar Heim wrote:
 

   with oVirt 3.4 getting close to GA with many many great features,
   time to collect requests for 3.5...
  
 

  Add progress bar to task tab to indicate the progress percent of
  snapshot creation, vm clonation, migration, etc.
 

 I needed this a long time ago, so i hacked this together. You shoud
 run it on the SPM host. Also, i only use iscsi storage.

 #!/bin/bash

 SECS=1
 PROC=${1:-qemu-img}
 PID=`pidof $PROC`

 if [ x$PID == x ]
 then
 echo No $PROC running
 exit 1
 fi

 LV=$(ls -l /dev/mapper/ | grep `ls -l /proc/$PID/fd/|grep dm- | cut
 -f 3 -d/ | head -n1` | gawk '{print $9}' | sed -e 's/--/XX/g' -e
 's/-/\//g' -e 's/XX/-/g' -e 's/^/\/dev\//g')

 SIZE=$(/sbin/lvs --noheadings --unquoted --options lv_size --units b
 $LV | sed -e 's/B//g' )

 LAST=0
 while [[ -e /proc/$PID/fd/ ]] ;
 do
 CUR=$(grep rchar /proc/$PID/io | cut -f 2 -d  )
 PERC=$(echo $CUR*100/$SIZE | bc)
 SPEED=$(echo \($CUR-$LAST\)/1024/1024 | bc)
 SIZE2=$(echo $SIZE / 1024 / 1024 / 1024| bc)
 echo $SIZE2 GB / $CUR B [$PERC%] - $SPEED MB/s
 sleep $SECS;
 LAST=$CUR
 done

 --

 Ernest Beinrohr, AXON PRO
 Ing , RHCE , RHCVA , LPIC , VCA , +421-2--6241-0360 ,
 +421-903--482-603
 icq:28153343, gtalk: oer...@axonpro.sk , jabber:oer...@jabber.org

 “For a successful technology, reality must take precedence over
 public relations, for Nature cannot be fooled.” Richard Feynman
 ___
 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: [Users] tags?

2014-03-06 Thread Andrew Cathrow


- Original Message -
 Hello,
 
 Can someone point me at a guide or explain to me the purpose of tags?
 I see
 that I can assign them to VMs and users, but don't grasp the purpose.

It's a way of grouping elements together.
Eg. tag all the product VMs / Hosts
Then filter by these tags to perform operations just on those.


https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.3/html-single/Administration_Guide/index.html#sect-Tags



 
 
 Robert
 
 --
 Senior Software Engineer @ Parsons
 
 ___
 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: [Users] mavericks as a guest vm?

2014-01-26 Thread Andrew Cathrow


- Original Message -
 From: Itamar Heim ih...@redhat.com
 To: Mark mountaind...@gmail.com, users@ovirt.org
 Sent: Sunday, January 26, 2014 5:22:11 PM
 Subject: Re: [Users] mavericks as a guest vm?
 
 On 01/26/2014 11:19 PM, Mark wrote:
  I have older Xserve hardware that is 64 bit but the bios is 32 bit.
  Fusion runs mavericks with no problem. The vm runs in 64 bit mode.
 
  I'd like to run mavericks as vm under ovirt on this hardware.
 
  Google searches I've done keep pointing to vmware.

From a license perspective you can only run OSX on apple hardware.
So for example you can run VMware Fusion, VirtualBox, Parallels, etc on MacOSX.
VMware does have experimental support for installing ESX on Apple hardware.

This hasn't (formally) been done for KVM.
There were some patches flying around a few years ago that tweaked the 
emulation to expose some Mac friendly devices including the systems management 
chip but these didn't go into mainline.

In theory it could be done - even on non-Apple hardware (license issues aside) 
especially with the newer device emulation (q35) that we have in modern qemu

I found this 
http://www.linux-kvm.org/wiki/images/2/2b/KvmForum2008$kdf2008_8.pdf there are 
probably newer versions out there, likely from Alexander.


 
  Any pointers?
 
 
 
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
 
 
 nothing like trying...
 ___
 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: [Users] Extremely poor disk access speeds in Windows guest

2014-01-23 Thread Andrew Cathrow
Are we sure that the issue is the guest I/O - what's the raw performance on the 
host accessing the gluster storage? 

- Original Message -

 From: Steve Dainard sdain...@miovision.com
 To: Itamar Heim ih...@redhat.com
 Cc: Ronen Hod r...@redhat.com, users users@ovirt.org, Sanjay
 Rao s...@redhat.com
 Sent: Thursday, January 23, 2014 4:56:58 PM
 Subject: Re: [Users] Extremely poor disk access speeds in Windows
 guest

 I have two options, virtio and virtio-scsi.

 I was using virtio, and have also attempted virtio-scsi on another
 Windows guest with the same results.

 Using the newest drivers, virtio-win-0.1-74.iso.

 Steve Dainard
 IT Infrastructure Manager
 Miovision | Rethink Traffic
 519-513-2407 ex.250
 877-646-8476 (toll-free)

 Blog | LinkedIn | Twitter | Facebook

 Miovision Technologies Inc. | 148 Manitou Drive, Suite 101,
 Kitchener, ON, Canada | N2C 1L3
 This e-mail may contain information that is privileged or
 confidential. If you are not the intended recipient, please delete
 the e-mail and any attachments and notify us immediately.

 On Thu, Jan 23, 2014 at 4:24 PM, Itamar Heim  ih...@redhat.com 
 wrote:

  On 01/23/2014 07:46 PM, Steve Dainard wrote:
 

   Backing Storage: Gluster Replica
  
 
   Storage Domain: NFS
  
 
   Ovirt Hosts: CentOS 6.5
  
 
   Ovirt version: 3.3.2
  
 
   Network: GigE
  
 
   # of VM's: 3 - two Linux guests are idle, one Windows guest is
  
 
   installing updates.
  
 

   I've installed a Windows 2008 R2 guest with virtio disk, and all
   the
  
 
   drivers from the latest virtio iso. I've also installed the spice
   agent
  
 
   drivers.
  
 

   Guest disk access is horribly slow, Resource monitor during
   Windows
  
 
   updates shows Disk peaking at 1MB/sec (scale never increases) and
   Disk
  
 
   Queue Length Peaking at 5 and looks to be sitting at that level
   99%
   of
  
 
   the time. 113 updates in Windows has been running solidly for
   about
   2.5
  
 
   hours and is at 89/113 updates complete.
  
 

  virtio-block or virtio-scsi?
 
  which windows guest driver version for that?
 

   I can't say my Linux guests are blisteringly fast, but updating a
   guest
  
 
   from RHEL 6.3 fresh install to 6.5 took about 25 minutes.
  
 

   If anyone has any ideas, please let me know - I haven't found any
   tuning
  
 
   docs for Windows guests that could explain this issue.
  
 

   Thanks,
  
 

   *Steve Dainard *
  
 

   __ _
  
 
   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: [Users] Horrid performance during disk I/O

2014-01-14 Thread Andrew Cathrow


- Original Message -
 From: Blaster blas...@556nato.com
 To: users@ovirt.org
 Sent: Monday, January 13, 2014 12:22:37 PM
 Subject: [Users] Horrid performance during disk I/O
 
 
 This probably more appropriate for the qemu users mailing list, but
 that list doesn’t get much traffic and most posts go unanswered…
 
 As I’ve mentioned in the past, I’m migrating my environment from ESXi
 to oVirt AIO.
 
 Under ESXi I was pretty happy with the disk performance, and noticed
 very little difference from bare metal to HV.
 
 Under oVirt/QEMU/KVM, not so much….
 
 Running hdparm on the disk from the HV and from the guest yields the
 same number, about 180MB/sec (SATA III disks, 7200RPM).  The problem
 is, during disk activity, and it doesn’t matter if it’s Windows 7
 guests or Fedora 20 (both using virtio-scsi) the qemu-system-x86
 process starts consuming 100% of the hypervisor CPU.  Hypervisor is
 a Core i7 950 with 24GB of RAM.  There’s 2 Fedora 20 guests and 2
 Windows 7 guests.  Each configured with 4 GB of guaranteed RAM.
 

Did you compare virtio-block to virto-scsi, the former will likely outperform 
the latter.


 Load averages can go up over 40 during sustained disk IO.
  Performance obviously suffers greatly.
 
 I have tried all combinations of having the guests on EXT 4, BTRFS
 and using EXT 4 and BTRFS inside the guests, as well as direct LUN.
  Doesn’t make any difference.  Disk IO sends qemu-system-x86 to high
 CPU percentages.
 
 This can’t be normal, so I’m wondering what I’ve done wrong.  Is
 there some magic setting I’m missing?
 
 
 ___
 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: [Users] about live snapshot and qemu-kvm

2013-12-28 Thread Andrew Cathrow

- Original Message - 

 From: Gianluca Cecchi gianluca.cec...@gmail.com
 To: Ayal Baron aba...@redhat.com
 Cc: users users@ovirt.org
 Sent: Wednesday, December 25, 2013 5:34:25 AM
 Subject: Re: [Users] about live snapshot and qemu-kvm

 Yes, but is the reason of different versions something you can share
 or not? Just to let the people understand..
 Perhaps something related to compatibilities to maintain with 6.0
 initial release due to policies red hat uses?
 I think duplicating the maintenance effort is negative for red hat
 too.. Or not?

There are a few packages in RHEL that we need to move more quickly that would 
be possible within the RHEL policies. OpenvSwitch and QEMU are two such 
packages.
The version of QEMU in RHEL started on 0.12 and has since had a large amount of 
backported features and bugfixes in many cases the backports were significant, 
perhaps more than should have been done.
We're getting to the point that in future versions of RHEL we're likely to 
carry a newer version of packages like QEMU in the layered products (such as 
RHEV and RHEL-OSP) so that we can keep the base versions in RHEL and more 
aggressively rebase in the layered products.

The qemu-kvm-rhev binary that's shipped in RHEV is built from the same source 
as qemu-kvm but with a different build option. If CentOS doesn't currently 
build that package it could easily be done or perhaps built by oVirt.

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


Re: [Users] hot add ram to a vm

2013-12-16 Thread Andrew Cathrow


- Original Message -
 From: Sander Grendelman san...@grendelman.com
 To: Michal Skrivanek michal.skriva...@redhat.com
 Cc: users@ovirt.org
 Sent: Friday, December 13, 2013 8:52:42 AM
 Subject: Re: [Users] hot add ram to a vm
 
 On Fri, Dec 13, 2013 at 1:42 PM, Michal Skrivanek
 michal.skriva...@redhat.com wrote:
  Too bad QEMU doesn't support it. So it's still a long way.
 
 qemu/libvirt kind of supports it (at least in F19).
 
 In virt-manager you can define current and maximum memory
 allocation.
 
 The VM only sees the current allocation and you can hot add memory up
 to the maximum allocation.


It isn't really hot-plug.
This allows you to statically set the physical ram but then use the balloon 
device to borrow some ram from the guest.
If max memory was 4gb and we set current memory to 2gb the VM would still see 
4gb of physical memory but the balloon driver would be taking up 2gb of memory 
in the guest, this memory would be returned to the host for other VMs to use.


 
 Example from the xml definition:
 
   memory unit='KiB'3145728/memory
   currentMemory unit='KiB'1048576/currentMemory
 
 After booting:
 
 [root@grkvm201 ~]# uname -a
 Linux grkvm201.plusine.intern 2.6.32-358.23.2.el6.x86_64 #1 SMP Wed
 Oct 16 18:37:12 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
 [root@grkvm201 ~]# free -lm
  total   used   free sharedbuffers
  cached
 Mem:   837296540  0  8
 84
 Low:   837296540
 High:0  0  0
 -/+ buffers/cache:203634
 Swap:  511  0511
 [root@grkvm201 ~]#
 
 memory increased to 2GB through virt-manager:
 
 [root@grkvm201 ~]# free -lm
  total   used   free sharedbuffers
  cached
 Mem:  1861295   1565  0  8
 84
 Low:  1861295   1565
 High:0  0  0
 -/+ buffers/cache:202   1659
 Swap:  511  0511
 [root@grkvm201 ~]# cat /proc/meminfo
 MemTotal:1906176 kB
 MemFree: 1603456 kB
 Buffers:9140 kB
 Cached:86860 kB
 SwapCached:0 kB
 Active:92564 kB
 Inactive:  68064 kB
 Active(anon):  68692 kB
 Inactive(anon):   12 kB
 Active(file):  23872 kB
 Inactive(file):68052 kB
 Unevictable:   21600 kB
 Mlocked:   11380 kB
 SwapTotal:524280 kB
 SwapFree: 524280 kB
 Dirty:12 kB
 Writeback: 0 kB
 AnonPages: 86232 kB
 Mapped:20436 kB
 Shmem:   288 kB
 Slab:  75132 kB
 SReclaimable:  14576 kB
 SUnreclaim:60556 kB
 KernelStack:1464 kB
 PageTables: 4224 kB
 NFS_Unstable:  0 kB
 Bounce:0 kB
 WritebackTmp:  0 kB
 CommitLimit: 1477368 kB
 Committed_AS: 547624 kB
 VmallocTotal:   34359738367 kB
 VmallocUsed:   20040 kB
 VmallocChunk:   34359688500 kB
 HardwareCorrupted: 0 kB
 AnonHugePages: 18432 kB
 HugePages_Total:   0
 HugePages_Free:0
 HugePages_Rsvd:0
 
 Memory decreased to 1,5GB through virt-manager:
 [root@grkvm201 ~]# free -lm
  total   used   free sharedbuffers
  cached
 Mem:  1349295   1054  0  8
 84
 Low:  1349295   1054
 High:0  0  0
 -/+ buffers/cache:201   1147
 Swap:  511  0511
 [root@grkvm201 ~]#
 ___
 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: [Users] virtio-rng / crypto inside vms

2013-12-13 Thread Andrew Cathrow
Entropy starvation isn't that common so for the vast majority of users it's not 
something that concerns them.
But obviously it's important enough that we invested in creating a 
paravirtualized solution.

RHEL 6.4 and 6.5 includes support within QEMU for virt-rng but not in libvirt.
RHEL 6.6 will pickup the appropriate libvirt support for virtio-rng and it is 
in RHEL 7 beta.
If I remember correctly it's in fedora 19 and later.
If you are compiling your own then you need a QEMU version 1.3 or later and 
libvirt 1.0.3 or later.

virt-rng is something we'd like to finish off in 3.4 it's effectively done 
already.
The challenge will be where it's supported - since EL6 hosts won't be able to 
use it unless we get creative.

If you're running on ovirt 3.2+ now with Fedora 19+ hosts then you can use a 
vdsm hook[1] to configure virt-rng for your guests.
The XML required to inject in the hook would be relatively simple[2]

On the topic of EL6 (before 6.6 comes out) then there is a way to work around 
this.
libvirt has a mechanism to pass through qemu command line options[3] . It's 
somewhere inbetween a great hack and a risky solution - but it's certainly 
helped up out many times. With this qemu namespace option in libvirt you could 
easily make it work in a custom hook on EL6.

Aic



[1] http://www.ovirt.org/VDSM-Hooks
[2] http://libvirt.org/formatdomain.html#elementsRng
[3] http://libvirt.org/drvqemu.html#qemucommand



- Original Message -
 From: Sven Kieske s.kie...@mittwald.de
 To: users@ovirt.org
 Sent: Friday, December 13, 2013 3:32:22 AM
 Subject: Re: [Users] virtio-rng / crypto inside vms
 
 Answering myself, it seems
 virtio-rng will be in 3.4:
 https://bugzilla.redhat.com/show_bug.cgi?id=977079
 
 But I don't find it in the planning:
 
 https://docs.google.com/spreadsheet/ccc?key=0AuAtmJW_VMCRdHJ6N1M3d1F1UTJTS1dSMnZwMF9XWVEusp=sharing#gid=0
 
 Nevertheless it would be cool if someone could give some advice
 how to handle entropy until 3.4 gets released
 (and I have time to upgrade).
 
 Am 13.12.2013 09:09, schrieb Sven Kieske:
  Hi,
  
  I'm just wondering: How is the state
  of the virtio-rng implementation?
  
  I'm asking because I need to regenerate
  ssh host keys in newly deployed vms.
  
  (I seem to be the only person, or everybody
  else has found the solution, or nobody thinks
  about security, or a mixture of the above?)
  
  Additional I found no really guidance
  on how much entropy bits should be
  available to generate a secure key
  inside a vm, beside these numbers:
  
  http://www.ietf.org/rfc/rfc1750.txt
  suggests about 128 bits of entropy
  for a single cryptographic operation.
  
  various other sources mention ranges
  between 100-200 or even at least 4096
  entropy bits.
  
  Would it be a workaround to add a virtual
  sound device and use this one for /dev/random ?
  (But it would be useless if you have no real sound hardware I
  guess).
  
  Additional when you want to regenerate host keys in e.g. Ubuntu
  3 Keys get generated so you need even more entropy to be on the
  save side.
  
  If you got any links to best practices or some
  good news regarding the state of virtio-rng that would be awesome.
  
  Currently my vms have around 130-160 entropy bits available.
  
 
 --
 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
 ___
 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: [Users] backups

2013-11-28 Thread Andrew Cathrow


- Original Message -
 From: Itamar Heim ih...@redhat.com
 To: Lindsay Mathieson lindsay.mathie...@gmail.com, users@ovirt.org
 Sent: Thursday, November 28, 2013 7:24:09 AM
 Subject: Re: [Users] backups
 
 On 11/28/2013 02:22 PM, Lindsay Mathieson wrote:
  On Thu, 28 Nov 2013 01:16:28 PM you wrote:
  best i can offer, from rhel 6.5:
  Bug 948017 - VSS support for qemu-ga-win
 
  Thanks Itamer
 
  from my reading of the bug report can I assume its implemented and
  made its
  way into the windows packages Oct-30th?
 
 that's my understanding. the packages were released with rhel 6.5
 last
 week probably.

yes, VSS support for QEMU-GA was added and released in RHEL 6.5
http://rhn.redhat.com/errata/RHBA-2013-1729.html



 
 ___
 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: [Users] Is there any way of prohibiting 2 vms to run on the same hv ?

2013-11-21 Thread Andrew Cathrow
You could pin each VM to a host, but this isn't a great solution. 
Alternatively you could write a scheduler plugin that does this based on tags. 
http://www.ovirt.org/Features/oVirtSchedulerAPI 

For 3.4 we're looking at adding affinity and anti-affinity rules in the core 
product. 

- Original Message -

 From: Ernest Beinrohr ernest.beinr...@axonpro.sk
 To: users users@ovirt.org
 Sent: Thursday, November 21, 2013 11:06:16 AM
 Subject: [Users] Is there any way of prohibiting 2 vms to run on the
 same hv ?

 I have 2 vms in ha cluster and now they are running
 on the same hypervisor (out of 5). Is there any way
 ovirt can help preventing such an situation?

 thank you

 --

 Ernest Beinrohr, AXON PRO
 DevOps, Ing , RHCE , RHCVA , LPIC , VCA , +421-2--6241-0360 ,
 +421-903--482-603
 icq:28153343, skype:oernii-work , jabber:oer...@jabber.org

 “For a successful technology, reality must take precedence over
 public relations, for Nature cannot be fooled.” Richard Feynman
 ___
 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: [Users] virtio-win packaging [Was Re: Installing Windows VMs]

2013-11-10 Thread Andrew Cathrow


- Original Message -
 From: Bob Doolittle b...@doolittle.us.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Friday, November 8, 2013 10:19:58 AM
 Subject: Re: [Users] virtio-win packaging [Was Re:  Installing Windows VMs]
 
 
 On 11/07/2013 12:50 PM, Andrew Cathrow wrote:
  Should we also consider pre-populating the Guest Additions, such
  as
  the SPICE optimized driver?
  Might need to have different manifest in the virtual floppy that
  the VFD based on the size limitations
  eg. just enough (virtio-blk,net) in VFD but all in ISO.
 
 Yes, I meant two separate items - the VFD plus the ISO, just as is
 done
 with RHEV today. Somehow that never got pushed to the Community.
 Rather
 than duplicate work, somebody might want to simply push that code
 upstream, assuming that's not a problem with RedHat.

It's just a matter of packaging. The virtio drivers are all pushed on to the 
fedora site and the spice driver onto spice-space.org.
And the tools installers etc are on the ftp site @ 
ftp://ftp.redhat.com/redhat/rhev-m/3.x/src-zips/

 
 Also note that since the Quick Start Guide is written to assume these
 items are pre-populated, that should be considered a bug today.
 Either
 the QSG should be updated to remove this note until the functionality
 is
 actually present, or we can simply add the func to match the doc
 (which
 would be less work in the long run) :)
 
 As requested, I have opened a (separate) bug/rfe to track this:
 https://bugzilla.redhat.com/show_bug.cgi?id=1028489
 I am not sure they need to be separate bugs, but I started it this
 way
 and somebody can lump this in and close this as a dup if they like.
 
 -Bob
 
 ___
 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: [Users] virtio-win packaging [Was Re: Installing Windows VMs]

2013-11-07 Thread Andrew Cathrow

- Original Message - 

 From: Bob Doolittle b...@doolittle.us.com
 To: Greg Sheremeta gsher...@redhat.com
 Cc: users@ovirt.org
 Sent: Wednesday, November 6, 2013 8:29:43 AM
 Subject: Re: [Users] virtio-win packaging [Was Re: Installing Windows
 VMs]

 On Tue, Nov 5, 2013 at 11:49 AM, Greg Sheremeta  gsher...@redhat.com
  wrote:

  - Original Message -
 
   From: Sandro Bonazzola  sbona...@redhat.com 
 
   To: Greg Sheremeta  gsher...@redhat.com , Bob Doolittle 
   b...@doolittle.us.com 
 
   Cc: users@ovirt.org , Alon Bar-Lev  alo...@redhat.com 
 
   Sent: Tuesday, November 5, 2013 4:30:11 AM
 
   Subject: virtio-win packaging [Was Re: [Users] Installing Windows
   VMs]
 
  
 
   Il 05/11/2013 03:47, Greg Sheremeta ha scritto:
 
   
 
- Original Message -
 
From: Bob Doolittle  b...@doolittle.us.com 
 
To: users@ovirt.org
 
Sent: Monday, November 4, 2013 6:43:00 PM
 
Subject: [Users] Installing Windows VMs
 
   
 
In the QuickStart Guide, it implies that you should find a
virtual
 
floppy image for virtio-win in the ISO_DOMAIN. Or at least I
can
find no
 
information on where to find/populate that image before the
Guide shows
 
its use.
 
   
 
However, in my default 3.3 installation, there was nothing
pre-populated
 
in my ISO_DOMAIN. Should there have been?
 
   
 
Regards,
 
Bob
 
   
 
   
 
I've never seen that happen on any of my installs.
 
   
 
You can grab the drivers at
 
http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/
 
  
 
   Anyone would like to step in for packaging virtio-win so we can
   add
   it to
 
   ovirt repository?
 
   So we can add it as dependency and have ISO_DOMAIN populated.
 
  
 
  
 

  I can take it, if alonbl doesn't mind me asking him a few questions
  about packaging :)
 

  Bug 1026930 - Package virtio-win and put it in ovirt repositories
  (I'll do this)
 
  Bug 1026933 - pre-populate ISO domain with virtio-win ISO (depends
  on
  1026930, need someone to take)
 

 This is great!

 Should we also consider pre-populating the Guest Additions, such as
 the SPICE optimized driver?

Might need to have different manifest in the virtual floppy that the VFD based 
on the size limitations
eg. just enough (virtio-blk,net) in VFD but all in ISO.

 -Bob

 ___
 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: [Users] oVirt 3.3 does not start HTML5/noVNC viewer

2013-06-14 Thread Andrew Cathrow
what version of remote-viewer/virt-viewer do you have installed? 
virt-viewer 0.5.6 included mime type support. 

- Original Message -

 From: Matt . yamakasi@gmail.com
 To: users users@ovirt.org
 Sent: Friday, June 14, 2013 6:17:20 AM
 Subject: [Users] oVirt 3.3 does not start HTML5/noVNC viewer

 HI All,

 I upgraded to 3.3 and tried to start a console.

 Whatever version of console I set, VNC or Spice, the browser
 downloads a console.vv file now.

 Am I doing something wrong or is this just the unreleased version ?

 Thanks for the help!

 Cheers,

 Matt

 ___
 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: [Users] Can I delay boot of VM so to interact with grub?

2013-05-26 Thread Andrew Cathrow


- Original Message -
 From: Gianluca Cecchi gianluca.cec...@gmail.com
 To: users users@ovirt.org
 Sent: Sunday, May 26, 2013 1:00:32 PM
 Subject: [Users] Can I delay boot of VM so to interact with grub?
 
 Hello,
 in VMware I can choose two things that sometimes are useful
 
 1) boot directly in bios
 I choose this when I want to attach an iso image to the VM
 In oVirt probably could be obtained with run once and attach cd.
 But in general it could be interesting this opportunity
 
 2) choose a delay in boot
 This way I can use the VM console befaore OS starts and if needed I
 can interact with boot loader
 (grub in Linux VM for example).
 
 When I open a spice console I'm not able to get usability before os
 already in start after grub.

use run once to start a VM and in boot options pick start paused 


 
 I see to options:
 - create  a delay in boot as in VMware
 - give spice console the -w (for wait) option that already existed
 in virt-viewer and not in remote-viewer so that one can spawn a
 console window before the VM ha already been started.
 
 What do you think?
 Is there anything already in place to jump into a vm before grub
 completes (other than setting a long delay in grub itself)?
 
 Thanks
 Gianluca
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] scsi disks inside VMs?

2013-03-28 Thread Andrew Cathrow

- Original Message - 

 From: Paul Jansen vla...@yahoo.com.au
 To: users@ovirt.org
 Sent: Wednesday, March 27, 2013 10:52:17 PM
 Subject: [Users] scsi disks inside VMs?

 Hello.
 I'm wondering if it is possible to create VMs with ovirt that have
 scsi disks?
 I've just installed ovirt 3.2.1 on Fedora 18 and attached an ovirt
 node (the current fedora 18 based version).

 When adding disks to a VM I can chose from the 'IDE' or 'VirtIO'
 interfaces. I'd like a scsi option also.
 Mainly because when migrating from vsphere VMs this makes things
 simpler.
 Also, my current kickstart installer for various OSes does not yet
 handle 'vd' disks.
 To add to things I need to install a custom filesystem on the vms
 that wants a scsi disk. It does a scsi inquiry early on in the
 install phase and will not work in 'vd' disks. ie: ' sg_inq
 /dev/vda' does not work.

 I also know that the libata driver in recent linux distributions
 exposes IDE drives as scsi and allows a scsi enquiry to succeed.
 Unfortunately the use case I have required Enterprise Linux 5 and in
 this release IDE disks report as 'hd', whereas scsi disks report as
 'sd'. So, I can just use an IDE disk to get around this problem.

 I understand that virt-manager will allow attaching scsi disks to KVM
 based virtual machines, and that this is made possible by recent
 changes in libvirt.

 I think we should be encouraging people to use the virtio disks where
 possible, but in cases where this is not straightforward ovirt - and
 RHEV - are missing a trick as far as allowing people that have
 existing vsphere setups to fairly easily move to ovirt.

 Is a 'scsi' interface' option for adding virtual disks for VMs on the
 roadmap? If not, could it be considered?


There are plans to add support for virtio-scsi - still paravirtualized but 
providing a pv scsi controller that gives us more features - such as passing 
scsi commands to luns, allowing more disks per vm etc.


 Thanks.

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


Re: [Users] Introducing oVirt Monitoring UI-Plugin

2013-02-19 Thread Andrew Cathrow
Very nice.

- Original Message -
 From: René Koch (ovido) r.k...@ovido.at
 To: ovirt-users users@ovirt.org
 Sent: Tuesday, February 19, 2013 9:04:13 AM
 Subject: [Users] Introducing oVirt Monitoring UI-Plugin
 
 I'm happy to announce oVirt Monitoring UI-Plugin, which allows the
 integration of a Nagios or Icinga monitoring solution into oVirt 3.2
 webadmin. With this plugin you can access detailed service check
 results
 and information including performance graphs within oVirt webadmin
 for
 hosts and virtual machines.
 
 We look forward to extend this plugin with more Nagios/Icinga
 features
 like acknowledgments, comments or service rescheduling, permissions,
 dashboards, check_mk-integration for virtual machine monitoring and
 many
 more.
 
 For more information about this project and screenshots please visit
 ​
 https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
 
 
 The download location is
   * ​
 https://labs.ovido.at/monitoring/wiki/ovirt-monitoring-ui-plugin
 %3Adownload
 
 Please note that this first release is an early development version
 with
 some minor CSS bugs on some browsers.
 
 If you have any questions or ideas, please drop me an email: ​
 r.k...@ovido.at.
 
 Thank you for using oVirt Monitoring UI-Plugin.
 
 
 --
 Best Regards
 
 René Koch
 Senior Solution Architect
 
 
 ovido gmbh - Das Linux Systemhaus
 Brünner Straße 163, A-1210 Wien
 
 Phone:   +43 720 / 530 670
 Mobile:  +43 660 / 512 21 31
 E-Mail:  r.k...@ovido.at
 
 
 
 
 ___
 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: [Users] ovirt / spice client /connection

2013-01-29 Thread Andrew Cathrow

- Original Message - 

 From: Alex Leonhardt alex.t...@gmail.com
 To: oVirt Mailing List users@ovirt.org
 Sent: Tuesday, January 29, 2013 4:07:13 AM
 Subject: [Users] ovirt / spice client /connection

 Hi,

 is it possible to change the key combination from Shift + F12 to
 CTRL+ALT to release the cursor/mouse ?

Use the engine-config utility to change the value for SpiceReleaseCursorKeys 
the default is shift+f12 but it can be easily modified.
Aic



 Alex

 --

 | RHCE | Senior Systems Engineer | www.vcore.co |
 | www.vsearchcloud.com |

 ___
 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: [Users] .img file for win2008 controller driver?

2013-01-16 Thread Andrew Cathrow
if you're using virtio for a Windows VM then you'll need virtio drivers, since 
these aren't included in the Windows install image. 

If you've got a rhel or rhev entitlement then these are on RHN, otherwise you 
can download drivers from the fedora project [1]. These are signed but not 
WHQL'd certified but should install fine. 
it looks like there's not a VFD there now just an ISO, not quite sure why I'll 
ask the maintainer - you might need to hotplug the CD during install or copy 
them into a VFD. 

[1] http://alt.fedoraproject.org/pub/alt/virtio-win/latest/ 

- Original Message -

 From: Jonathan Horne jho...@skopos.us
 To: users@ovirt.org
 Sent: Wednesday, January 16, 2013 10:45:15 AM
 Subject: [Users] .img file for win2008 controller driver?

 Windows 2008 R2 install hits a point where it cannot find the disks,
 and asks for driver. I assume I need a .img file to mount to virtual
 floppy. I cannot seem to locate this, can someone point me in the
 right direction? Is this supposed to be included with the base ovirt
 install?

 Thanks,

 jonathan

 This is a PRIVATE message. If you are not the intended recipient,
 please delete without copying and kindly advise us by e-mail of the
 mistake in delivery. NOTE: Regardless of content, this e-mail shall
 not operate to bind SKOPOS to any order or other contract unless
 pursuant to explicit written agreement or government initiative
 expressly permitting the use of e-mail for such purpose.
 ___
 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: [Users] .img file for win2008 controller driver?

2013-01-16 Thread Andrew Cathrow
what error do you get? 

- Original Message -

 From: Jonathan Horne jho...@skopos.us
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Wednesday, January 16, 2013 11:27:27 AM
 Subject: RE: [Users] .img file for win2008 controller driver?

 I did swap in the .iso file from there, but even if I manually pick
 the driver, and then the installer finally sees the disk, but 2008R2
 still refuses to install “ to that disk”.

 Any other tips I can try?

 Thanks,
 jonathan

 From: Andrew Cathrow [mailto:acath...@redhat.com]
 Sent: Wednesday, January 16, 2013 9:57 AM
 To: Jonathan Horne
 Cc: users@ovirt.org
 Subject: Re: [Users] .img file for win2008 controller driver?

 if you're using virtio for a Windows VM then you'll need virtio
 drivers, since these aren't included in the Windows install image.

 If you've got a rhel or rhev entitlement then these are on RHN,
 otherwise you can download drivers from the fedora project [1].
 These are signed but not WHQL'd certified but should install fine.

 it looks like there's not a VFD there now just an ISO, not quite sure
 why I'll ask the maintainer - you might need to hotplug the CD
 during install or copy them into a VFD.

 [1] http://alt.fedoraproject.org/pub/alt/virtio-win/latest/
 - Original Message -

  From: Jonathan Horne  jho...@skopos.us 
 
  To: users@ovirt.org
 
  Sent: Wednesday, January 16, 2013 10:45:15 AM
 
  Subject: [Users] .img file for win2008 controller driver?
 

  Windows 2008 R2 install hits a point where it cannot find the
  disks,
  and asks for driver. I assume I need a .img file to mount to
  virtual
  floppy. I cannot seem to locate this, can someone point me in the
  right direction? Is this supposed to be included with the base
  ovirt
  install?
 

  Thanks,
 

  jonathan
 

  This is a PRIVATE message. If you are not the intended recipient,
  please delete without copying and kindly advise us by e-mail of the
  mistake in delivery. NOTE: Regardless of content, this e-mail shall
  not operate to bind SKOPOS to any order or other contract unless
  pursuant to explicit written agreement or government initiative
  expressly permitting the use of e-mail for such purpose.
 
  ___
 
  Users mailing list
 
  Users@ovirt.org
 
  http://lists.ovirt.org/mailman/listinfo/users
 
 This is a PRIVATE message. If you are not the intended recipient,
 please delete without copying and kindly advise us by e-mail of the
 mistake in delivery. NOTE: Regardless of content, this e-mail shall
 not operate to bind SKOPOS to any order or other contract unless
 pursuant to explicit written agreement or government initiative
 expressly permitting the use of e-mail for such purpose.___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] What do you want to see in oVirt next?

2013-01-03 Thread Andrew Cathrow


- Original Message -
 From: Itamar Heim ih...@redhat.com
 To: Soeren Grunewald soeren.grunew...@avionic-design.de
 Cc: users@ovirt.org
 Sent: Thursday, January 3, 2013 11:33:54 AM
 Subject: Re: [Users] What do you want to see in oVirt next?
 
 On 01/03/2013 06:28 PM, Soeren Grunewald wrote:
  On 01/03/2013 05:08 PM, Itamar Heim wrote:
  Hi Everyone,
 
  as we wrap oVirt 3.2, I wanted to check with oVirt users on what
  they
  find good/useful in oVirt, and what they would like to see
  improved/added in coming versions?
 
  A nice feature would be to be able to migrate guests between AMD
  and
  Intel host machines.
  KVM should be able to support it [1]. I don't know if other
  hypervisors

It cannot be supported by KVM in any meaningful way - it requires running VMs 
as the lowest common denominator which looks and performs more like a Pentium 
IV.


  are able/can to support this. Because oVirt aims to support
  different
  hypervisors it might be problematic. But I think offline migration
  should be possible.
 
 can you please elaborate what do you mean by offline migration?
 
 Thanks,
 Itamar
 
 
  Regards,
 Soeren
 
 
  Thanks,
  Itamar
  [...]
 
 
  [1] http://www.linux-kvm.org/page/Migration
  ___
  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: [Users] What do you want to see in oVirt next?

2013-01-03 Thread Andrew Cathrow


- Original Message -
 From: Alon Bar-Lev alo...@redhat.com
 To: Tom Brown t...@ng23.net
 Cc: users@oVirt.org users@ovirt.org
 Sent: Thursday, January 3, 2013 12:52:52 PM
 Subject: Re: [Users] What do you want to see in oVirt next?
 
 
 
 - Original Message -
  From: Tom Brown t...@ng23.net
  To: users@oVirt.org users@ovirt.org
  Sent: Thursday, January 3, 2013 7:47:00 PM
  Subject: Re: [Users] What do you want to see in oVirt next?
  
  I'd like to see a spice client for Mac - i know of various ports
  but
  as of now on 10.8 i have to use VNC which is not ideal. I now spice
  != ovirt however they are very linked at this time.
 
 What do you mean? a client or a browser plugin?

There is an early spice client upstream but it still needs to be integrated 
with oVirt

 
 Thanks,
 Alon.
 ___
 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: [Users] What do you want to see in oVirt next?

2013-01-03 Thread Andrew Cathrow

- Original Message - 

 From: Darrell Budic darrell.bu...@zenfire.com
 To: Itamar Heim ih...@redhat.com
 Cc: users@oVirt.org users@ovirt.org
 Sent: Thursday, January 3, 2013 2:02:31 PM
 Subject: Re: [Users] What do you want to see in oVirt next?

 On Jan 3, 2013, at 12:06 PM, Itamar Heim wrote:

  On 01/03/2013 07:42 PM, Darrell Budic wrote:
 

   On Jan 3, 2013, at 10:25 AM, Patrick Hurrelmann wrote:
  
 

On 03.01.2013 17:08, Itamar Heim wrote:
   
  
 

 Hi Everyone,

   
  
 

 as we wrap oVirt 3.2, I wanted to check with oVirt users on
 what
 they

   
  
 

 find good/useful in oVirt, and what they would like to see

   
  
 

 improved/added in coming versions?

   
  
 

   Better support/integration of windows based SPICE clients would
   also
   be
  
 

   much appreciated, I have many end users on Windows, and it's been
   a
  
 

   chore to keep it working so far. This includes the client drivers
   for
  
 

   windows VMs to support the SPICE display for multiple displays.
   More
   of
  
 

   a client side thing, I know, but a desired feature in my
   environment.
  
 

  these would be guest drivers for spice, rather than client ones,
  right?
 

 Yes, I should have said guest drivers for spice, mixing my throughs
 on spice clients with the guest VMs themselves. Best way I can think
 of to describe it would be the ovirt equivalent of
 rhev-guest-tools-iso-3.0-37.noarch.rpm or whatever version they
 are on now.


spice-spice upstream has a guest tools installer that includes the inguest 
drivers - signed but not WHQL'd.
http://www.spice-space.org/download/binaries/spice-guest-tools/spice-guest-tools-0.3.exe


 ___
 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: [Users] XP Guest Sound issue

2012-11-19 Thread Andrew Cathrow


- Original Message -
 From: John Baldwin john.bald...@baycare.org
 To: Andrew Cathrow acath...@redhat.com, Itamar Heim ih...@redhat.com
 Cc: users@ovirt.org
 Sent: Monday, November 19, 2012 2:17:20 PM
 Subject: RE: [Users] XP Guest Sound issue
 
 Looking at the qemu process for that XP VM this is what is listed as
 the sound device:  -device intel-hda,id=sound0,bus=pci.0,addr=0x4
 -device hda-duplex,id=sound0-codec0,bus=sound0.0,cad=0
 
 This probably coincides that the listed Audio device  is the Audio
 Device on High Definition Audio Bus.
 
  I guess the qemu line should be showing a sound device as ac97 and
  NOT intel-hda??

that's right - you should see ac97.

Looks like the issue was fixed here http://gerrit.ovirt.org/#/c/7451/




 
 John Baldwin - Sr. UNIX Systems Administrator
 
 
 -Original Message-
 From: Andrew Cathrow [mailto:acath...@redhat.com]
 Sent: Monday, November 19, 2012 1:11 PM
 To: Itamar Heim
 Cc: users@ovirt.org; Baldwin, John
 Subject: Re: [Users] XP Guest Sound issue
 
 
 
 - Original Message -
  From: Itamar Heim ih...@redhat.com
  To: John Baldwin john.bald...@baycare.org
  Cc: users@ovirt.org
  Sent: Monday, November 19, 2012 11:31:41 AM
  Subject: Re: [Users] XP Guest Sound issue
  
  On 11/19/2012 06:12 PM, Baldwin, John wrote:
   This XP VM I having the sound issue with was created as a
   Desktop.
  
  you can:
  less /var/log/vdsm/vdsm.log
 
 or /var/log/libvirt/qemu/vm-name.log
 
  and look for xml version to see the xml passed
  
  
   John Baldwin - Sr. UNIX Systems Administrator
  
   -Original Message-
   From: users-boun...@ovirt.org [mailto:users-boun...@ovirt.org] On
   Behalf Of Baldwin, John
   Sent: Monday, November 19, 2012 9:48 AM
   To: Itamar Heim
   Cc: users@ovirt.org
   Subject: Re: [Users] XP Guest Sound issue
  
   Is there a debug and/or log that can be used to see what sound
   device is actually being created for the XP guest desktop VM that
   is
   having the sound issue?
  
   John Baldwin - Sr. UNIX Systems Administrator
  
   -Original Message-
   From: Itamar Heim [mailto:ih...@redhat.com]
   Sent: Sunday, November 18, 2012 5:03 AM
   To: Baldwin, John
   Cc: Andrew Cathrow; users@ovirt.org
   Subject: Re: [Users] XP Guest Sound issue
  
   On 11/16/2012 09:48 PM, Baldwin, John wrote:
   Here is the output of that command:
  
   engine=# select * from vdc_options where
   option_name='DesktopAudioDeviceType';
  option_id |  option_name   |
  option_value
  |
  version
   ---++--+-
 54 | DesktopAudioDeviceType | default,ac97

|
 2.2
 55 | DesktopAudioDeviceType |
 
   WindowsXP,ac97,RHEL4,ac97,RHEL3,ac97,Windows2003x64,ac97,RHEL4x64,ac97,RHEL3x64,ac97,OtherLinux,ac97,Other,ac97,default,ich6
 | 3.0
 56 | DesktopAudioDeviceType |
   WindowsXP,ac97,RHEL4,ac97,RHEL3,ac97,Windows2003x64,ac97,RHEL4x64,a
   c97
   ,RHEL3x64,ac97,OtherLinux,ac97,Other,ac97,default,ich6 | 3.1
   (3 rows)
  
   according to this, you should get ac97 for windows xp as well.
  
  
   Note is used ovirt-dre repos (www.dreyou.org)  due to the fact
   this is running on CentOS 6.3  x86_64
  
   I did not have this issue when testing RHEV 3.0.  using oVirt
   due
   to tem license has expired on RHEV.
  
   John Baldwin - Sr. UNIX Systems Administrator
  
   -Original Message-
   From: Itamar Heim [mailto:ih...@redhat.com]
   Sent: Friday, November 16, 2012 10:24 AM
   To: Andrew Cathrow
   Cc: Baldwin, John; users@ovirt.org
   Subject: Re: [Users] XP Guest Sound issue
  
   On 11/16/2012 05:10 PM, Andrew Cathrow wrote:
   iirc an early version of oVirt configured the Intel hda sound
   card
   rather than ac97 for Windows XP and since coming doesn't have
   that
   driver you'd get this error.
  
   iirc, that would be a config change, so should be easy to check.
   can you please:
  
   psql -U postgres -d engine
   select * from vdc_options where
   option_name='DesktopAudioDeviceType';
  
  
  
  
   Sent from Android email
  
   Itamar Heim ih...@redhat.com wrote:
  
   On 11/16/2012 04:46 PM, Baldwin, John wrote:
   Having issue with a 32bit XP guest.   Sound device driver is
   not
   configured. Sound device has the ? “Audio Device on High
   Definition
   Audio Bus” defined.Driver ID is 1AF4 Red Hat Virtio.  No
   drivers
   will load to this that I can find. I thought the ID would be
   listed are a AC97 or Ensoniq.
  
   Running oVirt Engine Version: 3.1.0-3.19.el6  Centos 6.3
   64bit.
 KVM
   server is also Centos

Re: [Users] XP Guest Sound issue

2012-11-16 Thread Andrew Cathrow
iirc an early version of oVirt configured the Intel hda sound card rather than 
ac97 for Windows XP and since coming doesn't have that driver you'd get this 
error. 

Sent from Android email

Itamar Heim ih...@redhat.com wrote:

On 11/16/2012 04:46 PM, Baldwin, John wrote:
 Having issue with a 32bit XP guest.   Sound device driver is not
 configured. Sound device has the ? “Audio Device on High Definition
 Audio Bus” defined.Driver ID is 1AF4 Red Hat Virtio.  No drivers
 will load to this that I can find. I thought the ID would be listed are
 a AC97 or Ensoniq.

 Running oVirt Engine Version: 3.1.0-3.19.el6  Centos 6.3 64bit.   KVM
 server is also Centos 6.3 64bit

 /John Baldwin - Sr. UNIX Systems Administrator/

 Confidential:  This electronic message and all contents contain information
 from BayCare Health System which may be privileged, confidential or
 otherwise
 protected from disclosure.  The information is intended to be for the
 addressee
 only.  If you are not the addressee, any disclosure, copy, distribution
 or use
 of the contents of this message is prohibited.  If you have received this
 electronic message in error, please notify the sender and destroy the
 original
 message and all copies.



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


did you create a new Server or a new Desktop?

___
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: [Users] Second cdrom device

2012-11-05 Thread Andrew Cathrow
Using a virtual floppy is probably the easiest way and it's well supported in 
the UI and API. 

- Original Message -

 From: Cristian Falcas cristi.fal...@gmail.com
 To: users@ovirt.org
 Sent: Monday, November 5, 2012 6:19:04 PM
 Subject: [Users] Second cdrom device

 Hi,

 Can I somehow attach a second cdrom device to a virtual machine? I
 was thinking on adding the virtio drivers for Windows OSs this way.

 Best regards,
 Cristian

 ___
 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: [Users] mozilla-xpi for Ubuntu

2012-10-17 Thread Andrew Cathrow
Ideally this should be included in the core distro.
It's worth adding your input to the request in launchpad [1] to help the distro 
maintainers prioritize it.

Jason created a PPA that's reference in the bug that I'm sure still works.




[1] https://bugs.launchpad.net/ubuntu/+bug/943510

- Original Message -
 From: Mario Giammarco mgiamma...@gmail.com
 To: users@ovirt.org
 Sent: Wednesday, October 17, 2012 2:11:10 PM
 Subject: [Users] mozilla-xpi for Ubuntu
 
 Hello,
 I need a working mozilla-xpi for Ubuntu 12.04 (and soon 12.10).
 It is strange that an opensource project as ovirt is only working on
 Fedora.
 
 Thanks in advance for any help.
 
 Mario
 
 ___
 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: [Users] vdsm/engine do not like Infiniband

2012-09-13 Thread Andrew Cathrow
Yes you are right there is a known issue with the mac address length in IB 
cards. IIRC there was a hardware vendor who was working on a patch to extend 
the length and add the appropriate validation.


Dead Horse deadhorseconsult...@gmail.com wrote:

When attempting to activate/add a host with Infiniband cards present:

vdsm.log
Thread-14::DEBUG::2012-09-13
16:16:29,306::BindingXMLRPC::884::vds::(wrapper) return getCapabilities
with {'status': {'message': 'Done', 'code': 0}, 'info': {'HBAInventory':
{'iSCSI': [{'InitiatorName': 'iqn.2012-09.net.azeroth:kezan'}], 'FC': []},
'packages2': {'kernel': {'release': '200.29.3.el6uek.x86_64', 'buildtime':
1346177011.0, 'version': '2.6.39'}, 'spice-server': {'release': '10.el6',
'buildtime': 1340343617L, 'version': '0.10.1'}, 'vdsm': {'release':
'435.el6', 'buildtime': 1347508928L, 'version': '4.10.0'}, 'qemu-kvm':
{'release': '2.295.el6_3.2', 'buildtime': 1346867328L, 'version':
'0.12.1.2'}, 'libvirt': {'release': '21.el6_3.4', 'buildtime': 1345740034L,
'version': '0.9.10'}, 'qemu-img': {'release': '2.295.el6_3.2', 'buildtime':
1346867328L, 'version': '0.12.1.2'}}, 'cpuModel': 'Intel(R) Xeon(R)
CPU   E5540  @ 2.53GHz', 'hooks': {}, 'vmTypes': ['kvm'],
'supportedProtocols': ['2.2', '2.3'], 'networks': {'ovirtmgmt': {'iface':
'ovirtmgmt', 'addr': '3.57.111.31', 'cfg': {'IPV6INIT': 'no', 'IPADDR':
'3.57.111.31', 'DELAY': '0', 'PREFIX': '22', 'BOOTPROTO': 'none', 'STP':
'off', 'DEVICE': 'ovirtmgmt', 'TYPE': 'Bridge', 'ONBOOT': 'yes'}, 'mtu':
'1500', 'netmask': '255.255.252.0', 'stp': 'off', 'bridged': True,
'gateway': '0.0.0.0', 'ports': ['bond2']}, 'maelstrom': {'iface':
'maelstrom', 'addr': '', 'cfg': {'IPV6INIT': 'no', 'DELAY': '0',
'BOOTPROTO': 'none', 'STP': 'off', 'DEVICE': 'maelstrom', 'TYPE': 'Bridge',
'ONBOOT': 'yes'}, 'mtu': '1500', 'netmask': '', 'stp': 'off', 'bridged':
True, 'gateway': '0.0.0.0', 'ports': ['bond0']}, 'twistingnether':
{'iface': 'twistingnether', 'addr': '3.70.204.31', 'cfg': {'IPV6INIT':
'no', 'IPADDR': '3.70.204.31', 'DELAY': '0', 'PREFIX': '22', 'BOOTPROTO':
'none', 'STP': 'off', 'DEVICE': 'twistingnether', 'TYPE': 'Bridge',
'ONBOOT': 'yes'}, 'mtu': '1500', 'netmask': '255.255.252.0', 'stp': 'off',
'bridged': True, 'gateway': '3.70.204.254', 'ports': ['bond1']}},
'bridges': {'ovirtmgmt': {'addr': '3.57.111.31', 'cfg': {'IPV6INIT': 'no',
'IPADDR': '3.57.111.31', 'DELAY': '0', 'PREFIX': '22', 'BOOTPROTO': 'none',
'STP': 'off', 'DEVICE': 'ovirtmgmt', 'TYPE': 'Bridge', 'ONBOOT': 'yes'},
'mtu': '1500', 'netmask': '255.255.252.0', 'stp': 'off', 'ports':
['bond2']}, 'maelstrom': {'addr': '', 'cfg': {'IPV6INIT': 'no', 'DELAY':
'0', 'BOOTPROTO': 'none', 'STP': 'off', 'DEVICE': 'maelstrom', 'TYPE':
'Bridge', 'ONBOOT': 'yes'}, 'mtu': '1500', 'netmask': '', 'stp': 'off',
'ports': ['bond0']}, 'twistingnether': {'addr': '3.70.204.31', 'cfg':
{'IPV6INIT': 'no', 'IPADDR': '3.70.204.31', 'DELAY': '0', 'PREFIX': '22',
'BOOTPROTO': 'none', 'STP': 'off', 'DEVICE': 'twistingnether', 'TYPE':
'Bridge', 'ONBOOT': 'yes'}, 'mtu': '1500', 'netmask': '255.255.252.0',
'stp': 'off', 'ports': ['bond1']}}, 'uuid':
'FF28----00212883CE4C_00:15:17:00:10:0a',
'lastClientIface': 'twistingnether', 'nics': {'ib0': {'addr':
'192.168.1.1', 'cfg': {'IPV6INIT': 'no', 'IPADDR': '192.168.1.1', 'MTU':
'65520', 'PREFIX': '16', 'BOOTPROTO': 'none', 'CONNECTED_MODE': 'yes',
'DEVICE': 'ib0', 'TYPE': 'Infiniband', 'ONBOOT': 'yes'}, 'mtu': '65520',
'netmask': '255.255.0.0', 'hwaddr':
'80:00:04:04:fe:80:00:00:00:00:00:00:00:12:79:ff:ff:b5:b0:f1', 'speed': 0},
'ib1': {'addr': '', 'cfg': {'IPV6INIT': 'no', 'MTU': '65520', 'BOOTPROTO':
'none', 'CONNECTED_MODE': 'yes', 'DEVICE': 'ib1', 'TYPE': 'Infiniband',
'ONBOOT': 'no'}, 'mtu': '2044', 'netmask': '', 'hwaddr':
'80:00:04:05:fe:80:00:00:00:00:00:00:00:12:79:ff:ff:b5:b0:f2', 'speed': 0},
'eth5': {'permhwaddr': '00:15:17:00:10:0B', 'addr': '', 'cfg': {'SLAVE':
'yes', 'IPV6INIT': 'no', 'HWADDR': '00:15:17:00:10:0B', 'BOOTPROTO':
'none', 'MASTER': 'bond2', 'DEVICE': 'eth5', 'ONBOOT': 'yes'}, 'mtu':
'1500', 'netmask': '', 'hwaddr': '00:15:17:00:10:0a', 'speed': 1000},
'eth4': {'permhwaddr': '00:15:17:00:10:0A', 'addr': '', 'cfg': {'SLAVE':
'yes', 'IPV6INIT': 'no', 'HWADDR': '00:15:17:00:10:0A', 'BOOTPROTO':
'none', 'MASTER': 'bond2', 'DEVICE': 'eth4', 'ONBOOT': 'yes'}, 'mtu':
'1500', 'netmask': '', 'hwaddr': '00:15:17:00:10:0a', 'speed': 1000},
'eth3': {'permhwaddr': '00:21:28:83:CE:4B', 'addr': '', 'cfg': {'SLAVE':
'yes', 'HWADDR': '00:21:28:83:CE:4B', 'BOOTPROTO': 'none', 'MASTER':
'bond1', 'DEVICE': 'eth3', 'ONBOOT': 'yes'}, 'mtu': '1500', 'netmask': '',
'hwaddr': '00:21:28:83:ce:4a', 'speed': 1000}, 'eth2': {'permhwaddr':
'00:21:28:83:CE:4A', 'addr': '', 'cfg': {'SLAVE': 'yes', 'HWADDR':
'00:21:28:83:CE:4A', 'BOOTPROTO': 'none', 'MASTER': 'bond1', 'DEVICE':
'eth2', 'ONBOOT': 'yes'}, 'mtu': '1500', 'netmask': '', 'hwaddr':
'00:21:28:83:ce:4a', 'speed': 1000}, 'eth1': {'permhwaddr':
'00:21:28:83:CE:49', 'addr': '', 

Re: [Users] ovirt 3.1 and live snapshots

2012-08-13 Thread Andrew Cathrow


- Original Message -
 From: Winfried de Heiden w...@dds.nl
 To: users@ovirt.org
 Sent: Monday, August 13, 2012 9:09:42 AM
 Subject: Re: [Users] ovirt 3.1 and live snapshots
 
 Hi All,
 
 Live snapshots is support from qemu 1.1. However, qemu 1.1 is not
 included in Fedora 17 or Ovirt-node.
 
 Besides the Virt-preview repo, when is qemu 1.1 expected?
 Effectively,
 there is still no live snapshot support in Ovirt 3.1

The oVirt 3.1 management platform supports live snapshots if you have a qemu 
release that does.

Fedora doesn't update it's qemu mid-release - so you have 3 choices
- use the virt-preview repo
- wait for F18
- compile your own.




 
 Winfried
 
 
 Op 10-08-12 14:00, Andrew Cathrow schreef:
 
  - Original Message -
  From: Shu Ming shum...@linux.vnet.ibm.com
  To: Winfried de Heiden w...@dds.nl
  Cc: users@ovirt.org
  Sent: Friday, August 10, 2012 6:02:18 AM
  Subject: Re: [Users] ovirt 3.1 and live snapshots
 
  I am afraid you should upgrade qemu manually to 1.1 at least.
  Use the virt-preview repository here
  http://fedoraproject.org/wiki/Virtualization_Preview_Repository
 
 
  On 2012-8-10 17:41, Winfried de Heiden wrote:
  Hi all,
 
  As mentioned in the oVirt 3.1 release notes:
 
  Live snapshotting of virtual machines running on virtualization
  hosts
  with QEMU 1.1 or higher is now supported.
 
  What about Fedora 17? The Fedora version is still at 1.01:
 
  rpm -qi qemu-system-x86
  Name: qemu-system-x86
  Epoch   : 2
  Version : 1.0.1
  Release : 1.fc17
  Architecture: x86_64
  Install Date: vr 10 aug 2012 11:33:59 CEST
  Group   : Development/Tools
  Size: 13594005
  License : GPLv2+ and LGPLv2+ and BSD
  Signature   : RSA/SHA256, ma 30 jul 2012 20:05:08 CEST, Key ID
  50e94c991aca3465
  Source RPM  : qemu-1.0.1-1.fc17.src.rpm
  Build Date  : ma 30 jul 2012 03:34:33 CEST
  Build Host  : x86-01.phx2.fedoraproject.org
  Relocations : (not relocatable)
  Packager: Fedora Project
  Vendor  : Fedora Project
  URL : http://www.qemu.org/
  Summary : QEMU system emulator for x86
 
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
 
 
  --
  ---
  Shu Ming
  Open Virtualization Engineerning; CSTL, IBM Corp.
  Tel: 86-10-82451626  Tieline: 9051626 E-mail: shum...@cn.ibm.com
  or
  shum...@linux.vnet.ibm.com
  Address: 3/F Ring Building, ZhongGuanCun Software Park, Haidian
  District, Beijing 100193, PRC
 
 
  ___
  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: [Users] ovirt 3.1 and live snapshots

2012-08-10 Thread Andrew Cathrow


- Original Message -
 From: Shu Ming shum...@linux.vnet.ibm.com
 To: Winfried de Heiden w...@dds.nl
 Cc: users@ovirt.org
 Sent: Friday, August 10, 2012 6:02:18 AM
 Subject: Re: [Users] ovirt 3.1 and live snapshots
 
 I am afraid you should upgrade qemu manually to 1.1 at least.

Use the virt-preview repository here
http://fedoraproject.org/wiki/Virtualization_Preview_Repository


 
 On 2012-8-10 17:41, Winfried de Heiden wrote:
  Hi all,
 
  As mentioned in the oVirt 3.1 release notes:
 
  Live snapshotting of virtual machines running on virtualization
  hosts
  with QEMU 1.1 or higher is now supported.
 
  What about Fedora 17? The Fedora version is still at 1.01:
 
  rpm -qi qemu-system-x86
  Name: qemu-system-x86
  Epoch   : 2
  Version : 1.0.1
  Release : 1.fc17
  Architecture: x86_64
  Install Date: vr 10 aug 2012 11:33:59 CEST
  Group   : Development/Tools
  Size: 13594005
  License : GPLv2+ and LGPLv2+ and BSD
  Signature   : RSA/SHA256, ma 30 jul 2012 20:05:08 CEST, Key ID
  50e94c991aca3465
  Source RPM  : qemu-1.0.1-1.fc17.src.rpm
  Build Date  : ma 30 jul 2012 03:34:33 CEST
  Build Host  : x86-01.phx2.fedoraproject.org
  Relocations : (not relocatable)
  Packager: Fedora Project
  Vendor  : Fedora Project
  URL : http://www.qemu.org/
  Summary : QEMU system emulator for x86
 
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
 
 
 
 --
 ---
 Shu Ming
 Open Virtualization Engineerning; CSTL, IBM Corp.
 Tel: 86-10-82451626  Tieline: 9051626 E-mail: shum...@cn.ibm.com or
 shum...@linux.vnet.ibm.com
 Address: 3/F Ring Building, ZhongGuanCun Software Park, Haidian
 District, Beijing 100193, PRC
 
 
 ___
 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: [Users] EL 6.3+ nodes and 3.1 compatibility?

2012-08-10 Thread Andrew Cathrow

- Original Message - 

 From: Dead Horse deadhorseconsult...@gmail.com
 To: Robert Middleswarth rob...@middleswarth.net
 Cc: users@ovirt.org
 Sent: Friday, August 10, 2012 9:22:30 AM
 Subject: Re: [Users] EL 6.3+ nodes and 3.1 compatibility?

 I am not using the dreyou repo. Rather a pure EL 6.3 and it's
 associated packages.

where are you getting your VDSM packages from - because the 3.1 packages aren't 
in RHEL or it's clones.


 - DHC

 On Fri, Aug 10, 2012 at 8:07 AM, Robert Middleswarth 
 rob...@middleswarth.net  wrote:

  On 08/10/2012 02:02 AM, Dead Horse wrote:
 

   With ovirt 3.1 EL 6.3 nodes will only work with a data center set
   to
   3.0 compatibility mode. Is there any reason(s) why EL 6.3+ nodes
   would not be allowed in a 3.1 compatibility level cluster? This
   assumes non use of gluster since adding vdsm-gluster to an EL 6
   node
   requires some work package update/version wise (not impossible).
  
 

   - DHC
  
 

   ___
  
 
   Users mailing list Users@ovirt.org
   http://lists.ovirt.org/mailman/listinfo/users
  
 
  What repo are you using? What build number? I have used both
  gluster
  and 3.1 compatibily nodes on top of CentOS 6.3.
  http://www.middleswarth.net/content/installing-ovirt-31-and-glusterfs-using-either-nfs-or-posix-native-file-system
 

  --
 
  Thanks
 
  Robert Middleswarth
 
  @rmiddle (twitter/IRC)
 
  ___
 
  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: [Users] oVirt and AWS

2012-07-23 Thread Andrew Cathrow

- Original Message - 

 From: Jamie Pow powster2...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Monday, July 23, 2012 3:41:17 PM
 Subject: Re: [Users] oVirt and AWS

 Hi,

 Thanks for the input. I have taken down my instance and my work is
 going to buy a server to build it on.

 Anywa, have to say it is a fantastic piece of software and look
 forward to using it.

Great to hear, looking forward to your feedback.



 :D:D

 On Sun, Jul 22, 2012 at 2:56 AM, Andrew Cathrow  acath...@redhat.com
  wrote:

  - Original Message -
 

   From: Jamie Pow  powster2...@gmail.com 
 
   To: Andrew Cathrow  acath...@redhat.com 
 
   Cc: users@ovirt.org
 
   Sent: Saturday, July 21, 2012 9:50:30 PM
 
   Subject: Re: [Users] oVirt and AWS
 

   Hi Andrew,
 

   Many thanks on your prompt response.
 

   I am using the one instance on AWS - ami is available.
 

   The setup consits of fed 16 and the latest stable of ovirt.
 

   I have installed the engine sucessfully and able to access the
 
   portals internal and external.
 

   The problem occurs when I try to add new host in the
   administrators
 
   portal.
 

  So the host you're trying to add is on Amazon - in which case it's
  going to fail during the bootstrapping because it doesn't support
  KVM virtualization (since it's just a VM on Xen)
 

   Hope this helps it is 3 o'clock here in scotland so am going to
   head
 
   for some shut eye.
 

   Will follow this up soon.
 

   Thanks again,
 

   Jamie
 

   On Sun, Jul 22, 2012 at 1:59 AM, Andrew Cathrow 
   acath...@redhat.com
 
wrote:
 

- Original Message -
 
  
 

 From: Jamie Pow  powster2...@gmail.com 
 
  
 
 To: users@ovirt.org
 
  
 
 Sent: Saturday, July 21, 2012 8:35:46 PM
 
  
 
 Subject: [Users] oVirt and AWS
 
  
 

 Hi Guys,
 
  
 

 Hope you are all well.
 
  
 

 I am currently putting together a test rig to use this
 software
 
 in
 
 my
 
  
 
 company for VM maanagement.
 
  
 

 I am using AWS to host this at the moment. I am having
 trouble
 
 adding
 
  
 
 a new host.
 
  
 

 When I enter the details and click ok I recieved an error
 telling
 
 me
 
  
 
 I cannot add host. Failed to create SSH..
 
  
 

 If anybody has managed to succesfully configure this on AWS
 
 and/or
 
  
 
 provide some pointers would be much appreciated.
 
  
 

Are you trying to use AWS VMs as hosts?
 
  
 

 Many thanks folks!
 
  
 

 Jamie
 
  
 
 ___
 
  
 
 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: [Users] oVirt and AWS

2012-07-21 Thread Andrew Cathrow

- Original Message - 

 From: Jamie Pow powster2...@gmail.com
 To: users@ovirt.org
 Sent: Saturday, July 21, 2012 8:35:46 PM
 Subject: [Users] oVirt and AWS

 Hi Guys,

 Hope you are all well.

 I am currently putting together a test rig to use this software in my
 company for VM maanagement.

 I am using AWS to host this at the moment. I am having trouble adding
 a new host.

 When I enter the details and click ok I recieved an error telling me
 I cannot add host. Failed to create SSH..

 If anybody has managed to succesfully configure this on AWS and/or
 provide some pointers would be much appreciated.

Are you trying to use AWS VMs as hosts?


 Many thanks folks!

 Jamie
 ___
 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: [Users] oVirt and AWS

2012-07-21 Thread Andrew Cathrow

- Original Message - 

 From: Jamie Pow powster2...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Saturday, July 21, 2012 9:50:30 PM
 Subject: Re: [Users] oVirt and AWS

 Hi Andrew,

 Many thanks on your prompt response.

 I am using the one instance on AWS - ami is available.

 The setup consits of fed 16 and the latest stable of ovirt.

 I have installed the engine sucessfully and able to access the
 portals internal and external.

 The problem occurs when I try to add new host in the administrators
 portal.

So the host you're trying to add is on Amazon - in which case it's going to 
fail during the bootstrapping because it doesn't support KVM virtualization 
(since it's just a VM on Xen)


 Hope this helps it is 3 o'clock here in scotland so am going to head
 for some shut eye.

 Will follow this up soon.

 Thanks again,

 Jamie

 On Sun, Jul 22, 2012 at 1:59 AM, Andrew Cathrow  acath...@redhat.com
  wrote:

  - Original Message -
 

   From: Jamie Pow  powster2...@gmail.com 
 
   To: users@ovirt.org
 
   Sent: Saturday, July 21, 2012 8:35:46 PM
 
   Subject: [Users] oVirt and AWS
 

   Hi Guys,
 

   Hope you are all well.
 

   I am currently putting together a test rig to use this software
   in
   my
 
   company for VM maanagement.
 

   I am using AWS to host this at the moment. I am having trouble
   adding
 
   a new host.
 

   When I enter the details and click ok I recieved an error telling
   me
 
   I cannot add host. Failed to create SSH..
 

   If anybody has managed to succesfully configure this on AWS
   and/or
 
   provide some pointers would be much appreciated.
 

  Are you trying to use AWS VMs as hosts?
 

   Many thanks folks!
 

   Jamie
 
   ___
 
   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: [Users] Managing Remote Access to Physical Workstations

2012-07-20 Thread Andrew Cathrow


- Original Message -
 From: Randall Wood randall.h.w...@alexandriasoftware.com
 To: users@ovirt.org
 Sent: Friday, July 20, 2012 3:34:16 PM
 Subject: [Users] Managing Remote Access to Physical Workstations
 
 I have an environment where I would like to be able to provide users
 with a single web interface from which they would be able to open a
 console on either a virtual machine or on a physical machine. Playing
 with a clean install of oVirt 3.1 suggests that oVirt is not capable
 of doing this.

No. oVirt's focus is virtual machines so the user portal only lets you open up 
consoles on VMs managed by oVirt engine.

When you say physical machines - would they be Linux or could they be Windows?
I might have an idea ..


 
 Has anyone successfully configured oVirt to provide this capability,
 or know of a system that could integrate with oVirt to meet that
 requirement?
 --
 Randall Wood
 Alexandria Software
 http://www.alexandriasoftware.com
 randall.h.w...@alexandriasoftware.com
 202.683.8604
 ___
 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: [Users] Migrating from KVM to oVirt 3.1 fails - corrupt OVF

2012-07-19 Thread Andrew Cathrow
Wasn't there an issue with dates in the OVF that caused this a few weeks ago?


- Original Message -
 From: Itamar Heim ih...@redhat.com
 To: Trey Dockendorf treyd...@gmail.com, Matthew Booth 
 mbo...@redhat.com
 Cc: users users@ovirt.org
 Sent: Wednesday, July 18, 2012 6:52:10 PM
 Subject: Re: [Users] Migrating from KVM to oVirt 3.1 fails - corrupt OVF
 
 On 07/18/2012 06:00 PM, Trey Dockendorf wrote:
  I'm attempting to fine-tune the process of getting my KVM/Libvirt
  managed VMs over into my new oVirt infrastructure, and the virt-v2v
  import is failing in the WUI with Failed to read VM 'dh-imager01'
  OVF, it may be corrupted.  I've attached both engine and vdsm logs
  that are a snapshot from when I ran the virt-v2v command until I
  saw
  the failure under Events.
 
 matt - any thoughts?
 
 
  virt-v2v command used...
 
  # virt-v2v -i libvirtxml -o rhev -os
  dc-vmarchitect.tamu.edu:/exportdomain dh-imager01.xml
  dh-imager01_sys.qcow2: 100%
  [===]D
  0h00m37s
  virt-v2v: dh-imager01 configured with virtio drivers.
 
  The xml has been modified numerous times based on past mailing list
  comments to have VNC and Network information removed, but still the
  same failure.  I've attached the latest XML that was used in the
  log's
  failure as dh-imager01.xml.  I've also tried passing hte bridge
  device
  (ovirtmgmt) in the above command with same failure results.
 
  Node and Engine are both CentOS 6.2, with vdsm-4.10.0-4 and
  ovirt-engine-3.1 respectively.
 
  Please let me know what other configuration information could be
  helpful to debug / troubleshoot this.
 
  Are there any other methods besides a virt-v2v migration that can
  allow me to use my previous KVM VMs within oVirt?
 
 
  Thanks
  - Trey
 
 
 
  ___
  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: [Users] What are you looking for from oVirt?

2012-07-05 Thread Andrew Cathrow
- Original Message -

 From: Romain Vrignaud rvrign...@gmail.com
 To: Dave Neary dne...@redhat.com, arch a...@ovirt.org,
 Users users@ovirt.org, board bo...@ovirt.org
 Sent: Friday, June 29, 2012 4:13:32 AM
 Subject: Re: [Users] What are you looking for from oVirt?

 Hello,

 I don't run currently any oVirt deployement in production but I have
 a lab.
 I used to run in production the old oVirt product (in rails).

 My best wishes for the future release of oVirt are :
 * GluserFS support as many of us
 * Nova (OpenStack Hypervisor) driver support (
 http://docs.openstack.org/trunk/openstack-compute/admin/content/selecting-a-hypervisor.html
 ).
 I choose oVirt because my first goal is to manage a virtualized
 datacenter with OSS. But we begin to look at private cloud
 deployement.
 I think Aeolus would work with oVirt virtualization backend but AFAIK
 it only support redhat based linux which is not possible for us as
 we run

 Aelous has a RHEVM/oVirt driver that works today.
 If there are problems getting Aeolus working with oVirt we should dig
 into it, there shouldn't be any issues.

 almost only debian server except for virtualisation layer. So we
 would like to deploy OpenStack but to rely on oVirt for KVM
 hypervisors.

 Out of interest what are you getting from OpenStack that you don't
 get from oVirt

 * Fully supported stateless ovirt-node

 Regards,

 Romain

 2012/6/28 Robert Middleswarth  rob...@middleswarth.net 

  On 06/15/2012 06:23 AM, Dave Neary wrote:
 

   Hi,
  
 

   On 06/13/2012 04:28 PM, Dave Neary wrote:
  
 

So - how are you using oVirt? Why did you choose it over
alternatives?
   
  
 
What do you like about it? and what would you like to see
change,
   
  
 
whether that is in terms of technical, process, or marketing
changes?
   
  
 
I'm here to help, but to do so I need your help first!
   
  
 

   Thank you to all those who have replied, on and off list, so far.
   For
   those of you who sent me private messages, I'll be (anonymously)
   collating your feedback and forwarding it on.
  
 

   The range of users who have replied so far includes:
  
 
   * Sysadmin at small web hosting business
  
 
   * Cost-sensitive IT department of an unrelated industry
  
 

  That would be me.
 

   * Hosting provider specialising in HA
  
 
   * Running a private cloud
  
 
   * Test lab set-up considering for production deployment
  
 

  Well no one should be crazy enough to go live with a product they
  haven't at least ran inside a testing lab.
 

   And the top features you've cited are:
  
 
   * Stateless hypervisor
  
 
   * Ability to migrate VMs
  
 

  Number one reason I am working with oVirt
 

   * RHEL and KVM
  
 

  We are a debian based org so changing over to the RHEL based OS's
  is
  more a pain then a benefit. KVM is still kinda young compared to
  both Xen / Vmware it seems to work well but there aren't as many
  os's covered by the vitro drivers and there seem to be more bugs /
  race conditions but that has been steadily changing as it has been
  getting more mature
 

   * Cost
  
 
   * The ability to have your preferred OS as both hypervisor and
   guest
   as a first class citizen
  
 
   * Aimed for data center use-case rather than cloud
  
 

  This would be number 2 in the list.
 

   And the top gaps you've identified so far:
  
 
   * Insufficient resources (docs) to help with production
   deployment
   on
   ovirt.org
  
 
   * Difficulty of configuration and getting started
  
 
   * You'd like to see a more diverse contributor community
  
 
   * Stability (unfortunately, I don't have any concrete examples of
   this from the commenter)
  
 
   * History on resource usage in hypervisors and guests
  
 
   * Integration with Gluster
  
 
   * Offer choices of guest agents with other distributions than
   RHEL
  
 

  I could have created this list myself. I have hit pretty much every
  one of these limits in the last few months working with the
  project.
  3.1 adds limited support for Gluster and ovirt seems to be more
  stable dispute F17 instability.
 

  As for the question of stability the file storage system in 3.0 can
  be a bit unstable. If your NFS share disappears for a few mins the
  file system tends to go offline and wont reactivate. Not sure about
  iscsi or FC since I don't have access to those file systems.
 

   This is all giving me great insight into who's here - please keep
   it
   coming!
  
 

   Cheers,
  
 
   Dave.
  
 

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

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


Re: [Users] Unable to run VM with Unable to create cgroup error message

2012-07-04 Thread Andrew Cathrow


- Original Message -
 From: Martin Kletzander mklet...@redhat.com
 To: xuejie chen xuejieche...@gmail.com
 Cc: users@ovirt.org
 Sent: Wednesday, July 4, 2012 4:12:07 AM
 Subject: Re: [Users] Unable to run VM with Unable to create cgroup error 
 message
 
 Hi,
 
 the only problem I could imagine is that there is really some
 directory
 missing, but you said it is there. Fromt his point I see two things
 you
 can try:
  1) run libvirt with debugging output enabled [1]
  2) try to create the directories manually

Is the cgroupfs mounted?


 
 Hopefully it'll give us more information on what's wrong.
 
 Martin
 
 On 07/03/2012 11:55 AM, xuejie chen wrote:
  Hi everyone,
  
  I created a Desktop VM1 with all default settings and added a 2G
  Disk
  to the VM1 in WebAdmin.
  But when I run the vm, it returns failure with the follow error
  message in WebAdmin.
  VM VM1 is down. Exit message: Unable to create cgroup for VM1
  
  My DateCenter contains one host(with OS is CentOS 6, VDSM version
  is
  4.9.6 and libvirt version is 0.9.4) and one NFS domain.
  And The cgroup Directory have already exits on the host.
  But why cannot I run the VM1?
  
  There are some error message in VDSM log
  
  File /usr/lib64/python2.6/site-packages/libvirt.py, line 2087, in
  createXML
 if ret is None: raise libvirtError('virDomainCreateXML()
 failed', conn=self)
  libvirtError: Unable to create cgroup for VM1: No such file or
  directory
  --
  
  There are some error message in libvirt log
  -
  error : virNetClientProgramDispatchError:170 : Unable to create
  cgroup
  for VM1: No such file or directory
  -
  
  There are log files in attachment
  
  
  Best wishes,
  Xuejie Chen
  
  
  
  ___
  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: [Users] Adding LDAP server directly with its FQDN.

2012-07-01 Thread Andrew Cathrow


- Original Message -
 From: Oved Ourfalli ov...@redhat.com
 To: Yair Zaslavsky yzasl...@redhat.com, Sharad Mishra 
 snmis...@linux.vnet.ibm.com
 Cc: users@ovirt.org
 Sent: Sunday, July 1, 2012 2:50:53 AM
 Subject: Re: [Users] Adding LDAP server directly with its FQDN.
 
 
 
 - Original Message -
  From: Yair Zaslavsky yzasl...@redhat.com
  To: users@ovirt.org
  Sent: Sunday, July 1, 2012 7:57:25 AM
  Subject: Re: [Users] Adding LDAP server directly with its FQDN.
  
  On 06/29/2012 11:14 PM, snmis...@linux.vnet.ibm.com wrote:
   
   Hi,
   
 Is there a way to directly add an LDAP server to ovirt?
 Currently
 I
   run engine-manage-domains with -domain=domain-name. This finds
   all the
   ldap servers in the domain. Can I skip this and just add the one
   I
   want?
   I have the fqdn of the ldap server.
   
   Regards
   Sharad Mishra
   IBM
  
  Hi Sharad,
  Currently - no such way.
  Bare in mind you need to provide also the user ID.
  In addition - it may be that not all DS providers hold information
  on
  the users in the same way, and we perform some normalization in
  order
  to
  store them at DB in the same format.
  However, I guess we can run this Guid encoding code at
  engine-manage-domains, and then, it will be possible to add the
  user
  (if
  you provide the baseDN FQDN) to the system.
  Feel free to suggest a patch ;)
  In addition, an idea that popped to my head - let's say you want to
  add
  100 users this way - will you provide for every one of them the
  baseDN?
  Maybe we should be able to configure a fefault base DN per domain?
  
 Hey,
 
 We do have an entry in vdc_options called LdapServers.
 It is a per-domain configuration, just like the other LDAP related
 configuration options.
 When looking for LDAP servers, the engine uses the ones in this
 configuration. If empty, it goes to the DNS.
 Currently the engine-manage-domains utility doesn't set this option,
 but if you would like to work with one LDAP server for testing
 purposes, or as a workaround, then you can set it manually:
 domain:1ldapserver1, domain2:ldapserver2

Would that mean that we can skip all the DNS SRV records?

 
 Note that it only supports one LDAP server per domain.


 
 Oved
  
   
   ___
   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: [Users] Quantum support

2012-06-25 Thread Andrew Cathrow


- Original Message -
 From: Rahul Upadhyaya rak...@gmail.com
 To: users@ovirt.org
 Sent: Monday, June 25, 2012 4:38:12 AM
 Subject: [Users] Quantum support
 
 
 Hi Folks,
 
 
 According to your road-map, when shall quantum support be available
 for oVirt ?
 

It's still work in progress - no ETA as yet, of course patches would help :-)

To help make sure all the use cases are scoped it'd be interesting to hear 
how/why you need Quantum.

Current details here : http://www.ovirt.org/wiki/Quantum_and_oVirt


 
 --
 Regards,
 Rahul
 ===
 
 ___
 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: [Users] Guest life-cycle

2012-06-20 Thread Andrew Cathrow


- Original Message -
 From: Dennis Jacobfeuerborn denni...@conversis.de
 To: users users@ovirt.org
 Sent: Wednesday, June 20, 2012 8:40:29 AM
 Subject: [Users] Guest life-cycle
 
 Hi,
 after being able to start my first guest I noticed two things:
 1) When I started the guest with the run once option the console
 button
 didn't become available. Navigating to another section of the GUI and
 back
 didn't help. I was only able to make is available by closing the
 browser
 tab and then going to the admin portal again from scratch.

there was an issue with the spice-xpi that was fixed in F17, I'd have to check 
to see if that made it to F16.
What OS are you on and what version of spice-xpi ?

 
 2) When my guest froze (due to nested virtualization experimentation
 that
 apparently doesn't work yet) I had no (obvious) way to kill the vm.
 Hitting
 the stop button apparently only sends a shutdown command but I
 couldn't
 find any way to issue a destroy command.

Shutdown requires guest agent. If you right click on the VM you can do a stop - 
which forces it down.

 After killing the qemu process on the host manually the guest in the
 portal
 gui apparently went into an unknown ? state which isn't surprising
 but
 now there seems to be no way to get rid of the vm.
 
 What is proper way to get rid of such a misbehaving guest?
 
 Regards,
   Dennis
 ___
 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: [Users] Guest life-cycle

2012-06-20 Thread Andrew Cathrow


- Original Message -
 From: Yaniv Kaul yk...@redhat.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users users@ovirt.org, Dennis Jacobfeuerborn denni...@conversis.de
 Sent: Wednesday, June 20, 2012 8:50:18 AM
 Subject: Re: [Users] Guest life-cycle
 
 - Original Message -
  
  
  - Original Message -
   From: Dennis Jacobfeuerborn denni...@conversis.de
   To: users users@ovirt.org
   Sent: Wednesday, June 20, 2012 8:40:29 AM
   Subject: [Users] Guest life-cycle
   
   Hi,
   after being able to start my first guest I noticed two things:
   1) When I started the guest with the run once option the
   console
   button
   didn't become available. Navigating to another section of the GUI
   and
   back
   didn't help. I was only able to make is available by closing the
   browser
   tab and then going to the admin portal again from scratch.
  
  there was an issue with the spice-xpi that was fixed in F17, I'd
  have
  to check to see if that made it to F16.
 
 Still in -testing ?
 http://dl.fedoraproject.org/pub/fedora/linux/updates/testing/16/x86_64/spice-xpi-2.7-3.fc16.x86_64.rpm

I guess we need more people to give it good karma

 
  What OS are you on and what version of spice-xpi ?
  
   
   2) When my guest froze (due to nested virtualization
   experimentation
   that
   apparently doesn't work yet) I had no (obvious) way to kill the
   vm.
   Hitting
   the stop button apparently only sends a shutdown command but I
   couldn't
   find any way to issue a destroy command.
  
  Shutdown requires guest agent. If you right click on the VM you can
  do a stop - which forces it down.
  
   After killing the qemu process on the host manually the guest in
   the
   portal
   gui apparently went into an unknown ? state which isn't
   surprising
   but
   now there seems to be no way to get rid of the vm.
   
   What is proper way to get rid of such a misbehaving guest?
   
   Regards,
 Dennis
   ___
   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: [Users] Guest life-cycle

2012-06-20 Thread Andrew Cathrow


- Original Message -
 From: Dennis Jacobfeuerborn denni...@conversis.de
 To: Andrew Cathrow acath...@redhat.com
 Cc: users users@ovirt.org
 Sent: Wednesday, June 20, 2012 8:57:07 AM
 Subject: Re: [Users] Guest life-cycle
 
 On 06/20/2012 02:45 PM, Andrew Cathrow wrote:
  
  
  - Original Message -
  From: Dennis Jacobfeuerborn denni...@conversis.de
  To: users users@ovirt.org
  Sent: Wednesday, June 20, 2012 8:40:29 AM
  Subject: [Users] Guest life-cycle
 
  Hi,
  after being able to start my first guest I noticed two things:
  1) When I started the guest with the run once option the console
  button
  didn't become available. Navigating to another section of the GUI
  and
  back
  didn't help. I was only able to make is available by closing the
  browser
  tab and then going to the admin portal again from scratch.
  
  there was an issue with the spice-xpi that was fixed in F17, I'd
  have to check to see if that made it to F16.
  What OS are you on and what version of spice-xpi ?
 
 The client is on F15 with spice-xpi-2.7-1. Should this affect the
 icon in
 the gui though? I thought spice would only come into play once I
 actually
 click that button and start the console.

It is an xpi issue. There's communication between the portal and the XPI 
regarding if a console is active. There was a bug in the older release of the 
XPI that meant that the status wasn't refreshed.

 
 
  2) When my guest froze (due to nested virtualization
  experimentation
  that
  apparently doesn't work yet) I had no (obvious) way to kill the
  vm.
  Hitting
  the stop button apparently only sends a shutdown command but I
  couldn't
  find any way to issue a destroy command.
  
  Shutdown requires guest agent. If you right click on the VM you can
  do a stop - which forces it down.
 
 This only seems to be available as long as the VM is still running.
 Now
 that it is in an unknown state that menu option is grayed out as is
 the
 remove option. How can I clean this up?
 
 Regards,
   Dennis
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] What are you looking for from oVirt?

2012-06-13 Thread Andrew Cathrow


- Original Message -
 From: Nathan Stratton nat...@robotics.net
 To: Dave Neary dne...@redhat.com
 Cc: arch a...@ovirt.org, Users users@ovirt.org, board 
 bo...@ovirt.org
 Sent: Wednesday, June 13, 2012 11:29:38 AM
 Subject: Re: [Users] What are you looking for from oVirt?
 
 On Wed, 13 Jun 2012, Dave Neary wrote:
 
  So - how are you using oVirt? Why did you choose it over
  alternatives? What
  do you like about it? and what would you like to see change,
  whether that is
  in terms of technical, process, or marketing changes? I'm here to
  help, but
  to do so I need your help first!
 
 Small private cloud deployments. We choose it because it was focused
 on
 KVM, RedHat driven, simple to manage, and libvirt based. Would love

What does your deployment look like - it's be great to understand how you're 
using it - eg. Linux guests only, Windows, size of deployment - do your users 
use poweruser portal etc.

 to see
 real glusterfs integration, quantum integration, and better API.

GlusterFS and Quantum are certainly in the works, but in a separate thread I'd 
love to hear feedback on the API what the issues/enhancements are.
Would you be able to post some initial comments on that?

thanks
Aic


 
 
 Nathan Stratton
 nathan at robotics.net
 http://www.robotics.net
 ___
 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: [Users] What are you looking for from oVirt?

2012-06-13 Thread Andrew Cathrow


- Original Message -
 From: Nathan Stratton nat...@robotics.net
 To: Andrew Cathrow acath...@redhat.com
 Cc: arch a...@ovirt.org, Users users@ovirt.org, board 
 bo...@ovirt.org, Dave Neary dne...@redhat.com
 Sent: Wednesday, June 13, 2012 11:57:35 AM
 Subject: Re: [Users] What are you looking for from oVirt?
 
 On Wed, 13 Jun 2012, Andrew Cathrow wrote:
 
  What does your deployment look like - it's be great to understand
  how you're using it - eg. Linux guests only, Windows, size of
  deployment - do your users use poweruser portal etc.
 
 I have 2 deployments I am working on with two different companies.
 
 The first is two clusters (SJC and NYC) each with 20 boxes PXEBooted
 to
 a backend NetApp. All guests are Linux (Centos, RHEL, and Fedora).
 One of
 the unique things with the clusters is they use read only linux and
 NFS
 root.
 
 The 2nd is still in design stage, but is starting out with 3 clusters
 (East / West US and Europe) each with 20 boxes. Each server is based
 on
 white label Xeon E5-2687W, 128GB RAM, 10GBase-T, and 12 SATA disks on
 a
 hardware RAID 6 controller. This is also going to use shared NFS read
 only
 root with PXEBoot from NetApps.
 
 I have been running GlusterFS on and off for 5 years and are looking
 at
 running GlusterFS on all the raw 300TB RAID6 in each server. Each
 server
 will be a brick, two servers with distribute for redundancy, 10
 distribute pairs then will be unified. I have been trying to use this
 for
 raw image store for years, but its just not ready, so we will use
 NetApp
 for that, however GlusterFS will be very handy for tier 2 bulk
 storage.
 
  GlusterFS and Quantum are certainly in the works, but in a separate
  thread I'd love to hear feedback on the API what the
  issues/enhancements are.
  Would you be able to post some initial comments on that?
 
 APIs are great today on the backend, we are looking at the ability to
 modify the front end so we can tie it into our portal allowing users
 to
 manage their VMs seamless with the other services we offer.

So are you looking to extend the power user portal or something more?



 
 
 Nathan Stratton
 nathan at robotics.net
 http://www.robotics.net
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Adding a new disk on a different Storage Domain

2012-06-12 Thread Andrew Cathrow


- Original Message -
 From: Patricio Bruna pbr...@itlinux.cl
 To: users@ovirt.org
 Sent: Tuesday, June 12, 2012 12:17:45 PM
 Subject: [Users] Adding a new disk on a different Storage Domain
 
 
 Hi,
 I have to Storage Domains, one is from SAS disk and the other from
 SATA.
 The first virtual disk is on the SAS Domain and i would like to
 create a second vdisk but this time on the SATA Domain.
 Is this possible?

It's a 3.1 feature http://www.ovirt.org/wiki/Category:Multiple_storage_domains




 
 
 Thanks
 
 
 
 
 
 Patricio Bruna V.
 IT Linux Ltda.
 Fono : (+56-2) 333 0578
 Móvil: (+56-9) 8899 6618
 Twitter: http://twitter.com/ITLinux
 
 
 
 ___
 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: [Users] Adding a new disk on a different Storage Domain

2012-06-12 Thread Andrew Cathrow


- Original Message -
 From: Patricio Bruna pbr...@itlinux.cl
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Tuesday, June 12, 2012 12:27:30 PM
 Subject: Re: [Users] Adding a new disk on a different Storage Domain
 
 Hi Andrew,
 So for now there is no way? Even from the CLI?

You could hack it using a vdsm hook but other than that no.

 
 
 
 
 
 El 12-06-2012, a las 12:25, Andrew Cathrow escribió:
 
 
 
 
 
 - Original Message -
 
 
 From: Patricio Bruna  pbr...@itlinux.cl 
 
 
 To: users@ovirt.org
 
 
 Sent: Tuesday, June 12, 2012 12:17:45 PM
 
 
 Subject: [Users] Adding a new disk on a different Storage Domain
 
 
 
 
 
 
 
 
 Hi,
 
 
 I have to Storage Domains, one is from SAS disk and the other from
 
 
 SATA.
 
 
 The first virtual disk is on the SAS Domain and i would like to
 
 
 create a second vdisk but this time on the SATA Domain.
 
 
 Is this possible?
 
 It's a 3.1 feature
 http://www.ovirt.org/wiki/Category:Multiple_storage_domains
 
 
 
 
 
 
 
 
 
 
 
 
 Thanks
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 Patricio Bruna V.
 
 
 IT Linux Ltda.
 
 
 Fono : (+56-2) 333 0578
 
 
 Móvil: (+56-9) 8899 6618
 
 
 Twitter: http://twitter.com/ITLinux
 
 
 
 
 
 
 
 
 
 
 
 ___
 
 
 Users mailing list
 
 
 Users@ovirt.org
 
 
 http://lists.ovirt.org/mailman/listinfo/users
 
 
 
 
 
 
 
 
 
 
 Patricio Bruna V.
 IT Linux Ltda.
 Fono : (+56-2) 333 0578
 Móvil: (+56-9) 8899 6618
 Twitter: http://twitter.com/ITLinux
 
 
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] Windows install / activation issues.

2012-06-11 Thread Andrew Cathrow


- Original Message -
 From: Robert Middleswarth rob...@middleswarth.net
 To: users@ovirt.org
 Sent: Sunday, June 10, 2012 10:44:03 PM
 Subject: [Users] Windows install / activation issues.
 
 I am slowly doing my stage two testing now.  I have been finding very
 few issues that is pretty good since 3.1 is just going into feature
 freeze but I did find one that is kinda a show stopper and weird for
 me.  I installed windows 2003 using my Dell CD on my Dell Hardware.
  On
 both ESXi and Xen Server windows authorization fine because the
 installer sees the Dell bias in some way but under oVirt it doesn't.
  From my research it looks like the feature is called SLP.  Is there
 anyway to pass the Dell SLP info to the installer like it is done
 under
 both Xen and Vmware ESXi?  I assume it would be a libVirt option of
 some
 kind I just can't find it.

Some specific SMBIOS strings are being passed to identify the hypervisor.
There isn't a feature that enabled passing select host bios strings in oVirt 
yet (patches welcome) but you can do this with a hook, see here

http://gerrit.ovirt.org/gitweb?p=vdsm.git;a=tree;f=vdsm_hooks/smbios;h=c61ce8e73dc66791eb0390be3e764541b34c1137;hb=HEAD


 
 Thanks
 Robert
 
 ___
 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: [Users] oVirt RPM for RHEL Co.

2012-06-07 Thread Andrew Cathrow


- Original Message -
 From: Dael Maselli dael.mase...@lnf.infn.it
 To: Dan Yasny dya...@redhat.com
 Cc: Oved Ourfalli ov...@redhat.com, users@ovirt.org
 Sent: Thursday, June 7, 2012 6:07:27 AM
 Subject: Re: [Users] oVirt RPM for RHEL  Co.
 
 I don't need SLA or support. I don't need RedHat.

You say that you don't need an SLA for software, only for your mailing list 
questions?

 
 Production is what I expect from a software that is developed for
 performance load balancing, high-avaliability, failover, etc.
 
 To me it seems natural, as I use to do with all Linux software, we
 use
 in production: Sendmail, Named Bind, 389 Directory Server, Mysql,
 Dovecot and so on. They are all on Scientific Linux or CentOS. Is
 this
 so strange?
 
 But finally, nobody answered my question:
 
  Do you plan to officially release oVirt for RedHat and
  derivates?

We do want to package oVirt 3.1 for EL6 however it comes behind fedora in terms 
of priority but it's something we certainly want to make happen.
There's extra work to do in addition to compiling and packaging oVirt, for 
example we need JBoss AS7 packaged in RPMs for EL6.

If this is important to you then the best way of making it happen quicker is to 
contribute, it was great to see dreyou filling this gap, that's the way open 
source projects work.

 
 Thank you again.
 
 Regards,
  Dael Maselli.
 
 
 
 On 07/06/12 08.08, Dan Yasny wrote:
 
  - Original Message -
  From: Dael Masellidael.mase...@lnf.infn.it
  To: Oved Ourfalliov...@redhat.com
  Cc: users@ovirt.org
  Sent: Wednesday, 6 June, 2012 7:46:45 PM
  Subject: Re: [Users] oVirt RPM for RHEL  Co.
 
 
 
  I'm sorry, I don't want to be polemical. I know about the
  wonderful
  work of dreyou, but I'm asking for something more official now.
 
  I need something in which I can reasonably trust along years,
  something like what happens for 389 Directory Server for
  example.
 
  oVirt instead is officially released only for Fedora, that has
  very
  short upgrade cycle, and I can't imagine to upgrade my production
  servers every 6 months.
  Production grade and very long lifecycles - sounds like you need to
  look at the downstream product of oVirt - RHEV
 
  I hope, and I think many will agree, that you will consider to add
  RedHat and derivates to the list of supported OS.
 
  Thank you very much.
 
  Best regards,
  Dael Maselli.
 
 
 
  On 06/06/12 17.30, Oved Ourfalli wrote:
 
  Perhaps this will help: http://www.dreyou.org/ovirt/ (didn't test
  it,
  but saw it as an answer here when other people asked about running
  oVirt on centos).
 
  Oved
 
  - Original Message -
 
  From: Dael Masellidael.mase...@lnf.infn.it  To:
  users@ovirt.org
  Sent: Wednesday, June 6, 2012 6:27:48 PM
  Subject: Re: [Users] oVirt RPM for RHEL  Co.
 
 
 
  Could you please answer this question?
 
  Thank you.
 
  Dael Maselli.
 
 
  On 27/02/12 12.04, Dael Maselli wrote:
 
  Hi,
 
  I was waiting the first release impatiently, when it was I
  suddenly
  downloaded the Installation Guide and I read:
 
  The packages provided via this mechanism are expected to work for
  users of Fedora, Red
  Hat Enterprise Linux, and other Enterprise Linux derivatives.
 
  I have Scientific Linux and/or Centos, but I can't find the rpm
  for
  these system (version 6.2).
 
  Do you plan to build and realease also for those OS?
 
  Thank you.
 
  Dael Maselli.
 
 
  --
  ___
 
  Dael Maselli  ---  INFN-LNF Computing Service  --
   +39.06.9403.2214
  ___
 
* http://www.lnf.infn.it/ * http://www.infn.it/ *
 
 * http://www.FrascatiScienza.it/ * http://www.BucoNero.eu/ *
  ___
 
  Democracy is two wolves and a lamb voting on what to have for
  lunch
  ___
 
  ___
  Users mailing list Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users --
  ___
 
  Dael Maselli  ---  INFN-LNF Computing Service  --
   +39.06.9403.2214
  ___
 
* http://www.lnf.infn.it/ * http://www.infn.it/ *
 
 * http://www.FrascatiScienza.it/ * http://www.BucoNero.eu/ *
  ___
 
  Democracy is two wolves and a lamb voting on what to have for
  lunch
  ___
  ___
  Users mailing list Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
  --
  ___
 
  Dael Maselli  ---  INFN-LNF Computing Service  --
   +39.06.9403.2214
  

Re: [Users] Steal Time Implemented?

2012-05-28 Thread Andrew Cathrow


- Original Message -
 From: Schorschi schors...@dc.rr.com
 To: users@ovirt.org
 Sent: Sunday, May 27, 2012 10:15:05 PM
 Subject: [Users] Steal Time Implemented?
 
 
 
 
 
 Given 'Steal Time' was introduced in RHEL 6.3? How long until same
 feature set will be in oVirt Nodes? Or is it already integrated?

Would we implement it in the node, or would this be something that we'd report 
in the guest agent and pass back through vdsm to the engine.


 
 
 ___
 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: [Users] Webadmin doesn't show iso images uploaded

2012-05-09 Thread Andrew Cathrow


- Original Message -
 From: Keith Robertson krobe...@redhat.com
 To: users@ovirt.org
 Sent: Wednesday, May 9, 2012 11:44:16 AM
 Subject: Re: [Users] Webadmin doesn't show iso images uploaded
 
 Have you tried the suggestions in [1]?
 
 [1] http://www.ovirt.org/wiki/Troubleshooting_NFS_Storage_Issues
 
 On 05/09/2012 12:30 PM, Christian Espinoza wrote:
  Hello, please could someone helpme?
  I can’t see two iso images that I uploaded to my iso domain
  The domain is active:

Presuming no other issues (selinux, etc) then on the main storage tab select 
the ISO domain and on the Images subtab if it's not listed there hit the 
refresh button.
Did you upload via iso uploader or copy manually?



 
  # engine-iso-uploader list
  Please provide the REST API password for the admin@internal oVirt
  Engine user (CTRL+D to abort):
  ISO Storage Domain Name   | Datacenter| ISO Domain
  Status
  iso   | Default   | active
 
  # ls -l
  total 1042836
  -rw-r-. 1 vdsm kvm 337315840 may  4 13:56
  CentOS-6.2-x86_64-minimal.iso
  -rw-r-  1 vdsm kvm 730540032 may  9 09:22
  Elastix-2.3.0-x86_64-bin-02abr2012.iso
 
  #pwd
  /iso/09f424ea-3d51-4445-b7e3-90b7ebb4ae64/images/----
 
  I can't use these images, because webadmin doesn't show it...
 
  What can I do?  - How can I delete cleanly these files?
 
  Thanks in advance
 
  Christian Espinoza
 
 
 
 
 
  ___
  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: [Users] request for WOL

2012-05-01 Thread Andrew Cathrow


- Original Message -
 From: Nicholas Kesick cybertimber2...@hotmail.com
 To: oVirt Mailing List users@ovirt.org
 Sent: Tuesday, May 1, 2012 5:29:42 PM
 Subject: Re: [Users] request for WOL
 
 
 
  Date: Tue, 1 May 2012 17:20:24 -0400
  From: acath...@redhat.com
  To: virtually...@gmail.com
  CC: users@ovirt.org
  Subject: Re: [Users] request for WOL
  
  
  
  - Original Message -
   From: Gary Scarborough virtually...@gmail.com
   To: users@ovirt.org
   Sent: Tuesday, May 1, 2012 3:58:41 PM
   Subject: [Users] request for WOL
   
   
   I would like to request Wake on LAN support be added to the Power
   Management interface. It seems like a good fall back for anyone
   who
   doesn't have proper power management capabilities.
  
  Fencing needs to reboot a node, WOL would only wake it up if it was
  suspended.
  
  
   
   --
   Gary Scarborough
   IST Lab Manager
   Rochester Institute of Technology
   Rochester NY
   
 But it could issue the reboot command via SSH no?

No. Fencing is used when the node is not responsive, if we could ssh into it 
then it's unlikely we'd be fencing it.
When a node isn't responsive we need a mechanism to reset it but also confirm 
that it's been dealt with, so using IPMI (which is in nearly all servers 
today, even whitebox), iLO, DRAC, IMM, etc allows us to connect to the 
management controller reboot it and confirm that it's been reset.

Other approaches we can take involve extending our use of sanlock.


 I was also interested in WOL and curious as to why it wasn't in there
 already. WOL allows the system to go into standby for power
 management (less desirable than Off, but standby could return to

actually more desirable than off in many cases - for example in the cluster 
policy we could put a node into powersaving mode and more quickly resurrect it 
when required.
That's been on the list for a long time - just needs patches .

 service faster). For poweroff, the shutdown command could be passed
 via SSH, but the system would have to prompt that manual booting
 would be required. Unless the system supports boot on WOL request.
 
 ___
 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: [Users] Failed to start VM

2012-04-26 Thread Andrew Cathrow


- Original Message -
 From: Mohsen Saeedi mohsen.sae...@gmail.com
 To: Itamar Heim ih...@redhat.com
 Cc: users@ovirt.org
 Sent: Thursday, April 26, 2012 2:53:01 PM
 Subject: Re: [Users] Failed to start VM
 
 
 
 
 
 Hi again
 
 I used the following command and it worked for me! great
 
 psql engine -U postgres -c UPDATE vdc_options set option_value =
 'rhel6.2.0' where option_name = 'EmulatedMachine'
 
 
 
 
 but why? I want to know about this problem concept. I know about psql
 command.

We need a stable machine type to ensure migration, you can have different 
qemu-kvm versions on different hosts but as long as they support the same 
stable machine type they will have compatibility for migration.
The setting which you set in database (but see patch below to make it a config 
option) allows you to specify the required machine type.
Fedora uses machine types like pc-0.15 pc-0.14 pc-1.0 where as RHEL users 
different machine types.


 
 Itamar Heim ih...@redhat.com wrote on Thu, 26 Apr 2012 10:06:39
 +0300:
 
 On 04/26/2012 09:19 AM, Mohsen Saeedi wrote:
 
 
 Hi
 
 I setup ovirt with vdsm on the CentOS 6.2 x64 . I configured anything
 correctly. I defined ISO Domain and Data Domain for iso file and
 virtual
 machine file under NFS storage. I made new virtual server with CentOS
 6.2 x64 and assigned redhat 6.2 x64 as linux type.
 
 But when i start VM it failed to start. I read libvirtd log and it
 write
 a error on libvirtd.log:
 
 2012-04-25 21:04:59.952+: 1705: error :
 qemuProcessReadLogOutput:1005 : internal error Process exited while
 reading console log output: Supported machines are:
 pc RHEL 6.2.0 PC (alias of rhel6.2.0)
 rhel6.2.0 RHEL 6.2.0 PC (default)
 rhel6.1.0 RHEL 6.1.0 PC
 rhel6.0.0 RHEL 6.0.0 PC
 rhel5.5.0 RHEL 5.5.0 PC
 rhel5.4.4 RHEL 5.4.4 PC
 rhel5.4.0 RHEL 5.4.0 PC
 
 What is the problem. I'm experience user on RHEL with 10 more years
 work
 as administrator and i have good knowledge about KVM and virt manager
 but i'm semi-pro on ovrit!
 
 
 Thanks for help
 
 
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
 look at EmulatedMachine parameter:
 http://lists.ovirt.org/pipermail/users/2012-January/000278.html
 http://www.ovirt.org/wiki/User:Lhornyak
 http://ovirt.org/wiki/Engine_Node_Integration
 http://gerrit.ovirt.org/#change,3893
 
 ___
 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: [Users] Failed to start VM

2012-04-26 Thread Andrew Cathrow


- Original Message -
 From: Mohsen Saeedi mohsen.sae...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org, Itamar Heim ih...@redhat.com
 Sent: Thursday, April 26, 2012 3:05:00 PM
 Subject: Re: [Users] Failed to start VM
 
 
 
 
 Thanks. but i have another problem. I changed attach cd but i got
 error when ovirt trying to updagte VM!
 
 2012-04-26 18:08:55.451+: 1629: error : virNetSocketReadWire:911
 : End of file while reading data: Input/output error
 2012-04-26 18:43:53.498+: 1636: error :
 qemuMonitorJSONCheckError:318 : internal error unable to execute
 QEMU command 'change': Device 'drive-ide0-1-0' is locked
 2012-04-26 18:45:35.922+: 1633: warning : qemuDomainObjTaint:1123
 : Domain id=4 name='Fedora'
 uuid=98ef9d18-b74a-4ef5-884b-34ca32a2a2b0 is tainted: custom-monitor
 
 It's unable to eject cd. what's the solution?
 
 and another question is where can i get the patch you told in your
 answer? i didn't see any file or link.
 
 

Last link at the bottom - http://gerrit.ovirt.org/#change,3893

 Thanks.
 
 Andrew Cathrow acath...@redhat.com wrote on Thu, 26 Apr 2012
 15:00:43 -0400 (EDT):
 
 - Original Message -
 
 From: Mohsen Saeedi mohsen.sae...@gmail.com To: Itamar Heim
 ih...@redhat.com Cc: users@ovirt.org Sent: Thursday, April 26,
 2012 2:53:01 PM
 Subject: Re: [Users] Failed to start VM
 
 
 
 
 
 Hi again
 
 I used the following command and it worked for me! great
 
 psql engine -U postgres -c UPDATE vdc_options set option_value =
 'rhel6.2.0' where option_name = 'EmulatedMachine'
 
 
 
 
 but why? I want to know about this problem concept. I know about psql
 command. We need a stable machine type to ensure migration, you can
 have different qemu-kvm versions on different hosts but as long as
 they support the same stable machine type they will have
 compatibility for migration.
 The setting which you set in database (but see patch below to make it
 a config option) allows you to specify the required machine type.
 Fedora uses machine types like pc-0.15 pc-0.14 pc-1.0 where as RHEL
 users different machine types.
 
 Itamar Heim ih...@redhat.com wrote on Thu, 26 Apr 2012 10:06:39
 +0300:
 
 On 04/26/2012 09:19 AM, Mohsen Saeedi wrote:
 
 
 Hi
 
 I setup ovirt with vdsm on the CentOS 6.2 x64 . I configured anything
 correctly. I defined ISO Domain and Data Domain for iso file and
 virtual
 machine file under NFS storage. I made new virtual server with CentOS
 6.2 x64 and assigned redhat 6.2 x64 as linux type.
 
 But when i start VM it failed to start. I read libvirtd log and it
 write
 a error on libvirtd.log:
 
 2012-04-25 21:04:59.952+: 1705: error :
 qemuProcessReadLogOutput:1005 : internal error Process exited while
 reading console log output: Supported machines are:
 pc RHEL 6.2.0 PC (alias of rhel6.2.0)
 rhel6.2.0 RHEL 6.2.0 PC (default)
 rhel6.1.0 RHEL 6.1.0 PC
 rhel6.0.0 RHEL 6.0.0 PC
 rhel5.5.0 RHEL 5.5.0 PC
 rhel5.4.4 RHEL 5.4.4 PC
 rhel5.4.0 RHEL 5.4.0 PC
 
 What is the problem. I'm experience user on RHEL with 10 more years
 work
 as administrator and i have good knowledge about KVM and virt manager
 but i'm semi-pro on ovrit!
 
 
 Thanks for help
 
 
 ___
 Users mailing list Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users look at
 EmulatedMachine parameter:
 http://lists.ovirt.org/pipermail/users/2012-January/000278.html
 http://www.ovirt.org/wiki/User:Lhornyak
 http://ovirt.org/wiki/Engine_Node_Integration
 http://gerrit.ovirt.org/#change,3893
 ___
 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: [Users] Failed to start VM

2012-04-26 Thread Andrew Cathrow


- Original Message -
 From: Andrew Cathrow acath...@redhat.com
 To: Mohsen Saeedi mohsen.sae...@gmail.com
 Cc: users@ovirt.org, Itamar Heim ih...@redhat.com
 Sent: Thursday, April 26, 2012 3:13:43 PM
 Subject: Re: [Users] Failed to start VM
 
 
 
 - Original Message -
  From: Mohsen Saeedi mohsen.sae...@gmail.com
  To: Andrew Cathrow acath...@redhat.com
  Cc: users@ovirt.org, Itamar Heim ih...@redhat.com
  Sent: Thursday, April 26, 2012 3:05:00 PM
  Subject: Re: [Users] Failed to start VM
  
  
  
  
  Thanks. but i have another problem. I changed attach cd but i got
  error when ovirt trying to updagte VM!
  
  2012-04-26 18:08:55.451+: 1629: error :
  virNetSocketReadWire:911
  : End of file while reading data: Input/output error
  2012-04-26 18:43:53.498+: 1636: error :
  qemuMonitorJSONCheckError:318 : internal error unable to execute
  QEMU command 'change': Device 'drive-ide0-1-0' is locked
  2012-04-26 18:45:35.922+: 1633: warning :
  qemuDomainObjTaint:1123
  : Domain id=4 name='Fedora'
  uuid=98ef9d18-b74a-4ef5-884b-34ca32a2a2b0 is tainted:
  custom-monitor
  
  It's unable to eject cd. what's the solution?
  
  and another question is where can i get the patch you told in your
  answer? i didn't see any file or link.
  
  
 
 Last link at the bottom - http://gerrit.ovirt.org/#change,3893

well, that's part of a series of changes ...
 
  Thanks.
  
  Andrew Cathrow acath...@redhat.com wrote on Thu, 26 Apr 2012
  15:00:43 -0400 (EDT):
  
  - Original Message -
  
  From: Mohsen Saeedi mohsen.sae...@gmail.com To: Itamar Heim
  ih...@redhat.com Cc: users@ovirt.org Sent: Thursday, April 26,
  2012 2:53:01 PM
  Subject: Re: [Users] Failed to start VM
  
  
  
  
  
  Hi again
  
  I used the following command and it worked for me! great
  
  psql engine -U postgres -c UPDATE vdc_options set option_value =
  'rhel6.2.0' where option_name = 'EmulatedMachine'
  
  
  
  
  but why? I want to know about this problem concept. I know about
  psql
  command. We need a stable machine type to ensure migration, you can
  have different qemu-kvm versions on different hosts but as long as
  they support the same stable machine type they will have
  compatibility for migration.
  The setting which you set in database (but see patch below to make
  it
  a config option) allows you to specify the required machine type.
  Fedora uses machine types like pc-0.15 pc-0.14 pc-1.0 where as RHEL
  users different machine types.
  
  Itamar Heim ih...@redhat.com wrote on Thu, 26 Apr 2012 10:06:39
  +0300:
  
  On 04/26/2012 09:19 AM, Mohsen Saeedi wrote:
  
  
  Hi
  
  I setup ovirt with vdsm on the CentOS 6.2 x64 . I configured
  anything
  correctly. I defined ISO Domain and Data Domain for iso file and
  virtual
  machine file under NFS storage. I made new virtual server with
  CentOS
  6.2 x64 and assigned redhat 6.2 x64 as linux type.
  
  But when i start VM it failed to start. I read libvirtd log and it
  write
  a error on libvirtd.log:
  
  2012-04-25 21:04:59.952+: 1705: error :
  qemuProcessReadLogOutput:1005 : internal error Process exited while
  reading console log output: Supported machines are:
  pc RHEL 6.2.0 PC (alias of rhel6.2.0)
  rhel6.2.0 RHEL 6.2.0 PC (default)
  rhel6.1.0 RHEL 6.1.0 PC
  rhel6.0.0 RHEL 6.0.0 PC
  rhel5.5.0 RHEL 5.5.0 PC
  rhel5.4.4 RHEL 5.4.4 PC
  rhel5.4.0 RHEL 5.4.0 PC
  
  What is the problem. I'm experience user on RHEL with 10 more years
  work
  as administrator and i have good knowledge about KVM and virt
  manager
  but i'm semi-pro on ovrit!
  
  
  Thanks for help
  
  
  ___
  Users mailing list Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users look at
  EmulatedMachine parameter:
  http://lists.ovirt.org/pipermail/users/2012-January/000278.html
  http://www.ovirt.org/wiki/User:Lhornyak
  http://ovirt.org/wiki/Engine_Node_Integration
  http://gerrit.ovirt.org/#change,3893
  ___
  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: [Users] rhev-guest for el5 and el5 derived

2012-04-23 Thread Andrew Cathrow


- Original Message -
 From: Nathanaël Blanchet blanc...@abes.fr
 To: users@ovirt.org
 Sent: Monday, April 23, 2012 3:41:14 PM
 Subject: [Users] rhev-guest for el5 and el5 derived
 
 
 Hello,
 
 I need to make rhev-agent work mainly on centos 5. For centos 6 it's
 easy, because we can directly find SRPMS on redhat ftp.
 So I tried many ways to build it on my own:
 
 
 1. git clone git://gerrit.ovirt.org/ovirt-guest-agent and
 ./autogen.sh. It claims Autoconf version 2.63 or higher is
 required but rhel 5 autoconf version is 2.59
 2. rpm -bb ovirt-guest-agent.spec.The issue is that I'm running
 i386 instead of an expected i686. If I change this required
 value in the SPEC file by doing ExclusiveArch: i686 x86_64 i386
 , it complains then : Group field must be present in the
 package: ovirt-guest-agent-pam-module.
 
 
 I'm stuck in any ways, It's a pity that rhel5x is the most used rhel
 system...

This came up on IRC earlier today. We realized that the SRPM for this package 
was on RHN but not on the FTP site, so we fixed it

http://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/RHEV/SRPMS/rhev-agent-2.3.16-3.el5.src.rpm


 --



 Nathanaël Blanchet
 
 Supervision réseau
 Pôle exploitation et maintenance
 Département des systèmes d'information
 227 avenue Professeur-Jean-Louis-Viala
 34193 MONTPELLIER CEDEX 5
 Tél. 33 (0)4 67 54 84 55
 Fax  33 (0)4 67 54 84 14 blanc...@abes.fr
 ___
 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: [Users] New to oVirt, I've got a couple of questions.

2012-03-28 Thread Andrew Cathrow


- Original Message -
 From: Adam vonNieda a...@vonnieda.org
 To: users@ovirt.org
 Sent: Wednesday, March 28, 2012 5:29:01 PM
 Subject: [Users] New to oVirt, I've got a couple of questions.
 
 
 
 
 Hi Folks,
 
 
 I've got oVirt 3.0 installed on a Fedora 16 machine, and I'm planning
 my data center. Great process, by the way, very straight forward.
 I'll have two host machines (on order) which I'll likely load with
 the oVirt image. These two hosts each will have a large amount of
 RAID 5 local storage. Here's my questions..
 
 
 Storage: If I'm using this local storage on each host, will I be able
 to migrate VM's from host A to host B if needed, or does storage
 need to be shared. I guess another way of asking the question is,
 what's the best way for me to set this up? :)

You'll need shared storage - NFS, iSCSI or Fiber channel. In the future they'll 
be other options such as native Gluster, but for now you'll need something like 
NFS.
 
 
 Networking: When I set up a logical network, how is that accessed
 from the physical network? For example, if my physical network is
 192.168.1.0, and my logical network is 155.223.44.0, how will I
 connect to port 80 on a virtual machine with the IP 155.223.44.5
 from IP 192.168.1.10. Is there port forwarding? I didn't see mention
 of it in the guide.
 
 
 Thanks very much!
 
 
 -Adam vonNieda
 ___
 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: [Users] disable ballooning mode

2012-03-22 Thread Andrew Cathrow


- Original Message -
 From: Michal Kopacki mkopa...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Thursday, March 22, 2012 4:26:10 AM
 Subject: Re: [Users] disable ballooning mode
 
 On Wed, 21 Mar 2012 09:08:35 -0400
 Andrew Cathrow acath...@redhat.com wrote:
 
  
  
  - Original Message -
   From: Michal Kopacki mkopa...@gmail.com
   To: Andrew Cathrow acath...@redhat.com
   Cc: users@ovirt.org
   Sent: Wednesday, March 21, 2012 9:05:33 AM
   Subject: Re: [Users] disable ballooning mode
   
   On Wed, 21 Mar 2012 08:12:45 -0400
   Andrew Cathrow acath...@redhat.com wrote:
   


- Original Message -
 From: Michal Kopacki mkopa...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Wednesday, March 21, 2012 8:08:53 AM
 Subject: Re: [Users] disable ballooning mode
 
 On Wed, 21 Mar 2012 07:51:45 -0400
 Andrew Cathrow acath...@redhat.com wrote:
 
  
  
  - Original Message -
   From: Michal Kopacki mkopa...@gmail.com
   To: users@ovirt.org
   Sent: Wednesday, March 21, 2012 3:59:00 AM
   Subject: [Users] disable ballooning mode
   
   I'm trying to get virtual windows and specific software
   on
   it working.
   Windows is working fine but i'm getting blue screen when
   trying
   to
   start this particular application (which works fine in
   vmware).
   I figureout that there could be some kind of problem with
   memory.
  
  what makes you think it's memory?
 
 
   a hunch ?

It's not ballooning - it's not configured. It's unlikely to be
memory
related. What's the application?
   
   
  Yes, I just realized that ballooning is not configured (during
  windows ballooning driver installation).
   
  Mentioned application is a software for switching voip calls.
  There
  is a bunch of helper appliactions (which are working fine),
  problem
  is with main application server/deamon. It is develop
  internaly
   by company I work for.
   
  We use this applications on many physical and wirtual servers
  (including kvm and xen on different hosting providers) and
  never
  see
  such behave as on ovirt.
  
  oVirt is using KVM under the covers.
 
 Yes, I'm aware of that. It's the reason I choose ovirt.
 
  What version of KVM have you tried it on and how is it configured
  (eg. libvirt xml or qemu command line)
 
I can't say. We use hosted environment with web panel
only (elastichosts.com)
 
I will try to start the same machine on different host with
clean
libvirt.

I'd try combinations of virtio-net -vs- emulated rtl driver and virtio-blk -vs- 
ide

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


Re: [Users] oVirt host requirement

2012-03-21 Thread Andrew Cathrow
The recommendation is wrong, (and in the downstream docs) realistically it 
should be 2GB minimum.

- Original Message -
 From: Laszlo Hornyak lhorn...@redhat.com
 To: Andre Kostur akos...@incognito.com
 Cc: users@ovirt.org
 Sent: Wednesday, March 21, 2012 3:32:40 AM
 Subject: Re: [Users] oVirt host requirement
 
 
 Virtualization hosts must have at least 10 GB of RAM. A minimum of
 an additional 1 GB for each
 virtual machine is also recommended.
 
 Not the first complaint, maybe we should update those numbers.  E.g.
 I 'only' have 8 GB of RAM in my hosts and works perfectly, I even
 run other jobs on my hosts.
 You need some hundred megabyte for the host OS plus the ram for your
 VMs.
 
 Laszlo
 
 - Original Message -
  From: Andre Kostur akos...@incognito.com
  To: users@ovirt.org
  Sent: Wednesday, March 21, 2012 1:59:26 AM
  Subject: [Users] oVirt host requirement
  
  
  
  Just checking to be sure that the Installation Guide doesn't have a
  typo, but do virtualization hosts really require 10 (ten) GB of RAM
  minimum, before even placing a VM onto it? (Page 8, Section
  2.1.2.2)
  
  
  
  --
  Andre Kostur
  ___
  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: [Users] disable ballooning mode

2012-03-21 Thread Andrew Cathrow


- Original Message -
 From: Michal Kopacki mkopa...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Wednesday, March 21, 2012 8:08:53 AM
 Subject: Re: [Users] disable ballooning mode
 
 On Wed, 21 Mar 2012 07:51:45 -0400
 Andrew Cathrow acath...@redhat.com wrote:
 
  
  
  - Original Message -
   From: Michal Kopacki mkopa...@gmail.com
   To: users@ovirt.org
   Sent: Wednesday, March 21, 2012 3:59:00 AM
   Subject: [Users] disable ballooning mode
   
   I'm trying to get virtual windows and specific software on it
   working.
   Windows is working fine but i'm getting blue screen when trying
   to
   start this particular application (which works fine in vmware). I
   figureout that there could be some kind of problem with memory.
  
  what makes you think it's memory?
 
 
   a hunch ?

It's not ballooning - it's not configured. It's unlikely to be memory related.
What's the application?

 
   I'm clueless to be honest.  First thing I've done was convert
   machine from virtualbox and start on ovirt - windows is ok,
   application is not.
   Second i made new windows installation and install mentioned app -
   bluescreen again.
 
 --
 Michal
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [Users] disable ballooning mode

2012-03-21 Thread Andrew Cathrow


- Original Message -
 From: Michal Kopacki mkopa...@gmail.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Wednesday, March 21, 2012 9:05:33 AM
 Subject: Re: [Users] disable ballooning mode
 
 On Wed, 21 Mar 2012 08:12:45 -0400
 Andrew Cathrow acath...@redhat.com wrote:
 
  
  
  - Original Message -
   From: Michal Kopacki mkopa...@gmail.com
   To: Andrew Cathrow acath...@redhat.com
   Cc: users@ovirt.org
   Sent: Wednesday, March 21, 2012 8:08:53 AM
   Subject: Re: [Users] disable ballooning mode
   
   On Wed, 21 Mar 2012 07:51:45 -0400
   Andrew Cathrow acath...@redhat.com wrote:
   


- Original Message -
 From: Michal Kopacki mkopa...@gmail.com
 To: users@ovirt.org
 Sent: Wednesday, March 21, 2012 3:59:00 AM
 Subject: [Users] disable ballooning mode
 
 I'm trying to get virtual windows and specific software on it
 working.
 Windows is working fine but i'm getting blue screen when
 trying
 to
 start this particular application (which works fine in
 vmware).
 I figureout that there could be some kind of problem with
 memory.

what makes you think it's memory?
   
   
 a hunch ?
  
  It's not ballooning - it's not configured. It's unlikely to be
  memory
  related. What's the application?
 
 
Yes, I just realized that ballooning is not configured (during
windows ballooning driver installation).
 
Mentioned application is a software for switching voip calls.
There
is a bunch of helper appliactions (which are working fine),
problem
is with main application server/deamon. It is develop internaly by
company I work for.
 
We use this applications on many physical and wirtual servers
(including kvm and xen on different hosting providers) and never
see
such behave as on ovirt.

oVirt is using KVM under the covers.
What version of KVM have you tried it on and how is it configured (eg. libvirt 
xml or qemu command line)


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


Re: [Users] spice issues preventing me using Ovirt (not been able to test it yet) - Is it possible to use VNC ?

2012-03-21 Thread Andrew Cathrow



- Original Message -
 From: Morgan Cox morganco...@gmail.com
 To: users@ovirt.org
 Sent: Wednesday, March 21, 2012 11:30:33 AM
 Subject: [Users] spice issues preventing me using Ovirt (not been able to 
 test it yet) - Is it possible to use VNC ?
 
 
 Hi
 
 
 For the last few weeks I have been tried to test Ovirt - but am
 failing due to spice not working...
 
 
 I have created a bugzilla ticket about my spice issues
 
 
 https://bugzilla.redhat.com/show_bug.cgi?id=805552
 
 
 At the minute spice just doesn't work for me - I have tried from
 multiple desktops - (1 FC16 1 opensuse 12.1) - both have the same
 spice versions (spice-xpi, etc).
 

Odd that spice is listening on port 65535
Can you check what port it's really listening on

On the hypervisor run  vdsClient -s 0 list  | grep displayPort


 
 All I want to do really is see Ovirt working, can I use VNC or is
 that a WIP?
 
 
 If I select VNC in Ovirt how do I connect (the spice icon is greyed
 out)
 
 
 Or (preferred) can anyone help me with spice?
 
 
 Regards
 
 
 
 
 ___
 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: [Users] How to use CLI to create localfs storage domain?

2012-03-16 Thread Andrew Cathrow


- Original Message -
 From: David Li david...@sbcglobal.net
 To: users@ovirt.org
 Sent: Friday, March 16, 2012 6:48:29 PM
 Subject: [Users] How to use CLI to create localfs storage domain?
 
 Hi,
 
   I need to create a localfs to store VMiso images. That is my engine
   and
 storage
 domain are both on the same machine. I tried the following but
 was in error.
 My
 question is what host-id I need to use in this case? I used the
 ovirt-node's
 host-id but apparently was wrong.
 

ISO storage domains can only be NFS today.


 
 [oVirt shell (connected)]# create storagedomain --name
 hs22-vm-iso --type
 iso --host-id b8619d1c-6ecb-11e1-8004-000c29cfd59e
 --storage-type
 localfs
 --storage-address 10.10.2.185 --storage-path
 /home/lid2/workspace/ovirt/oVirt/storage-domains
 
 
 unknown error:
 status: 400
 reason: Bad Request
 detail: [Can not add local Storage Domain to non local storage
 Host]
 
 
 
 David
 ___
 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: [Users] Linux Guest Agent

2012-03-14 Thread Andrew Cathrow


- Original Message -
 From: William E Johnson wejoh...@us.ibm.com
 To: users@ovirt.org
 Sent: Wednesday, March 14, 2012 10:49:50 AM
 Subject: [Users] Linux Guest Agent
 
 
 
 
 Does anyone know how you get the Ovirt-Guest Agent for Linux virtual
 machines. We would like to be able to see the IP listed in the
 Management Portal and we need to be able to query the IP address of
 Linux virtual machines from the API and we have noticed without the
 guest agent we are unable to complete this task. We are able to
 perform these with Windows virtual machines once we installed
 RHEV-Tools. Thank you for your help.
 

For RHEL guests the rhev guest agent (on RHN) works.
For fedora it's available here http://www.ovirt.org/releases/nightly/fedora/16/


 
 Bill
 ___
 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: [Users] Rest API for vmanager 3.0 (set VM ip address)

2012-03-13 Thread Andrew Cathrow


- Original Message -
 From: Messaoud Benantar mbena...@us.ibm.com
 To: users@ovirt.org
 Sent: Tuesday, March 13, 2012 12:13:25 PM
 Subject: [Users] Rest API for vmanager 3.0 (set VM ip address)
 
 
 Hi everyone,
 i am using the vmanager's 3.0 Rest API.
 have created a VM from an existing template (using http POST) and
 been trying to find a way to set the VMs ip address
 with no success. I tried supplying the ip address in the guest_info
 element during VM creation as in:
 guest_info
 ips
 ip address=x.x.x.x/
 /ips
 /guest_info

That's a read only property that shows the IP address of the virtual machine 
reported by the in-guest agent.

There's discussion going on about how we pass a payload to a VM that can handle 
things like in-guest configuration

http://www.ovirt.org/wiki/Features/VMPayload

 
 But the created VM ends up with the same ip address as that in the
 template.
 
 Anyone attempted to do something similar ? Is there another way of
 doing it. I tried the nics API but there seem to be no interface
 to modify a nic's ip address.
 
 Thank you.
 
 
 Regards,
 Messaoud Benantar
 
 ___
 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: [Users] Rest API for vmanager 3.0 (set VM ip address)

2012-03-13 Thread Andrew Cathrow
Not today, the guest would usually just pickup from DHCP
But that's the purpose of the VMPayload feature that's being discussed - a way 
to pass arbitrary data/config to the VM

- Original Message -
 From: Messaoud Benantar mbena...@us.ibm.com
 To: Andrew Cathrow acath...@redhat.com
 Cc: users@ovirt.org
 Sent: Tuesday, March 13, 2012 4:02:46 PM
 Subject: Re: [Users] Rest API for vmanager 3.0 (set VM ip address)
 
 Andrew -- thanks for the reply.
 Since guest_info of a vm is not modifiable, is there a way to set
 a VM's IP address.
 This seems like a really needed functionality when provisioning VMs
 through the Rest API.
 
 Regards,
 Messaoud Benantar
 
 
 
 
 From: Andrew Cathrow acath...@redhat.com
 To: Messaoud Benantar/Austin/IBM@IBMUS
 Cc: users@ovirt.org
 Date: 03/13/2012 01:30 PM
 Subject: Re: [Users] Rest API for vmanager 3.0 (set VM ip address)
 
 
 
 
 
 
 - Original Message -
  From: Messaoud Benantar mbena...@us.ibm.com
  To: users@ovirt.org
  Sent: Tuesday, March 13, 2012 12:13:25 PM
  Subject: [Users] Rest API for vmanager 3.0 (set VM ip address)
  
  
  Hi everyone,
  i am using the vmanager's 3.0 Rest API.
  have created a VM from an existing template (using http POST) and
  been trying to find a way to set the VMs ip address
  with no success. I tried supplying the ip address in the
  guest_info
  element during VM creation as in:
  guest_info
  ips
  ip address=x.x.x.x/
  /ips
  /guest_info
 
 That's a read only property that shows the IP address of the virtual
 machine reported by the in-guest agent.
 
 There's discussion going on about how we pass a payload to a VM that
 can handle things like in-guest configuration
 
 http://www.ovirt.org/wiki/Features/VMPayload
 
  
  But the created VM ends up with the same ip address as that in the
  template.
  
  Anyone attempted to do something similar ? Is there another way of
  doing it. I tried the nics API but there seem to be no interface
  to modify a nic's ip address.
  
  Thank you.
  
  
  Regards,
  Messaoud Benantar
  
  ___
  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: [Users] Can I bypass VDSM?

2012-03-09 Thread Andrew Cathrow
If you still want to use the ovirt-engine then this isn't an option, but if you 
want to handle all the management yourself than this will work. 

Li, David l...@cloudshield.com wrote:

Hi,

Is it possible to bypass VDSM but use libvirt directly to manage ovirt node?


David

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


Re: [Users] oVirt/RHEV fencing; a single point of failure

2012-03-03 Thread Andrew Cathrow


- Original Message -
 From: Perry Myers pmy...@redhat.com
 To: xrx xrx-ov...@xrx.me, Ryan O'Hara roh...@redhat.com, Andrew 
 Beekhof abeek...@redhat.com
 Cc: users@ovirt.org
 Sent: Saturday, March 3, 2012 3:16:02 PM
 Subject: Re: [Users] oVirt/RHEV fencing; a single point of failure
 
 On 03/03/2012 11:52 AM, xrx wrote:
  Hello,
  
  I was worried about the high availability approach taken by
  RHEV/oVirt.
  I had read the thread titled Some thoughts on enhancing High
  Availability in oVirt but couldn't help but feel that oVirt is
  missing
  basic HA while it's developers are considering adding (and in my
  opinion
  unneeded) complexity with service monitoring.
 
 Service monitoring is a highly desirable feature, but for the most
 part
 (today) people achieve it by running service monitoring in a layered
 fashion.
 
 For example, running the RHEL HA cluster stack on top of VMs on RHEV
 (or
 Fedora Clustering on top of oVirt VMs)
 
 So we could certainly skip providing service HA as an integral
 feature
 of oVirt and continue to leverage the Pacemaker style service HA as a
 layered option instead.
 
 In the past I've gotten the impression that tighter integration and a
 single UI/API for managing both VM and service HA was desirable.
 
  It all comes down to fencing. Picture this: 3 HP hypervisors
  running
  RHEV/oVirt with iLO fencing. Say hypervisor A runs 10 VMs, all of
  which
  are set to be highly available. Now suppose that hypervisor A has a
  power failure or an iLO failure (I've seen it happen more than once
  with
  a batch of HP DL380 G6s). Because RHEV would not be able to fence
  the
  hypervisor as it's iLO is unresponsive; those 10 HA VMs that were
  halted
  are NOT moved to other hypervisors automatically.
  
  I suggest that oVirt concentrates on having support for multiple
  fencing
  devices as a development priority. SCSI persistent reservation
  based
  fencing would be an ideal secondary, if not primary, fencing
  device; it
  would be easy to set up for users as SANs generally support it and
  is
  proven to work well, as seen on Red Hat clusters.
 
 Completely agree here.  The Pacemaker/rgmanager cluster stacks
 already
 support an arbitrary number of fence devices per host, to provide
 support for both redundant power supplies and also for redundant
 fencing
 devices.  In order to provide resilient service HA, fixing this would
 be
 a prerequisite anyhow.  I've cc'd Andrew Beekhof from the
 Pacemaker/stonith_ng, since I think it might be useful to model the
 fencing for oVirt similarly to how Pacemaker/stonith_ng does it.
 Perhaps there's even some code that could be reused for this as well.
 
 As for SCSI III PR based fencing... the trouble here has been that
 the
 fence_scsi script provided in fence-agents is Perl based, and we were
 hesitant to drag Perl into the list of required things on oVirt Node
 (and in general)
 
 on the other hand, fence-scsi might not be the right level of
 granularity for oVirt based SCSI III PR based fencing anyhow.
  Perhaps
 better would be to just have vdsm directly call sg_persist commands
 directly.
 
 I've cc'd Ryan O'Hara who wrote fence_scsi and knows a fair bit about
 SCSI III PR.  If oVirt is interested in pursuing this, perhaps he can
 be
 of assistance.

There's also sanlock which plays a role here. In the past we required some form 
of fencing action but once sanlock is integrated that provides another path.

 
  I have brought up this point about fencing being a single point of
  failure in RHEV with a Red Hat employee (Mark Wagner) during the
  RHEV
  virtual event; but he said that it is not. I don't see how it
  isn't; one
  single loose iLO cable and the VMs are stuck until there is manual
  intervention.
 
 Agreed.  This is something that should be easily fixed in order to
 provide greater HA.
 
 That being said, I still think more tightly integrated service HA is
 a
 good idea as well.
 
 Perry
 ___
 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: [Users] Can anyone help? Spice not connecting - I have spice-xpi installed.

2012-03-01 Thread Andrew Cathrow
The webui will write out a hostname and port number to connect to.
Can your client resolve the ovirt node's name?

- Original Message -
 From: Morgan Cox morganco...@gmail.com
 To: users@ovirt.org
 Sent: Thursday, March 1, 2012 8:00:02 PM
 Subject: [Users] Can anyone help? Spice not connecting - I have spice-xpi 
 installed.
 
 
 Hi
 
 I have been trying for hours to install a vm in Ovirt and having no
 joy., Spice is not working - I just get a black popup window
 
 I am connecting from a Fedora16 desktop - I have spice-XPI installed.
 can see 'press Shift+f12' to release mouse etc.
 
 My setup :-
 
 I have a 3 server setup
 - 1. Ovirt engine (Lan address + external address)
 - 2. Storage node - NFS server (LAN address and external address)
 - 3. Ovirt node (from the node .iso) - only LAN address
 
 The Engine server is a default FC16 install. the node is from the
 ovirt node .iso.
 
 I don't think its firewall related - I tried disabling firewalls on
 all servers.
 
 Once I try spice the icon is greyed out afterwards.
 
 In IRC it was suggested to run Bind from server 1 - I have done that
 and added DNS entrys in the LAN range for all 3 servers - all 3
 servers are using bind from server1 as their only nameserver in
 resolv.conf
 
 I am trying to connect from my Fedora16 Desktop
 
 When I try to connect I see in /var/log/messages
 
 Mar 1 19:34:43 fedora16 spice: Warning: failed to connect: Connection
 timed out (110)
 
 Any ideas how to investigate this further.
 
 I am dying to test out a VM but with no spice I am presently unable
 to...
 
 Any ideas will be welcomed - i'm 1/2 thinking about re-installing
 with all external ips (but that will make transfer speeds slower..)
 
 ___
 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: [Users] Can someone help me with moving a windows server 2008 to ovirt?

2012-02-29 Thread Andrew Cathrow
google for virt-v2v - it's a tool that allows you to migrate from an ESX server 
to RHEV, it'll work with oVirt too.



- Original Message -
 From: Dominic Kaiser domi...@bostonvineyard.org
 To: users@ovirt.org
 Sent: Wednesday, February 29, 2012 11:00:54 AM
 Subject: [Users] Can someone help me with moving a windows server 2008 to 
 ovirt?
 
 
 So I have been looking at how to move windows 2008 and R2 servers
 from vmware esxi4 over to ovirt. I moved my Linux servers over with
 clonezilla. But windows needs a sysprep and generalize not to
 mention uninstalling vmtools and vmware drivers. I have done this. I
 then use clonezilla to put the image onto a thinprovisioned drive on
 ovirt. It starts to boot then blue screen of death. Am I missing
 something other than syspreping the windows machine and uninstalling
 the vmware drivers? Also is there a better way?
 
 
 P.S. Also I have ovirt up in a production envirenment and is running
 rock solid for the past month great job guys!
 
 
 Thanks again,
 
 
 --
 Dominic Kaiser
 Greater Boston Vineyard
 Director of Operations
 
 cell: 617-230-1412
 fax: 617-252-0238
 email: domi...@bostonvineyard.org
 
 
 
 ___
 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: [Users] Questions about Ovirt flexibility

2012-02-12 Thread Andrew Cathrow


- Original Message -
 From: Mario Giammarco mgiamma...@gmail.com
 To: users@ovirt.org
 Sent: Sunday, February 12, 2012 4:54:24 PM
 Subject: [Users] Questions about Ovirt flexibility
 
 Hello,
 I have in my server lab several machines:
 
 - with debian or ubuntu
 - without virtualization extensions.
 
 So I ask:
 
 - is the ovirt agent (not the manager) installable on
 debian/ubuntu/gentoo?

Not yet but community work in progress (patches welcome!)

 - is the agent compatible with rhev?
RHEV isn't compatible with oVirt, in the same way that Fedora packages don't 
work on RHEL

 - can ovirt manager use rhev agent?
Versions are different so you'll need to use oVirt agent instead.

 - can ovirt use servers without virtualization extensions but with
 QEMU
 installed?

No we explicitly require KVM.

 
 
 Thanks in advance for any reply!
 
 
 Mario
 
 ___
 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: [Users] Ovirt Support life (timeframe) - upgrade path ?

2012-02-12 Thread Andrew Cathrow


- Original Message -
 From: Gary Scarborough virtually...@gmail.com
 To: users@ovirt.org
 Sent: Friday, February 10, 2012 9:56:04 PM
 Subject: Re: [Users] Ovirt Support life (timeframe) - upgrade path ?
 
 
 
 
 
 On Fri, Feb 10, 2012 at 8:26 AM, Perry Myers  pmy...@redhat.com 
 wrote:
 
 
 
 On 02/10/2012 08:03 AM, Mike Burns wrote:
  I answered with my limited knowledge on IRC, but I'll answer here
  too
  for those who didn't see the IRC questions.
  
  On Fri, 2012-02-10 at 03:48 -0700, Robyn Bergeron wrote:
  On 02/10/2012 03:42 AM, Morgan Cox wrote:
  Hi.
  
  As Fedora the default system that Ovirt is packaged for does this
  mean that Ovirt will have the same (short) support life of 18
  months ? I ask as that is a bit short to have in enterprise ..
  
  There is always RHEV if you want longer support...
 
 Right, I think the first question we should be asking here is...
 
 Morgan, what do you mean specifically by support?
 
 Since it's an upstream project, typically each new release would
 obviate
 the previous one, and new features would only go into the latest
 version.
 
 One valid question is whether or not bugfixes will only go into the
 latest version, or if the immediate prior version will get updates.
 (For example, bugfixes are backported to Fedora 15 even though Fedora
 16
 is out)
 
 Also, the term support from an upstream perspective is much different
 than from a product perspective.
 
 Perry
 
 
 ___
 Users mailing list
 Users@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/users
 
 
 So on a follow up question: Is any consideration being given to RHEL
 as far as compatibility? Will Ovirt features be held back if adding
 them would be impossible to do with RHEL? Like a feature requiring a
 major update to a RHEL package? Or is it up to the RHEV developers
 to sort it all out for their needs? It won't be long before Fedora
 outpaces RHEL on version levels, depending on the time frame for
 RHEL 7. RHEL 5 had a very long life span and was quite dated by the
 time RHEL 6 shipped.

What does held back mean? 
That's like asking if Fedora will be held back because of RHEL.
Upstream is upstream - it's where new features are developed sometimes they can 
be backported, other times it's not possible and means waiting for a major 
release.



 
 --
 Gary Scarborough
 IST Lab Manager
 Rochester Institute of Technology
 Rochester NY
 
 ___
 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: [Users] ANNOUNCE: oVirt First Release

2012-02-09 Thread Andrew Cathrow
Congratulations to the team - great job.



- Original Message -
 From: Ofer Schreiber oschr...@redhat.com
 To: annou...@ovirt.org, users@ovirt.org
 Sent: Thursday, February 9, 2012 2:15:15 PM
 Subject: ANNOUNCE: oVirt First Release
 
 I'm happy to announce the first community release of oVirt since the
 code was open sourced.
 
 The first release includes:
 
 * All the components required to operate a running oVirt installation
 * oVirt Engine is now running on Jboss AS7 as the application server
 * A new Python SDK to support the development of software utilizing
 the ovirt-engine APIs
 * Fedora based oVirt Node
 
 The release can be downloaded from:
 
 http://www.ovirt.org/get-ovirt/
 
 The direct download links are:
 
 http://ovirt.org/releases/stable/src/ovirt-engine-3.0.0_0001.tar.gz
 http://ovirt.org/releases/stable/src/ovirt-engine-sdk-1.3.tar.gz
 http://ovirt.org/releases/stable/src/ovirt-node-2.2.2.tar.gz
 
 Release notes:
 
 http://www.ovirt.org/wiki/Release_Notes
 
 Installation Guide:
 
 http://www.ovirt.org/w/images/a/a9/OVirt-3.0-Installation_Guide-en-US.pdf
 
 For the entire oVirt community, thanks for your participation in
 making this release happen. In particular, thanks to anyone who
 contributed to this first release through testing, submitting
 patches, and bug reporting.
 
 Ofer
 oVirt release manager, on behalf of the oVirt team.
 ___
 Announce mailing list
 annou...@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/announce
 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users