Re: [ovirt-users] iso uploader times out

2015-01-26 Thread Simone Tiraboschi


- Original Message -
> From: "Mikola Rose" 
> To: users@ovirt.org
> Sent: Monday, January 26, 2015 5:36:47 AM
> Subject: [ovirt-users] iso uploader times out
> 
> Hi list members,
> 
> Just finished deploying a self hosted engine. But i am having a problem
> uploading an iso. It seems to be timing out..
> 
> engine-iso-uploader -i iso upload rhel-server-6.6-x86_64-dvd.iso
> Please provide the REST API password for the admin@internal oVirt Engine user
> (CTRL+D to abort):
> Uploading, please wait...
> ERROR: mount.nfs: Connection timed out
> 
> I am a little confused as the host machine has access to the NFS shares but
> the engine vm does not yet I have created an iso storage item successfully
> so the engine can see the nfs share?
> 
> Any idea on how I can trouble shoot this?

Can you please check the iso NFS export ACL as described here [1]?
If you created it via engine setup, now by default only engine host can access 
it so if you want to access it from other hosts you have to extend that ACL.
If it not enough please check also the firewall rules.

[1] http://www.ovirt.org/Troubleshooting_NFS_Storage_Issues#ISO_DOMAIN


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


Re: [ovirt-users] Details of the host

2015-01-26 Thread Juan Hernández
On 01/24/2015 03:31 PM, ChandraShekar Shastri wrote:
> Thanks Juan,
> 
> Can I login into the ovirt-engine url using the encrypted password. If
> it is possible what are the encryption method that it allows.
> 
> Please share the code if you have it handy.
> 
> Thanks,
> Chandrashekar
> 

The Python SDK only supports "Basic" authentication. Version 3.6 will
also support Kerberos authentication. There are no plans at the moment
to support any other authentication mechanism in the Python SDK.

> On Fri, Jan 23, 2015 at 1:46 PM, Juan Hernández  > wrote:
> 
> On 01/21/2015 02:27 PM, ChandraShekar Shastri wrote:
> > Hi All,
> >
> > I want to get the details of the Host without activating is there
> a way
> > to do it.
> > I want to query the RHEV-Manager and would like to get the details of
> > MAC address without activating it.
> >
> > Do you have the script to do this.
> >
> > Thanks,
> > Chandrashekar
> >
> 
> Assuming that the host has already been added to the system then you can
> get the details with a Python script like this:
> 
> #!/usr/bin/python
> 
> from ovirtsdk.api import API
> from ovirtsdk.xml import params
> 
> api = API(
>   url='https://ovirt.example.com/ovirt-engine/api',
>   username='admin@internal',
>   password='**',
>   insecure=True
> )
> 
> host = api.hosts.get(name="myhost")
> nics = host.nics.list()
> for nic in nics:
> print("%s: %s" % (nic.get_name(), nic.get_mac().get_address()))
> 
> api.disconnect()
> 
> This will print something like this:
> 
> eth0: 52:54:00:9d:a7:26
> 
> If the host hasn't been added you can add it, without activating it:
> 
> #!/usr/bin/python
> 
> from ovirtsdk.api import API
> from ovirtsdk.xml import params
> 
> api = API(
>   url='https://rhevm35.example.com/ovirt-engine/api',
>   username='admin@internal',
>   password='**',
>   insecure=True,
> )
> 
> api.hosts.add(
>   host = params.Host(
> name="myhost",
> address="myhost.example.com ",
> root_password="**"
>   )
> )
> 
> api.disconnect()
> 
> --
> Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
> 3ºD, 28016 Madrid, Spain
> Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat
> S.L.
> 
> 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 


-- 
Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
3ºD, 28016 Madrid, Spain
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] VMs unknown state and ovirt node Non Responsive

2015-01-26 Thread Juan Hernández
On 01/23/2015 08:42 PM, Grzegorz Szypa wrote:
> Thanks.
> 
> It was resolve problem, but question,but the question is whether the
> problem is resolved JAVA or rather fall off ??
> 
> Regards,
> Grzegorz Szypa
> 

The actual problem is that there is no way to tell the oVirt engine to
use a protocol other than SSLv3 to communicate with hosts. That has been
fixed in version 3.5:

  http://gerrit.ovirt.org/34917

Given that this is an important security issue I'd expect to see it
fixed in 3.4.z as well. While/if that doesn't happen then your only
alternative to fix properly the issue is to upgrade to 3.5 and then make
sure that the VdsmSSLProtocol configuration parameter is set to TLSv1.

> 2015-01-23 9:46 GMT+01:00 Juan Hernández  >:
> 
> On 01/23/2015 05:20 AM, Grzegorz Szypa wrote:
> > Hi.
> >
> > I have a simillar problem like in this link:
> > https://access.redhat.com/discussions/1326793
> > https://bugzilla.redhat.com/show_bug.cgi?id=1165269
> >
> > Similar, becouse I worked it out with the VM uknown status, but I
> still
> > have problem with host (node). It is all in one installaltion,
> therefore
> > i dont have to remove host and add again (it is only one host
> portal and
> > node on the same host), because there are still connected to the VMs.
> >
> > It is ovirt 3.4.4 release in latest updates on Centos 6.6 (Centos 6.5
> > Final).
> >
> > Can I do smoethings or can I upgrade to ovirt 3.5 release (safely
> > without losing anything) if this helps.
> >
> > If anyone would like to help me remotely (for charity), I would be
> > grateful :)
> >
> > --
> > G.Sz.
> 
> If your problem is related to that link, then you should have tried to
> downgrade the JDK, and it should have worked. To double check you can
> check the
> /usr/lib/jvm/java-1.7.0-openjdk-*/jre/lib/security/java.security file.
> It may contain this line, at the very end:
> 
>   jdk.tls.disabledAlgorithms=SSLv3
> 
> That is because of the recent security problems with SSLv3. If you need
> to solve your problem urgently and you are sure that you won't be
> affected by those security problems then you can just comment out this
> line and restart the engine.
> 
> Remember to undo this change once you upgrade to 3.5.
> 
-- 
Dirección Comercial: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, planta
3ºD, 28016 Madrid, Spain
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B82657941 - Red Hat S.L.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Slide Templates--New for 2015!

2015-01-26 Thread Marcelo Barbosa
Thank you Brian.

Cheers,

firemanxbr

On Wed, Jan 21, 2015 at 8:13 PM, Brian Proffitt  wrote:

> All:
>
> I have been asked to provide slide templates for presentations that might
> be created for future events. Through 2014, we have been using the
> green-on-white slide template, and now, thanks to Eidan Hildesheim, we have
> a new 2015 edition that is based more on the Patternfly interface.
>
> These template presentations are provided to build new slides for oVirt
> presentations. They can be downloaded and used as-is, or Saved As template
> files within OpenOffice and LibreOffice.
>
> The templates, as well as a whole host of pre-made presentations (which
> are all under the Creative Commons license), are available on the oVirt.org
> slide page[1].
>
> Thanks!
> BKP
>
> [1] http://www.ovirt.org/OVirt_Slide_Decks
>
> --
> Brian Proffitt
>
> Community Liaison
> oVirt
> Open Source and Standards, Red Hat - http://community.redhat.com
> Phone: +1 574 383 9BKP
> IRC: bkp @ OFTC
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Does my Storage Domain crashed or is this iSCSI LUN's a problem?

2015-01-26 Thread shimano
Hi guys,

I'm trying to run one of my storage domains, which experienced failure.
Unfortunately, I meet a very nasty error (Storage domain does not exist).

Could someone tell me, how to try to restore this domain?

P.S.
It's an oVirt 3.4.2-1.el6

**

/var/log/messages:
Jan 26 12:48:49 node002 vdsm TaskManager.Task ERROR
Task=`10d02993-b585-448f-9a50-bd3e8cda7082`::Unexpected error#012Traceback
(most recent call last):#012  File "/usr/share/vdsm/storage/task.py", line
873, in _run#012return fn(*args, **kargs)#012  File
"/usr/share/vdsm/logUtils.py", line 45, in wrapper#012res = f(*args,
**kwargs)#012  File "/usr/share/vdsm/storage/hsm.py", line 2959, in
getVGInfo#012return dict(info=self.__getVGsInfo([vgUUID])[0])#012  File
"/usr/share/vdsm/storage/hsm.py", line 2892, in __getVGsInfo#012vgList
= [lvm.getVGbyUUID(vgUUID) for vgUUID in vgUUIDs]#012  File
"/usr/share/vdsm/storage/lvm.py", line 894, in getVGbyUUID#012raise
se.VolumeGroupDoesNotExist("vg_uuid: %s" %
vgUUID)#012VolumeGroupDoesNotExist: Volume Group does not exist: ('vg_uuid:
gyaCWf-6VKi-lI9W-JT6H-IZdy-rIsB-hTvZ4O',)
Jan 26 12:48:49 node002 kernel: device-mapper: table: 253:26: multipath:
error getting device
Jan 26 12:48:49 node002 kernel: device-mapper: ioctl: error adding target
to table

**

/var/log/vdsm.log:
Thread-22::ERROR::2015-01-26
12:43:03,376::sdc::137::Storage.StorageDomainCache::(_findDomain) looking
for unfetched domain db52e9cb-7306-43fd-aff3-20831bc2bcaf
Thread-22::ERROR::2015-01-26
12:43:03,377::sdc::154::Storage.StorageDomainCache::(_findUnfetchedDomain)
looking for domain db52e9cb-7306-43fd-aff3-20831bc2bcaf
Thread-22::DEBUG::2015-01-26
12:43:03,377::lvm::373::OperationMutex::(_reloadvgs) Operation 'lvm reload
operation' got the operation mutex
Thread-22::DEBUG::2015-01-26
12:43:03,378::lvm::296::Storage.Misc.excCmd::(cmd) u'/usr/bin/sudo -n
/sbin/lvm vgs --config " devices { preferred_names = [\\"^/dev/mapper/\\"]
ignore_suspended_devices=1 write_cache_state=0 disable_after_error_count=3
obtain_device_list_from_udev=0 filter = [
\'a|/dev/mapper/mpathb|/dev/mapper/mpathc|/dev/mapper/mpathd|/dev/mapper/mpathe|/dev/mapper/mpathf|\',
\'r|.*|\' ] }  global {  locking_type=1  prioritise_write_locks=1
wait_for_locks=1  use_lvmetad=0 }  backup {  retain_min = 50  retain_days =
0 } " --noheadings --units b --nosuffix --separator | -o
uuid,name,attr,size,free,extent_size,extent_count,free_count,tags,vg_mda_size,vg_mda_free,lv_count,pv_count,pv_name
db52e9cb-7306-43fd-aff3-20831bc2bcaf' (cwd None)
Thread-22::DEBUG::2015-01-26
12:43:03,462::lvm::296::Storage.Misc.excCmd::(cmd) FAILED:  = '
/dev/mapper/mpathc: Checksum error\n  /dev/mapper/mpathc: Checksum error\n
Volume group "db52e9cb-7306-43fd-aff3-20831bc2bcaf" not found\n  Skipping
volume group db52e9cb-7306-43fd-aff3-20831bc2bcaf\n';  = 5
Thread-22::WARNING::2015-01-26
12:43:03,466::lvm::378::Storage.LVM::(_reloadvgs) lvm vgs failed: 5 [] ['
/dev/mapper/mpathc: Checksum error', '  /dev/mapper/mpathc: Checksum
error', '  Volume group "db52e9cb-7306-43fd-aff3-20831bc2bcaf" not found',
'  Skipping volume group db52e9cb-7306-43fd-aff3-20831bc2bcaf']
Thread-22::DEBUG::2015-01-26
12:43:03,466::lvm::415::OperationMutex::(_reloadvgs) Operation 'lvm reload
operation' released the operation mutex
Thread-22::ERROR::2015-01-26
12:43:03,477::sdc::143::Storage.StorageDomainCache::(_findDomain) domain
db52e9cb-7306-43fd-aff3-20831bc2bcaf not found
Traceback (most recent call last):
  File "/usr/share/vdsm/storage/sdc.py", line 141, in _findDomain
dom = findMethod(sdUUID)
  File "/usr/share/vdsm/storage/sdc.py", line 171, in _findUnfetchedDomain
raise se.StorageDomainDoesNotExist(sdUUID)
StorageDomainDoesNotExist: Storage domain does not exist:
(u'db52e9cb-7306-43fd-aff3-20831bc2bcaf',)
Thread-22::ERROR::2015-01-26
12:43:03,478::domainMonitor::239::Storage.DomainMonitorThread::(_monitorDomain)
Error while collecting domain db52e9cb-7306-43fd-aff3-20831bc2bcaf
monitoring information
Traceback (most recent call last):
  File "/usr/share/vdsm/storage/domainMonitor.py", line 204, in
_monitorDomain
self.domain = sdCache.produce(self.sdUUID)
  File "/usr/share/vdsm/storage/sdc.py", line 98, in produce
domain.getRealDomain()
  File "/usr/share/vdsm/storage/sdc.py", line 52, in getRealDomain
return self._cache._realProduce(self._sdUUID)
  File "/usr/share/vdsm/storage/sdc.py", line 122, in _realProduce
domain = self._findDomain(sdUUID)
  File "/usr/share/vdsm/storage/sdc.py", line 141, in _findDomain
dom = findMethod(sdUUID)
  File "/usr/share/vdsm/storage/sdc.py", line 171, in _findUnfetchedDomain
raise se.StorageDomainDoesNotExist(sdUUID)
StorageDomainDoesNotExist: Storage domain does not exist:
(u'db52e9cb-7306-43fd-aff3-20831bc2bcaf',)
Thread-13::DEBUG::2015-01-26
12:43:05,102::task::595::Task

Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?

2015-01-26 Thread Dan Kenigsberg
On Sat, Jan 24, 2015 at 12:59:01AM +0100, Gianluca Cecchi wrote:
> Hello,
> on my all-in-one installation @home I had 3.5.0 with F20.
> Today I updated to 3.5.1.
> 
> it seems it modified /etc/multipath.conf preventing me from using my second
> disk at all...
> 
> My system has internal ssd disk (sda) for OS and one local storage domain
> and another disk (sdb) with some partitions (on one of them there is also
> another local storage domain).
> 
> At reboot I was put in emergency boot because partitions at sdb disk could
> not be mounted (they were busy).
> it took me some time to understand that the problem was due to sdb gone
> managed as multipath device and so busy for partitions to be mounted.
> 
> Here you can find how multipath became after update and reboot
> https://drive.google.com/file/d/0BwoPbcrMv8mvS0FkMnNyMTdVTms/view?usp=sharing
> 
> No device-mapper-multipath update in yum.log
> 
> Also it seems that after changing it, it was then reverted at boot again (I
> don't know if the responsible was initrd/dracut or vdsmd) so in the mean
> time the only thing I could do was to make the file immutable with
> 
> chattr +i /etc/multipath.conf

The "supported" method of achieving this is to place "# RHEV PRIVATE" in
the second line of your hand-modified multipath.conf

I do not understand why this has happened only after upgrade to 3.5.1 -
3.5.0's should have reverted you multipath.conf just as well during each
vdsm startup.

The good thing is that this annoying behavior has been dropped from the
master branch, so that 3.6 is not going to have it. Vdsm is not to mess
with other services config file while it is running. The logic moved to
`vdsm-tool configure`

> 
> and so I was able to reboot and verify that my partitions on sdb were ok
> and I was able to mount them (for safe I also ran an fsck against them)
> 
> Update ran around 19:20 and finished at 19:34
> here the log in gzip format
> https://drive.google.com/file/d/0BwoPbcrMv8mvWjJDTXU1YjRWOFk/view?usp=sharing
> 
> Reboot was done around 21:10-21:14
> 
> Here my /var/log/messages in gzip format, where you can see latest days.
> https://drive.google.com/file/d/0BwoPbcrMv8mvMm1ldXljd3hZWnM/view?usp=sharing
> 
> 
> Any suggestion appreciated.
> 
> Current multipath.conf (where I also commented out the getuid_callout that
> is not used anymore):
> 
> [root@tekkaman setup]# cat /etc/multipath.conf
> # RHEV REVISION 1.1
> 
> blacklist {
> devnode "^(sda|sdb)[0-9]*"
> }
> 
> defaults {
> polling_interval5
> #getuid_callout  "/usr/lib/udev/scsi_id --whitelisted
> --replace-whitespace --device=/dev/%n"
> no_path_retry   fail
> user_friendly_names no
> flush_on_last_del   yes
> fast_io_fail_tmo5
> dev_loss_tmo30
> max_fds 4096
> }
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?

2015-01-26 Thread Nir Soffer
- Original Message -
> From: "Dan Kenigsberg" 
> To: "Gianluca Cecchi" , nsof...@redhat.com
> Cc: "users" , ykap...@redhat.com
> Sent: Monday, January 26, 2015 2:09:23 PM
> Subject: Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?
> 
> On Sat, Jan 24, 2015 at 12:59:01AM +0100, Gianluca Cecchi wrote:
> > Hello,
> > on my all-in-one installation @home I had 3.5.0 with F20.
> > Today I updated to 3.5.1.
> > 
> > it seems it modified /etc/multipath.conf preventing me from using my second
> > disk at all...
> > 
> > My system has internal ssd disk (sda) for OS and one local storage domain
> > and another disk (sdb) with some partitions (on one of them there is also
> > another local storage domain).
> > 
> > At reboot I was put in emergency boot because partitions at sdb disk could
> > not be mounted (they were busy).
> > it took me some time to understand that the problem was due to sdb gone
> > managed as multipath device and so busy for partitions to be mounted.
> > 
> > Here you can find how multipath became after update and reboot
> > https://drive.google.com/file/d/0BwoPbcrMv8mvS0FkMnNyMTdVTms/view?usp=sharing
> > 
> > No device-mapper-multipath update in yum.log
> > 
> > Also it seems that after changing it, it was then reverted at boot again (I
> > don't know if the responsible was initrd/dracut or vdsmd) so in the mean
> > time the only thing I could do was to make the file immutable with
> > 
> > chattr +i /etc/multipath.conf
> 
> The "supported" method of achieving this is to place "# RHEV PRIVATE" in
> the second line of your hand-modified multipath.conf
> 
> I do not understand why this has happened only after upgrade to 3.5.1 -
> 3.5.0's should have reverted you multipath.conf just as well during each
> vdsm startup.
> 
> The good thing is that this annoying behavior has been dropped from the
> master branch, so that 3.6 is not going to have it. Vdsm is not to mess
> with other services config file while it is running. The logic moved to
> `vdsm-tool configure`
> 
> > 
> > and so I was able to reboot and verify that my partitions on sdb were ok
> > and I was able to mount them (for safe I also ran an fsck against them)
> > 
> > Update ran around 19:20 and finished at 19:34
> > here the log in gzip format
> > https://drive.google.com/file/d/0BwoPbcrMv8mvWjJDTXU1YjRWOFk/view?usp=sharing
> > 
> > Reboot was done around 21:10-21:14
> > 
> > Here my /var/log/messages in gzip format, where you can see latest days.
> > https://drive.google.com/file/d/0BwoPbcrMv8mvMm1ldXljd3hZWnM/view?usp=sharing
> > 
> > 
> > Any suggestion appreciated.
> > 
> > Current multipath.conf (where I also commented out the getuid_callout that
> > is not used anymore):
> > 
> > [root@tekkaman setup]# cat /etc/multipath.conf
> > # RHEV REVISION 1.1
> > 
> > blacklist {
> > devnode "^(sda|sdb)[0-9]*"
> > }


I think what happened is:

1. 3.5.1 had new multipath version
2. So vdsm upgraded the local file
3. blacklist above was removed
   (it should exists in /etc/multipath.bak)

To prevent local changes, you have to mark the file as private
as Dan suggests.

Seems to be related to the find_multiapth = "yes" bug:
https://bugzilla.redhat.com/show_bug.cgi?id=1173290

Ben, can you confirm that this is the same issue?

> > 
> > defaults {
> > polling_interval5
> > #getuid_callout  "/usr/lib/udev/scsi_id --whitelisted
> > --replace-whitespace --device=/dev/%n"
> > no_path_retry   fail
> > user_friendly_names no
> > flush_on_last_del   yes
> > fast_io_fail_tmo5
> > dev_loss_tmo30
> > max_fds 4096
> > }
> 

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


Re: [ovirt-users] Loopback interface has huge network transctions

2015-01-26 Thread Martin Pavlík
Hi Punit,

it is ok since ovirt-engine is using loopback for its purposes, e.g. postgress 
databas access. Try to check netstat -putna | grep 127.0.0 to see how many 
things are attached to it.

If you are interested in checking what is going on a bit more have a look @ 
this great how-to 
http://www.slashroot.in/find-network-traffic-and-bandwidth-usage-process-linux 



HTH 

Martin Pavlik

RHEV QE

> On 26 Jan 2015, at 02:24, Punit Dambiwal  wrote:
> 
> Hi,
> 
> I have noticed that the loop back interface has huge network packets sent and 
> received...is it common or need to some tweaks 
> 
> 1. Ovirt 3.5.1
> 2. Before ovirt engine installation...loop back address doesn't has that huge 
> amount of packets sent/receive
> 3. After Ovirt engine install it's keep increasing.and in just 48 hours 
> it reach to 35 GB...
> 
> [root@ccr01 ~]# ifconfig
> eth0: flags=4163  mtu 1500
> inet 43.252.x.x  netmask 255.255.255.0  broadcast 43.252.x.x
> ether 60:eb:69:82:0b:4c  txqueuelen 1000  (Ethernet)
> RX packets 6605350  bytes 6551029484 (6.1 GiB)
> RX errors 0  dropped 120622  overruns 0  frame 0
> TX packets 2155524  bytes 431348174 (411.3 MiB)
> TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
> device memory 0xdf6e-df70
> 
> eth1: flags=4163  mtu 1500
> inet 10.10.0.2  netmask 255.255.255.0  broadcast 10.10.0.255
> ether 60:eb:69:82:0b:4d  txqueuelen 1000  (Ethernet)
> RX packets 788160  bytes 133915292 (127.7 MiB)
> RX errors 0  dropped 0  overruns 0  frame 0
> TX packets 546352  bytes 131672255 (125.5 MiB)
> TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
> device memory 0xdf66-df68
> 
> lo: flags=73  mtu 65536
> inet 127.0.0.1  netmask 255.0.0.0
> loop  txqueuelen 0  (Local Loopback)
> RX packets 84747311  bytes 40376482560 (37.6 GiB)
> RX errors 0  dropped 0  overruns 0  frame 0
> TX packets 84747311  bytes 40376482560 (37.6 GiB)
> TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
> 
> [root@ccr01 ~]# w
>  09:23:07 up 2 days, 11:43,  1 user,  load average: 0.27, 0.30, 0.31
> USER TTYLOGIN@   IDLE   JCPU   PCPU WHAT
> root pts/0 09:163.00s  0.01s  0.00s w
> [root@ccr01 ~]#
> 
> Thanks,
> Punit
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users

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


Re: [ovirt-users] [ovirt-devel] oVirt 3.6 Feature: Cumulative Network Usage Statistics

2015-01-26 Thread Dan Kenigsberg
On Mon, Dec 22, 2014 at 01:40:06PM +0200, Lior Vernia wrote:
> Hello users and developers,
> 
> Just put up a feature page for the aforementioned feature; in summary,
> to report total RX/TX statistics for hosts and VMs in oVirt. This has
> been requested several times on the users mailing list, and is
> especially useful for accounting in VDI deployments.
> 
> You're more than welcome to review the feature page:
> http://www.ovirt.org/Features/Cumulative_RX_TX_Statistics

Sorry for the late review; I have a couple of questions/comments.
- What do you mean by "VDI use cases" in the "Benefit to oVirt sanpshot"
  section?
  Do you refer to hosting services who would like to charge their
  customers based on actual bandwidth usage?
- I've added another motivation: currently-reported rxRate/txRate
  can be utterly meaningless.


I don't see reference to nasty negative flows: what happens if a host
disappears? Or a VM? I suppose there's always a chance that some traffic
would go unaccounted for. But do you expect to extract this information
somehow? Either way, it should be mentioned as a caveat on the feature
page.

> 
> Note that this only deals with network usage - it'll be great if we have
> similar features for CPU and disk usage!

There's a formal feature request about this:
Bug 1172153 - [RFE] Collect CPU, IO and network accounting
information

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


Re: [ovirt-users] Cutting edge ovirt node images.

2015-01-26 Thread Tolik Litovsky
Hi

Both projects are now built with VDSM and Hosted Engine plugins.

Best Regards.
Tolik.

- Original Message -
From: "Anatoly Litvosky" 
To: users@ovirt.org
Cc: de...@ovirt.org
Sent: Thursday, 15 January, 2015 3:46:10 PM
Subject: Re: [ovirt-users] Cutting edge ovirt node images.

Hi 

A centos7 based ovirt-node project joined our jenkins
http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-el7_merged/

Best Regards
Tolik

On Sun, 2015-01-11 at 17:29 +0200, Anatoly Litvosky wrote:
> Hi
> 
> For all of you that want the latest images for ovirt node.
> For some time there is a new job in the ovirt jenkins that builds an
> image for every commit made.
> http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-fc20_merged/
> Currently for fedora 20 but hopefully more to come.
> 
> Many thanks to David (dcaro) for all the effort.
> 
> Best regards.
> Tolik.
> 
> 
> 


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


Re: [ovirt-users] Cutting edge ovirt node images.

2015-01-26 Thread Fabian Deutsch
Kudos Tolik!

- fabian

- Original Message -
> Hi
> 
> Both projects are now built with VDSM and Hosted Engine plugins.
> 
> Best Regards.
> Tolik.
> 
> - Original Message -
> From: "Anatoly Litvosky" 
> To: users@ovirt.org
> Cc: de...@ovirt.org
> Sent: Thursday, 15 January, 2015 3:46:10 PM
> Subject: Re: [ovirt-users] Cutting edge ovirt node images.
> 
> Hi
> 
> A centos7 based ovirt-node project joined our jenkins
> http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-el7_merged/
> 
> Best Regards
> Tolik
> 
> On Sun, 2015-01-11 at 17:29 +0200, Anatoly Litvosky wrote:
> > Hi
> > 
> > For all of you that want the latest images for ovirt node.
> > For some time there is a new job in the ovirt jenkins that builds an
> > image for every commit made.
> > http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-fc20_merged/
> > Currently for fedora 20 but hopefully more to come.
> > 
> > Many thanks to David (dcaro) for all the effort.
> > 
> > Best regards.
> > Tolik.
> > 
> > 
> > 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?

2015-01-26 Thread Fabian Deutsch


- Original Message -
> - Original Message -
> > From: "Dan Kenigsberg" 
> > To: "Gianluca Cecchi" , nsof...@redhat.com
> > Cc: "users" , ykap...@redhat.com
> > Sent: Monday, January 26, 2015 2:09:23 PM
> > Subject: Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?
> > 
> > On Sat, Jan 24, 2015 at 12:59:01AM +0100, Gianluca Cecchi wrote:
> > > Hello,
> > > on my all-in-one installation @home I had 3.5.0 with F20.
> > > Today I updated to 3.5.1.
> > > 
> > > it seems it modified /etc/multipath.conf preventing me from using my
> > > second
> > > disk at all...
> > > 
> > > My system has internal ssd disk (sda) for OS and one local storage domain
> > > and another disk (sdb) with some partitions (on one of them there is also
> > > another local storage domain).
> > > 
> > > At reboot I was put in emergency boot because partitions at sdb disk
> > > could
> > > not be mounted (they were busy).
> > > it took me some time to understand that the problem was due to sdb gone
> > > managed as multipath device and so busy for partitions to be mounted.
> > > 
> > > Here you can find how multipath became after update and reboot
> > > https://drive.google.com/file/d/0BwoPbcrMv8mvS0FkMnNyMTdVTms/view?usp=sharing
> > > 
> > > No device-mapper-multipath update in yum.log
> > > 
> > > Also it seems that after changing it, it was then reverted at boot again
> > > (I
> > > don't know if the responsible was initrd/dracut or vdsmd) so in the mean
> > > time the only thing I could do was to make the file immutable with
> > > 
> > > chattr +i /etc/multipath.conf
> > 
> > The "supported" method of achieving this is to place "# RHEV PRIVATE" in
> > the second line of your hand-modified multipath.conf
> > 
> > I do not understand why this has happened only after upgrade to 3.5.1 -
> > 3.5.0's should have reverted you multipath.conf just as well during each
> > vdsm startup.
> > 
> > The good thing is that this annoying behavior has been dropped from the
> > master branch, so that 3.6 is not going to have it. Vdsm is not to mess
> > with other services config file while it is running. The logic moved to
> > `vdsm-tool configure`
> > 
> > > 
> > > and so I was able to reboot and verify that my partitions on sdb were ok
> > > and I was able to mount them (for safe I also ran an fsck against them)
> > > 
> > > Update ran around 19:20 and finished at 19:34
> > > here the log in gzip format
> > > https://drive.google.com/file/d/0BwoPbcrMv8mvWjJDTXU1YjRWOFk/view?usp=sharing
> > > 
> > > Reboot was done around 21:10-21:14
> > > 
> > > Here my /var/log/messages in gzip format, where you can see latest days.
> > > https://drive.google.com/file/d/0BwoPbcrMv8mvMm1ldXljd3hZWnM/view?usp=sharing
> > > 
> > > 
> > > Any suggestion appreciated.
> > > 
> > > Current multipath.conf (where I also commented out the getuid_callout
> > > that
> > > is not used anymore):
> > > 
> > > [root@tekkaman setup]# cat /etc/multipath.conf
> > > # RHEV REVISION 1.1
> > > 
> > > blacklist {
> > > devnode "^(sda|sdb)[0-9]*"
> > > }
> 
> 
> I think what happened is:
> 
> 1. 3.5.1 had new multipath version
> 2. So vdsm upgraded the local file
> 3. blacklist above was removed
>(it should exists in /etc/multipath.bak)
> 
> To prevent local changes, you have to mark the file as private
> as Dan suggests.
> 
> Seems to be related to the find_multiapth = "yes" bug:
> https://bugzilla.redhat.com/show_bug.cgi?id=1173290

The symptoms above sound exactly liek this issue.
When find_multipahts is no (the default when the directive is not present)
I sthat all non-blacklisted devices are tried to get claimed, and this happened 
above.

Blacklisting the devices works, or adding "find_mutlipaths yes" should also 
work, because
in that case only device which have more than one path (or are explicitly 
named) will be
claimed by multipath.

My 2ct.

- fabian

> Ben, can you confirm that this is the same issue?
> 
> > > 
> > > defaults {
> > > polling_interval5
> > > #getuid_callout  "/usr/lib/udev/scsi_id --whitelisted
> > > --replace-whitespace --device=/dev/%n"
> > > no_path_retry   fail
> > > user_friendly_names no
> > > flush_on_last_del   yes
> > > fast_io_fail_tmo5
> > > dev_loss_tmo30
> > > max_fds 4096
> > > }
> > 
> 
> Regards,
> Nir
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> 
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Loopback interface has huge network

2015-01-26 Thread Nikolai Sednev
is ok since ovirt-engine is using loopback for its purposes, e.g. postgress 
databas access. Try to check netstat -putna | grep 127.0.0 to see how many 
things are attached to it. 

If you are interested in checking what is going on a bit more have a look @ 
this great how-to 
http://www.slashroot.in/find-network-traffic-and-bandwidth-usage-process-linux 
<http://www.slashroot.in/find-network-traffic-and-bandwidth-usage-process-linux>
 


HTH 

Martin Pavlik 

RHEV QE 

> On 26 Jan 2015, at 02:24, Punit Dambiwal  wrote: 
> 
> Hi, 
> 
> I have noticed that the loop back interface has huge network packets sent and 
> received...is it common or need to some tweaks 
> 
> 1. Ovirt 3.5.1 
> 2. Before ovirt engine installation...loop back address doesn't has that huge 
> amount of packets sent/receive 
> 3. After Ovirt engine install it's keep increasing.and in just 48 hours 
> it reach to 35 GB... 
> 
> [root@ccr01 ~]# ifconfig 
> eth0: flags=4163 mtu 1500 
> inet 43.252.x.x netmask 255.255.255.0 broadcast 43.252.x.x 
> ether 60:eb:69:82:0b:4c txqueuelen 1000 (Ethernet) 
> RX packets 6605350 bytes 6551029484 (6.1 GiB) 
> RX errors 0 dropped 120622 overruns 0 frame 0 
> TX packets 2155524 bytes 431348174 (411.3 MiB) 
> TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 
> device memory 0xdf6e-df70 
> 
> eth1: flags=4163 mtu 1500 
> inet 10.10.0.2 netmask 255.255.255.0 broadcast 10.10.0.255 
> ether 60:eb:69:82:0b:4d txqueuelen 1000 (Ethernet) 
> RX packets 788160 bytes 133915292 (127.7 MiB) 
> RX errors 0 dropped 0 overruns 0 frame 0 
> TX packets 546352 bytes 131672255 (125.5 MiB) 
> TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 
> device memory 0xdf66-df68 
> 
> lo: flags=73 mtu 65536 
> inet 127.0.0.1 netmask 255.0.0.0 
> loop txqueuelen 0 (Local Loopback) 
> RX packets 84747311 bytes 40376482560 (37.6 GiB) 
> RX errors 0 dropped 0 overruns 0 frame 0 
> TX packets 84747311 bytes 40376482560 (37.6 GiB) 
> TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 
> 
> [root@ccr01 ~]# w 
> 09:23:07 up 2 days, 11:43, 1 user, load average: 0.27, 0.30, 0.31 
> USER TTY LOGIN@ IDLE JCPU PCPU WHAT 
> root pts/0 09:16 3.00s 0.01s 0.00s w 
> [root@ccr01 ~]# 
> 
> Thanks, 
> Punit 
> ___ 
> Users mailing list 
> Users@ovirt.org 
> http://lists.ovirt.org/mailman/listinfo/users 

-- next part -- 
An HTML attachment was scrubbed... 
URL: 
<http://lists.ovirt.org/pipermail/users/attachments/20150126/c38655c3/attachment-0001.html>
 

-- 

Message: 4 
Date: Mon, 26 Jan 2015 13:45:56 + 
From: Dan Kenigsberg  
To: Lior Vernia  
Cc: "Users@ovirt.org List" , "de...@ovirt.org" 
 
Subject: Re: [ovirt-users] [ovirt-devel] oVirt 3.6 Feature: Cumulative 
Network Usage Statistics 
Message-ID: <20150126134555.gi14...@redhat.com> 
Content-Type: text/plain; charset=us-ascii 

On Mon, Dec 22, 2014 at 01:40:06PM +0200, Lior Vernia wrote: 
> Hello users and developers, 
> 
> Just put up a feature page for the aforementioned feature; in summary, 
> to report total RX/TX statistics for hosts and VMs in oVirt. This has 
> been requested several times on the users mailing list, and is 
> especially useful for accounting in VDI deployments. 
> 
> You're more than welcome to review the feature page: 
> http://www.ovirt.org/Features/Cumulative_RX_TX_Statistics 

Sorry for the late review; I have a couple of questions/comments. 
- What do you mean by "VDI use cases" in the "Benefit to oVirt sanpshot" 
section? 
Do you refer to hosting services who would like to charge their 
customers based on actual bandwidth usage? 
- I've added another motivation: currently-reported rxRate/txRate 
can be utterly meaningless. 


I don't see reference to nasty negative flows: what happens if a host 
disappears? Or a VM? I suppose there's always a chance that some traffic 
would go unaccounted for. But do you expect to extract this information 
somehow? Either way, it should be mentioned as a caveat on the feature 
page. 

> 
> Note that this only deals with network usage - it'll be great if we have 
> similar features for CPU and disk usage! 

There's a formal feature request about this: 
Bug 1172153 - [RFE] Collect CPU, IO and network accounting 
information 

Dan 


-- 

Message: 5 
Date: Mon, 26 Jan 2015 09:00:29 -0500 (EST) 
From: Tolik Litovsky  
To: users@ovirt.org 
Cc: de...@ovirt.org 
Subject: Re: [ovirt-users] Cutting edge ovirt node images. 
Message-ID: <14200256.98.1422280826405.JavaMail.tlitovsk@tolikl> 
Content-Type: text/plain; charset=utf-8 

Hi 

Both projects are now built with VDSM and Hosted E

Re: [ovirt-users] oVirt 3.5 ovirt-image-repository (Glance)

2015-01-26 Thread Staffan Öhrberg
Hi,
Just want you to know that I managed to get it to work. I did the same 
installation, but using an external NAS instead of GlusterFS.

Regards,
Staffan Öhrberg

> 7 jan 2015 kl. 09:06 skrev Oved Ourfali :
> 
> Hi
> 
> Was the installation of the engine successful?
> It is a bit weird that it doesn't find this class, so perhaps it is some 
> packaging issue?
> Can you attach the complete engine.log and server.log?
> 
> What's the operating system of your engine server?
> 
> Thanks,
> Oved
> 
> - Original Message -
>> From: "Staffan Öhrberg" 
>> To: users@ovirt.org
>> Sent: Monday, January 5, 2015 6:03:46 PM
>> Subject: [ovirt-users] oVirt 3.5 ovirt-image-repository (Glance)
>> 
>> Hi,
>> Short background, I own a startup company that have been used VMware ESXi for
>> a year and are trying oVirt to see if that can be a replacement for us.
>> I have just installed oVirt 3.5, but have trouble accessing
>> ovirt-image-repository,Glance ( http://glance.ovirt.org:9292 ).
>> In the admin console it just says: ”Error while executing action: A Request
>> to the server failed with the following Status Code: 500”
>> 
>> In the server.log I got a lot of errors:
>> 2015-01-05 16:57:01,881 ERROR
>> [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/ovirt-engine/webadmin]]
>> (ajp--127.0.0.1-8702-7) Exception while dispatching incoming RPC call:
>> com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public
>> abstract org.ovirt.engine.core.common.action.VdcReturnValueBase
>> org.ovirt.engine.ui.frontend.gwtservices.GenericApiGWTService.runAction(org.ovirt.engine.core.common.action.VdcActionType,org.ovirt.engine.core.common.action.VdcActionParametersBase)'
>> threw an unexpected exception: javax.ejb.EJBException:
>> java.lang.RuntimeException: java.lang.NoClassDefFoundError: Could not
>> initialize class com.woorea.openstack.glance.Glance
>> 
>> ….
>> 
>> I have search for an answer, but have not found one.
>> Anyone in this forum have any idea of whats wrong?
>> 
>> Regards,
>> Staffan Öhrberg
>> 
>> ___
>> Users mailing list
>> Users@ovirt.org
>> http://lists.ovirt.org/mailman/listinfo/users
>> 

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


Re: [ovirt-users] iso uploader times out

2015-01-26 Thread Mikola Rose
I am on oVirt Engine Version: 3.5.1-1.el6

On Jan 25, 2015, at 10:54 PM, Johan Kooijman 
mailto:m...@johankooijman.com>> wrote:

Mikola,

What version are you running? A bug in 3.5.0 caused the same behavior, it's 
fixed in 3.5.1.

On Mon, Jan 26, 2015 at 4:36 AM, Mikola Rose 
mailto:mr...@power-soft.com>> wrote:
Hi list members,

Just finished deploying a self hosted engine.  But i am having a problem 
uploading an iso.  It seems to be timing out..

engine-iso-uploader -i iso upload rhel-server-6.6-x86_64-dvd.iso
Please provide the REST API password for the admin@internal oVirt Engine user 
(CTRL+D to abort):
Uploading, please wait...
ERROR: mount.nfs: Connection timed out

I am a little confused as the host machine has access to the NFS shares but the 
engine vm does not yet I have created an iso storage item successfully so the 
engine can see the nfs share?

Any idea on how I can trouble shoot this?






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




--
Met vriendelijke groeten / With kind regards,
Johan Kooijman

Mik Rose | Manager, IT - Support Services | PowerSoft Development Corp
1 (250) 642-0295 x23   http://www.power-soft.com   
Live 
Support

This e-mail may be privileged and/or confidential, and the sender does not waive
any related rights and obligations. Any distribution, use or copying of this 
e-mail or the information
it contains by other than an intended recipient is unauthorized.
If you received this e-mail in error, please advise me (by return e-mail or 
otherwise) immediately.







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


Re: [ovirt-users] Slide Templates--New for 2015!

2015-01-26 Thread Doron Fediuck
Indeed, very nice ;)

On 26/01/15 13:17, Marcelo Barbosa wrote:
> Thank you Brian.
>
> Cheers,
>
> firemanxbr
>
> On Wed, Jan 21, 2015 at 8:13 PM, Brian Proffitt  > wrote:
>
> All:
>
> I have been asked to provide slide templates for presentations that
> might be created for future events. Through 2014, we have been using
> the green-on-white slide template, and now, thanks to Eidan
> Hildesheim, we have a new 2015 edition that is based more on the
> Patternfly interface.
>
> These template presentations are provided to build new slides for
> oVirt presentations. They can be downloaded and used as-is, or Saved
> As template files within OpenOffice and LibreOffice.
>
> The templates, as well as a whole host of pre-made presentations
> (which are all under the Creative Commons license), are available on
> the oVirt.org slide page[1].
>
> Thanks!
> BKP
>
> [1] http://www.ovirt.org/OVirt_Slide_Decks
>
> --
> Brian Proffitt
>
> Community Liaison
> oVirt
> Open Source and Standards, Red Hat - http://community.redhat.com
> Phone: +1 574 383 9BKP
> IRC: bkp @ OFTC
> ___
> Users mailing list
> Users@ovirt.org 
> http://lists.ovirt.org/mailman/listinfo/users
>
>
>
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>

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


Re: [ovirt-users] [ovirt-devel] Cutting edge ovirt node images.

2015-01-26 Thread Doron Fediuck
+1 ;)

On 26/01/15 17:19, Fabian Deutsch wrote:
> Kudos Tolik!
>
> - fabian
>
> - Original Message -
> > Hi
> >
> > Both projects are now built with VDSM and Hosted Engine plugins.
> >
> > Best Regards.
> > Tolik.
> >
> > - Original Message -
> > From: "Anatoly Litvosky" 
> > To: users@ovirt.org
> > Cc: de...@ovirt.org
> > Sent: Thursday, 15 January, 2015 3:46:10 PM
> > Subject: Re: [ovirt-users] Cutting edge ovirt node images.
> >
> > Hi
> >
> > A centos7 based ovirt-node project joined our jenkins
> > http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-el7_merged/
> >
> > Best Regards
> > Tolik
> >
> > On Sun, 2015-01-11 at 17:29 +0200, Anatoly Litvosky wrote:
> >> Hi
> >>
> >> For all of you that want the latest images for ovirt node.
> >> For some time there is a new job in the ovirt jenkins that builds an
> >> image for every commit made.
> >> http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-fc20_merged/
> >> Currently for fedora 20 but hopefully more to come.
> >>
> >> Many thanks to David (dcaro) for all the effort.
> >>
> >> Best regards.
> >> Tolik.
> >>
> >>
> >>
> >
> >
> > ___
> > 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
> >
> ___
> Devel mailing list
> de...@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/devel
>

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


Re: [ovirt-users] iso uploader times out

2015-01-26 Thread Mikola Rose
Here is my export,  it appears that this is correct;

/Volumes/Raid1  *(rw,anonuid=36,anongid=36,all_squash)

This is the entry point to the iso folder i created on the NFS

The one I created during setup is listed as unattached.  If I try and attach it 
is says there are no storage centre's to which the Storage Domain can be 
attached.
[cid:8B22D686-FA8F-4A7A-B9E0-C9E2D0993E2D@power-soft.net]

On the host machine I disabled the firewall and selinux




On Jan 26, 2015, at 12:03 AM, Simone Tiraboschi 
mailto:stira...@redhat.com>> wrote:



- Original Message -
From: "Mikola Rose" mailto:mr...@power-soft.com>>
To: users@ovirt.org
Sent: Monday, January 26, 2015 5:36:47 AM
Subject: [ovirt-users] iso uploader times out

Hi list members,

Just finished deploying a self hosted engine. But i am having a problem
uploading an iso. It seems to be timing out..

engine-iso-uploader -i iso upload rhel-server-6.6-x86_64-dvd.iso
Please provide the REST API password for the admin@internal oVirt Engine user
(CTRL+D to abort):
Uploading, please wait...
ERROR: mount.nfs: Connection timed out

I am a little confused as the host machine has access to the NFS shares but
the engine vm does not yet I have created an iso storage item successfully
so the engine can see the nfs share?

Any idea on how I can trouble shoot this?

Can you please check the iso NFS export ACL as described here [1]?
If you created it via engine setup, now by default only engine host can access 
it so if you want to access it from other hosts you have to extend that ACL.
If it not enough please check also the firewall rules.

[1] http://www.ovirt.org/Troubleshooting_NFS_Storage_Issues#ISO_DOMAIN




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


Mik Rose | Manager, IT - Support Services | PowerSoft Development Corp
1 (250) 642-0295 x23   http://www.power-soft.com   
Live 
Support

This e-mail may be privileged and/or confidential, and the sender does not waive
any related rights and obligations. Any distribution, use or copying of this 
e-mail or the information
it contains by other than an intended recipient is unauthorized.
If you received this e-mail in error, please advise me (by return e-mail or 
otherwise) immediately.







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


Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?

2015-01-26 Thread Benjamin Marzinski
On Mon, Jan 26, 2015 at 10:27:23AM -0500, Fabian Deutsch wrote:
> 
> 
> - Original Message -
> > - Original Message -
> > > From: "Dan Kenigsberg" 
> > > To: "Gianluca Cecchi" , nsof...@redhat.com
> > > Cc: "users" , ykap...@redhat.com
> > > Sent: Monday, January 26, 2015 2:09:23 PM
> > > Subject: Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?
> > > 
> > > On Sat, Jan 24, 2015 at 12:59:01AM +0100, Gianluca Cecchi wrote:
> > > > Hello,
> > > > on my all-in-one installation @home I had 3.5.0 with F20.
> > > > Today I updated to 3.5.1.
> > > > 
> > > > it seems it modified /etc/multipath.conf preventing me from using my
> > > > second
> > > > disk at all...
> > > > 
> > > > My system has internal ssd disk (sda) for OS and one local storage 
> > > > domain
> > > > and another disk (sdb) with some partitions (on one of them there is 
> > > > also
> > > > another local storage domain).
> > > > 
> > > > At reboot I was put in emergency boot because partitions at sdb disk
> > > > could
> > > > not be mounted (they were busy).
> > > > it took me some time to understand that the problem was due to sdb gone
> > > > managed as multipath device and so busy for partitions to be mounted.
> > > > 
> > > > Here you can find how multipath became after update and reboot
> > > > https://drive.google.com/file/d/0BwoPbcrMv8mvS0FkMnNyMTdVTms/view?usp=sharing
> > > > 
> > > > No device-mapper-multipath update in yum.log
> > > > 
> > > > Also it seems that after changing it, it was then reverted at boot again
> > > > (I
> > > > don't know if the responsible was initrd/dracut or vdsmd) so in the mean
> > > > time the only thing I could do was to make the file immutable with
> > > > 
> > > > chattr +i /etc/multipath.conf
> > > 
> > > The "supported" method of achieving this is to place "# RHEV PRIVATE" in
> > > the second line of your hand-modified multipath.conf
> > > 
> > > I do not understand why this has happened only after upgrade to 3.5.1 -
> > > 3.5.0's should have reverted you multipath.conf just as well during each
> > > vdsm startup.
> > > 
> > > The good thing is that this annoying behavior has been dropped from the
> > > master branch, so that 3.6 is not going to have it. Vdsm is not to mess
> > > with other services config file while it is running. The logic moved to
> > > `vdsm-tool configure`
> > > 
> > > > 
> > > > and so I was able to reboot and verify that my partitions on sdb were ok
> > > > and I was able to mount them (for safe I also ran an fsck against them)
> > > > 
> > > > Update ran around 19:20 and finished at 19:34
> > > > here the log in gzip format
> > > > https://drive.google.com/file/d/0BwoPbcrMv8mvWjJDTXU1YjRWOFk/view?usp=sharing
> > > > 
> > > > Reboot was done around 21:10-21:14
> > > > 
> > > > Here my /var/log/messages in gzip format, where you can see latest days.
> > > > https://drive.google.com/file/d/0BwoPbcrMv8mvMm1ldXljd3hZWnM/view?usp=sharing
> > > > 
> > > > 
> > > > Any suggestion appreciated.
> > > > 
> > > > Current multipath.conf (where I also commented out the getuid_callout
> > > > that
> > > > is not used anymore):
> > > > 
> > > > [root@tekkaman setup]# cat /etc/multipath.conf
> > > > # RHEV REVISION 1.1
> > > > 
> > > > blacklist {
> > > > devnode "^(sda|sdb)[0-9]*"
> > > > }
> > 
> > 
> > I think what happened is:
> > 
> > 1. 3.5.1 had new multipath version
> > 2. So vdsm upgraded the local file
> > 3. blacklist above was removed
> >(it should exists in /etc/multipath.bak)
> > 
> > To prevent local changes, you have to mark the file as private
> > as Dan suggests.
> > 
> > Seems to be related to the find_multiapth = "yes" bug:
> > https://bugzilla.redhat.com/show_bug.cgi?id=1173290
> 
> The symptoms above sound exactly liek this issue.
> When find_multipahts is no (the default when the directive is not present)
> I sthat all non-blacklisted devices are tried to get claimed, and this 
> happened above.
> 
> Blacklisting the devices works, or adding "find_mutlipaths yes" should also 
> work, because
> in that case only device which have more than one path (or are explicitly 
> named) will be
> claimed by multipath.

I would like to point out one issue.  Once a device is claimed (even if
find_multipaths wasn't set when it was claimed) it will get added to
/etc/multipath/wwids.  This means that if you have previously claimed a
single path device, adding "find_multipaths yes" won't stop that device
from being claimed in the fulture (since it is in the wwids file). You
would need to either run:

# multipath -w 

to remove the device's wwid from the wwids file, or run

# multipath -W

to reset the wwids file to only include the wwids of the current
multipath devices (Obviously, you need to remove any devices that you
don't want multipathed before your run this).

> 
> My 2ct.
> 
> - fabian
> 
> > Ben, can you confirm that this is the same issue?

Yeah, I think so.

-Ben

> > 
> > > > 
> > > > defaults {
> > > > polling_interval5
> > > > 

Re: [ovirt-users] iso uploader times out

2015-01-26 Thread Mikola Rose
I am going to redeploy yet again...
Quick question though,  when the hosted-engine deployment asks what interface 
to use for management what network should this be since the host has 2 nics

192.168.0.0/32  is our general network
192.168.1.0/32  is for the NFS and inter vm traffic

I would assume it would be 192.168.1.0 ?


On Jan 26, 2015, at 9:52 AM, Mikola Rose 
mailto:mr...@power-soft.com>> wrote:

Here is my export,  it appears that this is correct;

/Volumes/Raid1  *(rw,anonuid=36,anongid=36,all_squash)

This is the entry point to the iso folder i created on the NFS

The one I created during setup is listed as unattached.  If I try and attach it 
is says there are no storage centre's to which the Storage Domain can be 
attached.


On the host machine I disabled the firewall and selinux




On Jan 26, 2015, at 12:03 AM, Simone Tiraboschi 
mailto:stira...@redhat.com>> wrote:



- Original Message -
From: "Mikola Rose" mailto:mr...@power-soft.com>>
To: users@ovirt.org
Sent: Monday, January 26, 2015 5:36:47 AM
Subject: [ovirt-users] iso uploader times out

Hi list members,

Just finished deploying a self hosted engine. But i am having a problem
uploading an iso. It seems to be timing out..

engine-iso-uploader -i iso upload rhel-server-6.6-x86_64-dvd.iso
Please provide the REST API password for the admin@internal oVirt Engine user
(CTRL+D to abort):
Uploading, please wait...
ERROR: mount.nfs: Connection timed out

I am a little confused as the host machine has access to the NFS shares but
the engine vm does not yet I have created an iso storage item successfully
so the engine can see the nfs share?

Any idea on how I can trouble shoot this?

Can you please check the iso NFS export ACL as described here [1]?
If you created it via engine setup, now by default only engine host can access 
it so if you want to access it from other hosts you have to extend that ACL.
If it not enough please check also the firewall rules.

[1] http://www.ovirt.org/Troubleshooting_NFS_Storage_Issues#ISO_DOMAIN




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


Mik Rose | Manager, IT - Support Services | PowerSoft Development Corp
1 (250) 642-0295 x23   http://www.power-soft.com   
Live 
Support

This e-mail may be privileged and/or confidential, and the sender does not waive
any related rights and obligations. Any distribution, use or copying of this 
e-mail or the information
it contains by other than an intended recipient is unauthorized.
If you received this e-mail in error, please advise me (by return e-mail or 
otherwise) immediately.







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

Mik Rose | Manager, IT - Support Services | PowerSoft Development Corp
1 (250) 642-0295 x23   http://www.power-soft.com   
Live 
Support

This e-mail may be privileged and/or confidential, and the sender does not waive
any related rights and obligations. Any distribution, use or copying of this 
e-mail or the information
it contains by other than an intended recipient is unauthorized.
If you received this e-mail in error, please advise me (by return e-mail or 
otherwise) immediately.







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


Re: [ovirt-users] Update to 3.5.1 scrambled multipath.conf?

2015-01-26 Thread Gianluca Cecchi
On Mon, Jan 26, 2015 at 1:37 PM, Nir Soffer  wrote:

>
> > > Any suggestion appreciated.
> > >
> > > Current multipath.conf (where I also commented out the getuid_callout
> that
> > > is not used anymore):
> > >
> > > [root@tekkaman setup]# cat /etc/multipath.conf
> > > # RHEV REVISION 1.1
> > >
> > > blacklist {
> > > devnode "^(sda|sdb)[0-9]*"
> > > }
>
>
> I think what happened is:
>
> 1. 3.5.1 had new multipath version
>

what do you mean with "new multipath version"?
I currently have device-mapper-multipath-0.4.9-56.fc20.x86_64
The system came from f18 to f19 and then to f20 via fedup in both cases
In my yum.log files I see this about January 2013 when I was in Fedora 18
Jan 07 00:11:44 Installed: device-mapper-multipath-0.4.9-36.fc18.x86_64

I then upgraded to f19 on 24th November 2013 and device-mapper-multipath
was the one pushed during the fedup update:
device-mapper-multipath-libs-0.4.9-51.fc19.x86_64

Then on 12th of November 2014 I passed form f19 to f20 and fedup pushed
device-mapper-multipath-0.4.9-56.fc20.x86_64
that is my current version
At that time I also passed from oVirt 3.4.4 to 3.5.0.
And I didn't register any problem with my internal disk

It was sufficient to keep inside
blacklist {
   devnode "sd[a-b]"
}

At the head of the file I only had:
# RHEV REVISION 1.0

No reference about
# RHEV PRIVATE

But right now that I'm writing I notice that my rule for blacklist after
migration to 3.5.1 was

devnode "^(sda|sdb)[0-9]*"

probably blacklists only partitions and not the full disks ;-)
So I'm going to check with the old blacklist option and/or the PRIVATE
label as suggested by Dan...

Probably passing from RHEV REVISION 1.0 to 1.1 the original blacklist part
was thrown away...

2. So vdsm upgraded the local file
> 3. blacklist above was removed
>(it should exists in /etc/multipath.bak)
>
>
It seems it didn't generate any multipath.conf.bak ...
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Host remains Non-Responsive after reboot

2015-01-26 Thread Rob Abshear
I have done a bit more investigating on this matter.  If I restart the node
from within oVirt using the power management option "restart", then the
node restarts and vdsmd DOES NOT start.  If I go into the DRAC and issue
the command to power cycle the machine, then the machine restarts and vdsmd
DOES start.  I can run the following command from another node in the
cluster:
fence_drac5 -a 192.168.200.105 -l root -p  -x -o reboot
and the node restarts and vdsmd DOES start.

On Sun, Jan 25, 2015 at 1:56 AM, ILanit Stein  wrote:

> Hi Rob,
>
> Thanks for this report.
>
> Would you please provide these logs, at the time frame, the host failure
> occur:
> 1. oVirt Engine: /var/log/ovirt-engine/engine.log
> 2. host: /var/log/vdsm/vdsm.log
>
> If it is reproducible, please add this info as well.
>
> You can also check vdsm service status, on host, while host reported as
> Non responsive,
> by running on host 'service vdsmd status'
> There might some problem, that might have prevented from vdsm service to
> come up, on host.
>
> Ilanit.
>
> - Original Message -
> From: "Rob Abshear" 
> To: users@ovirt.org
> Sent: Friday, January 23, 2015 9:22:42 PM
> Subject: [ovirt-users] Host remains Non-Responsive after reboot
>
>
> I am running oVirt Engine Version 3.5.0.1-1.el6. I have 4 hosts in the
> cluster. Each host has a drac5 and it is configured and working. I am
> trying to simulate a node failure. I am running one HA VM on one of the
> hosts for testing. I simulate the failure by powering off the host with the
> VM running.
>
> Here is what is happening.
>
>
> * Host is powered off
> * ~4 minutes pass and the host is recognized as not responding
> * Automatic fence runs and the VM migrates. Another host in the node
> is chosen as a proxy to execute Status command on the host.
> * Same host is chosen as proxy to execute Start command on the host.
> * Same host is chosen as proxy to execute Status command on the host.
> * The host DOES physically start.
> * The host never shows status of UP.
> * I select “confirm host has been rebooted” and I see a manual fence
> start.
> * Host stays non-responsive.
> * I put the host in maintenance and then activate it.
> * Host still non-responsive
> * I put the host in maintenance and do a reinstall
> * Reinstall finishes and host becomes UP
>
> So, everything seems to go fine with the HA functionality, but the host
> never recovers without being reinstalled. Please let me know which logs you
> need to look at to help me out with this.
>
> Thanks
>
>
> Sent with Mixmax
>
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] hosted-engine setup ovirtmgmt bridge

2015-01-26 Thread Mikola Rose
Hi there again list users;


On a hosted-engine --deploy on a machine that has 2 network cards
em1 192.168.0.178  General Network
em2 192.168.1.151  Net that NFS server is on,  no dns no gateway

which one would I set as ovirtmgmt bridge

"Please indicate a nic to set ovirtmgmt bridge on: (em1, em2) [em1]"



Mik








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


[ovirt-users] When will oVirt Node 3.5 be released?

2015-01-26 Thread Tim Macy
I am planning some upcoming projects and would like to know when oVirt Node
3.5 will be released?

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


Re: [ovirt-users] When will oVirt Node 3.5 be released?

2015-01-26 Thread Douglas Schilling Landgraf

On 01/26/2015 05:53 PM, Tim Macy wrote:

I am planning some upcoming projects and would like to know when oVirt
Node 3.5 will be released?


Hi Tim,

We should share the official iso this week.

Meanwhile, if you are interested in give a try on our jenkins jobs:

centos7:
http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-el7_merged/

Fedora20:
http://jenkins.ovirt.org/job/ovirt-node_master_create-iso-fc20_merged/


Thanks!

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


Re: [ovirt-users] hosted-engine setup ovirtmgmt bridge

2015-01-26 Thread Uwe Laverenz

Hi,

Am 26.01.2015 um 23:49 schrieb Mikola Rose:


On a hosted-engine --deploy on a machine that has 2 network cards
em1 192.168.0.178  General Network
em2 192.168.1.151  Net that NFS server is on,  no dns no gateway

which one would I set as ovirtmgmt bridge

"Please indicate a nic to set ovirtmgmt bridge on: (em1, em2) [em1]"


The general network would be the correct one (em1).

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


Re: [ovirt-users] Host remains Non-Responsive after reboot

2015-01-26 Thread ILanit Stein
It might be a bug, 
Would you please attach the logs, I mentioned bellow,
that can bring more details on the failure?
Adding Eli, that may want to give some input on this issue.

Thanks,
Ilanit.

- Original Message -
From: "Rob Abshear" 
To: "ILanit Stein" 
Cc: users@ovirt.org
Sent: Monday, January 26, 2015 9:43:14 PM
Subject: Re: [ovirt-users] Host remains Non-Responsive after reboot

I have done a bit more investigating on this matter.  If I restart the node
from within oVirt using the power management option "restart", then the
node restarts and vdsmd DOES NOT start.  If I go into the DRAC and issue
the command to power cycle the machine, then the machine restarts and vdsmd
DOES start.  I can run the following command from another node in the
cluster:
fence_drac5 -a 192.168.200.105 -l root -p  -x -o reboot
and the node restarts and vdsmd DOES start.

On Sun, Jan 25, 2015 at 1:56 AM, ILanit Stein  wrote:

> Hi Rob,
>
> Thanks for this report.
>
> Would you please provide these logs, at the time frame, the host failure
> occur:
> 1. oVirt Engine: /var/log/ovirt-engine/engine.log
> 2. host: /var/log/vdsm/vdsm.log
>
> If it is reproducible, please add this info as well.
>
> You can also check vdsm service status, on host, while host reported as
> Non responsive,
> by running on host 'service vdsmd status'
> There might some problem, that might have prevented from vdsm service to
> come up, on host.
>
> Ilanit.
>
> - Original Message -
> From: "Rob Abshear" 
> To: users@ovirt.org
> Sent: Friday, January 23, 2015 9:22:42 PM
> Subject: [ovirt-users] Host remains Non-Responsive after reboot
>
>
> I am running oVirt Engine Version 3.5.0.1-1.el6. I have 4 hosts in the
> cluster. Each host has a drac5 and it is configured and working. I am
> trying to simulate a node failure. I am running one HA VM on one of the
> hosts for testing. I simulate the failure by powering off the host with the
> VM running.
>
> Here is what is happening.
>
>
> * Host is powered off
> * ~4 minutes pass and the host is recognized as not responding
> * Automatic fence runs and the VM migrates. Another host in the node
> is chosen as a proxy to execute Status command on the host.
> * Same host is chosen as proxy to execute Start command on the host.
> * Same host is chosen as proxy to execute Status command on the host.
> * The host DOES physically start.
> * The host never shows status of UP.
> * I select “confirm host has been rebooted” and I see a manual fence
> start.
> * Host stays non-responsive.
> * I put the host in maintenance and then activate it.
> * Host still non-responsive
> * I put the host in maintenance and do a reinstall
> * Reinstall finishes and host becomes UP
>
> So, everything seems to go fine with the HA functionality, but the host
> never recovers without being reinstalled. Please let me know which logs you
> need to look at to help me out with this.
>
> Thanks
>
>
> Sent with Mixmax
>
> ___
> 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