Re: [ovirt-users] oVirt upgrade

2016-08-09 Thread Yedidyah Bar David
On Tue, Aug 9, 2016 at 8:39 PM, Budur Nagaraju  wrote:
> HI
>
> How to upgrade oVirt3.5 to 4 ? am using centos6.7.

First upgrade or reinstall your hosts with el7.
oVirt 3.6+ does not provide packages for el6. el6 hosts will
still work, but easiest to upgrade to el7 in 3.5.

If you are using hosted-engine, you can follow [1].

Then upgrade to 3.6 using regular docs [2].

In 4.0, the engine is also el7 only. To upgrade, use engine-backup
to backup, then reinstall the machine with el7, then restore. I do
not think we have a special page for this, but you can follow the
doc text of [3], which is also copied in the 4.0 release notes [4].
Please review [5] for more information about engine backup and restore.
If you using hosted-engine, you can use the new upgrade tool to upgrade
the engine vm using the engine appliance. Not sure that's properly
documented either, see also [6]. Also note that this bug is for 4.0.2,
to be released soon.

As always, if at all possible, better try first on a test system,
especially if it's in production, and backup everything beforehand,
including your VMs etc.

Best regards,

[1] https://www.ovirt.org/documentation/how-to/hosted-engine-host-OS-upgrade/
[2] http://www.ovirt.org/develop/release-management/releases/3.6/
[3] https://bugzilla.redhat.com/show_bug.cgi?id=1318580
[4] https://www.ovirt.org/release/4.0.0/
[5] 
http://www.ovirt.org/develop/release-management/features/engine/engine-backup/
[6] https://bugzilla.redhat.com/show_bug.cgi?id=1319457
-- 
Didi
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Importing VM from Xen Server 6.5

2016-08-09 Thread Anantha Raghava

Hi,

I even attempted to run command virsh -c xen+ssh://root@xenhost and I 
get error "/*error: End of file reading data: sh: nc: command not found: 
Input/output error"*/


This is exactly the error message oVirt engine as well. You can see the 
attached screen shot.


--

Thanks & Regards,


Anantha Raghava

eXza Technology Consulting & Services

Ph: +91-9538849179, E-mail: rag...@exzatechconsulting.com 



URL: http://www.exzatechconsulting.com 

/*Support No.: +91-7829774584 */



DISCLAIMER:
This e-mail communication and any attachments may be privileged and 
confidential to eXza Technology Consulting & Services, and are intended 
only for the use of the recipients named above If you are not the 
addressee you may not copy, forward, disclose or use any part of it. If 
you have received this message in error, please delete it and all copies 
from your system and notify the sender immediately by return e-mail. 
Internet communications cannot be guaranteed to be timely, secure, error 
or virus-free. The sender does not accept liability for any errors or 
omissions.



Do not print this e-mail unless required. Save Paper & trees.

On Tuesday 09 August 2016 09:41 PM, Anantha Raghava wrote:


Hello Sahar,

I tried to import the VM from Xen Server 6.5 and failed. The details 
are as follows:


a. I was able to create the ssh keys and install it successfully on 
Xen Server host using the command "|sudo -u vdsm ssh-keygen|" and 
"|sudo -u vdsm ssh-copy-id root@xenhost".|I had to use root@xenhost as 
I had no other user on the xen server host.


b. I was able to log-in using the command "|sudo -u vdsm ssh 
root@xenhos". |Also, I could run the command "xe vm-list" and I could 
get the VM list in the terminal.


c. When I attempted to use the import wizard with 
"xen+ssh://root@xenhost", I get error - "/*Failed to communicate with 
the external provider, see log for additional details*/". The event 
window reports "/*VDSM ovirt_engine command failed: End of file while 
reading data: sh: nc: command not found: Input/output error*/". The 
screen shots are attached for reference.


Any further guidance to achieve the desired result? Look forward to 
hear from you.


--

Thanks & Regards,

Anantha Raghava


Do not print this e-mail unless required. Save Paper & trees.

On Tuesday 09 August 2016 01:11 PM, Anantha Raghava wrote:


Hello Sahar,

Thanks for your quick reply.

I will try to import VM tonight and update the results here.

--

Thanks & Regards,

Anantha Raghava

Do not print this e-mail unless required. Save Paper & trees.

On Tuesday 09 August 2016 12:28 PM, Shahar Havivi wrote:

Hi,

Please take a look at this wiki page:
https://github.com/oVirt/ovirt-site/blob/ab757548e6420354013ccf62137d1a7af52373e7/source/develop/release-management/features/XenToOvirt.html.md

On 09.08.16 10:12, Anantha Raghava wrote:

Hi,

In version 4.0.1, we see wizard that helps to import VM from VMWare, Xen,
OVA appliance etc., using which I am trying to import a VM running in Xen
Server 6.5. But we do not see any documentation that explains the process.

Can someone guide us in achieving the desired result that is Import a VM
from Xen Server 6.5

--

Thanks & Regards,

Anantha Raghava

Do not print this e-mail unless required. Save Paper & trees.
___
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] problem setting up bonding via rest in ovirt 3.6.6.2

2016-08-09 Thread Juan Hernández
On 08/09/2016 05:14 PM, Sven Kieske wrote:
> Hi,
> 
> I'd like to setup host network in the following way:
> 
> I have 4 interfaces: eth0, eno1, eno2, eno3
> 
> ovirtmgmt network resides on eth0 and is working.
> 
> Now I want to setup a bonding with the slave interfaces
> eno2 and eno3 via the hosts "setupnetworks" function:
> 
> URL:
> 
> https://engine-fqdn/api/hosts/9cdcc85b-dd87-4dcf-9275-b993ee5b5e9c/nics/setupnetworks
> 

You are using "nics/setupnetworks", which is the old and deprecated
method. You should try to use "hosts/{host:id}/setupnetworks" instead.
For example, with curl:

---8<---
#!/bin/bash -ex

url="https://engine-fqdn/api;
user="admin@internal"
password="..."

curl \
--verbose \
--request POST \
--cacert /etc/pki/ovirt-engine/ca.pem \
--user "${user}:${password}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "Version: 3" \
--data '
{
  "modified_bonds": {
"host_nic": [
  {
"name": "bond0",
"bonding": {
  "options": {
"option": [
  {
"name": "mode",
"value": "1"
  },
  {
"name": "miimon",
"value": "100"
  }
]
  },
  "slaves": {
"host_nic": [
  {
"name": "eth1"
  },
  {
"name": "eth2"
  }
]
  }
}
  }
]
  }
}
' \
"${url}/hosts/5d6741c0-d5f3-44f6-9ff5-fce2a3e8fe02/setupnetworks"
--->8---

Other than that you request looks correct and I think it should work.

NOTE: Consider using "/ovirt-engine/api" as "/api" won't work with
version 4 of the engine.

> Request:
> 
> {
> "modified_bonds": {
> "host_nic": [{
> "name": "bond0",
> "bonding": {
> "options": {
> "option": [{
> "name": "mode",
> "value": "1"
> }, {
> "name": "miimon",
> "value": "100"
> }]
> },
> "slaves": {
> "host_nic": [{
> "name": "eno2"
> }, {
> "name": "eno3"
> }]
> }
> }
> }]
> }
> }
> 
> Response from ovirt-engine:
> 
> 
> 
> Incomplete parameters
> Action [hostNics] required for setupNetworks
> 
> 
> When I look at the rsdl docs this seems perfectly fine.
> 
> 
> I tried google with this error condition but it didn't return anything
> useful unfortunately.
> 
> Your help would be greatly appreciated.
> 
> The official RH docs also do not mention anything else:
> 
> https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.6/html-single/REST_API_Guide/index.html#Multiple_Network_Setup_Action
> 
> https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.6/html-single/REST_API_Guide/index.html#Bonded_Interfaces
> 
> Also this tool doesn't seem to mention anything else:
> 
> https://jhernand.fedorapeople.org/ovirt-api-explorer/#/services/host/methods/setup_networks
> 

-- 
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.



signature.asc
Description: OpenPGP digital signature
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Missing vdsm-vhostmd-hook for oVirt 4.x

2016-08-09 Thread Arsène Gschwind

Hi,

I'm missing vdsm-vhostmd-hook for oVirt 4, will this hook not be 
available for this version?


Regards,
Arsène

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


[ovirt-users] oVirt upgrade

2016-08-09 Thread Budur Nagaraju
HI

How to upgrade oVirt3.5 to 4 ? am using centos6.7.

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


Re: [ovirt-users] Migrate machines in unknown state?

2016-08-09 Thread Nicolás

Hi,

It worked (thanks Ekin, I'd probably had not turned it off and it would 
indeed been restarted), restarting libvirtd and vdsmd made all machines 
set their status to up. Seems the cuprit is libvirtd in this case, as I 
could see some errors in the log. I'm attaching the log FWIW.


Thanks.

El 07/08/16 a las 19:37, Ekin Meroğlu escribió:

Hi,

Just a reminder, if you have power management configured, first turn 
that off for the host - when you restart vdsmd with the power 
management configured, engine finds it not responding and tries to 
fence (e.g. reboot) the host.


Other than that, restarting vdsmd has been safe in my experience...

Regards,

On Thu, Aug 4, 2016 at 6:10 PM, Nicolás > wrote:




El 04/08/16 a las 15:25, Arik Hadas escribió:


- Original Message -

El 2016-08-04 08:24, Arik Hadas escribió:

- Original Message -


El 04/08/16 a las 07:18, Arik Hadas escribió:

- Original Message -

Hi,

We're running oVirt 4.0.1 and today I
found out that one of our hosts
has all its VMs in an unknown state. I
actually don't know how (and
when) did this happen, but I'd like to
restore service possibly without
turning off these machines. The host is
up, the VMs are up, 'qemu'
process exists, no errors, it's just the
VMs running on it that have a
'?' where status is defined.

Is it safe in this case to simply modify
database and set those VM's
status to 'up'? I remember having to do
this a time ago when we faced
storage issues, it didn't break anything
back then. If not, is there a
"safe" way to migrate those VMs to a
different host and restart the
host
that marked them as unknown?

Hi Nicolás,

I assume that the host these VMs are running
on is empty in the
webadmin,
right? if that is the case then you've
probably hit [1]. Changing their
status to up is not the way to go since these
VMs will not be monitored.

Hi Arik,

By "empty" you mean the webadmin reports the host
being running 0 VMs?
If so, that's not the case, actually the VM count
seems to be correct
in
relation to "qemu-*" processes (about 32 VMs), I
can even see the
machines in the "Virtual machines" tab of the
host, it's just they are
all marked with the '?' mark.

No, I meant the 'Host' column in the Virtual Machines
tab but if you
see
the VMs in the "Virtual machines" sub-tab of the host
then run_on_vds
points to the right host..

The host is up in the webadmin as well?
Can you share the engine log?

Yes, the host is up in the webadmin, there are no issues
with it, just
the VMs running on it have the '?' mark. I've made 3 tests:

1) Restart engine: did not help
2) Check firewall, seems to be ok.
2) PostgreSQL: UPDATE vm_dynamic SET status = 1 WHERE
status = 8; :
After a while, I see lots of entries like this:

  2016-08-04 09:23:10,910 WARN

[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(DefaultQuartzScheduler4) [6ad135b8] Correlation ID: null,
Call Stack:
null, Custom Event ID: -1, Message: VM xxx is not responding.

I'm attaching the engine log, but I don't know when did
this happen for
the first time, though. If there's a manual way/command to
migrate VMs
to a different host I'd appreciate a hint about it.

Is it safe to restart vdsmd on this host?

The engine log looks fine - the VMs are reported as
not-responding for
some reason. I would restart libvirtd and vdsmd then


Is restarting those two daemons safe? I mean, will that stop all
qemu-* processes, so the 

Re: [ovirt-users] ovirt-ha-agent and too many open files error

2016-08-09 Thread Simone Tiraboschi
On Tue, Aug 9, 2016 at 4:59 PM, Gianluca Cecchi
 wrote:
> Hello,
> I have a 4.0 test environment (single host with self hosted engine) where I
> have 6 VMs defined (5 running) and no much activity.
>
> I do't monitor this system very much.
>
> Now I have connected to it to evaluate upgrade to 4.0.1 and see that about
> 15 days ago the ovirt-ha-agent died because of too many open files
>
> [root@ractor ovirt-hosted-engine-ha]# systemctl status ovirt-ha-agent -l
> ● ovirt-ha-agent.service - oVirt Hosted Engine High Availability Monitoring
> Agent
>Loaded: loaded (/usr/lib/systemd/system/ovirt-ha-agent.service; enabled;
> vendor preset: disabled)
>Active: inactive (dead) since Fri 2016-07-22 16:39:49 CEST; 2 weeks 4
> days ago
>  Main PID: 72795 (code=exited, status=0/SUCCESS)
>
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: self.set_file(fd)
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: File
> "/usr/lib64/python2.7/asyncore.py", line 657, in set_file
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: self.socket =
> file_wrapper(fd)
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: File
> "/usr/lib64/python2.7/asyncore.py", line 616, in __init__
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: self.fd = os.dup(fd)
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: OSError: [Errno 24]
> Too many open files
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: ovirt-ha-agent
> ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine ERROR Shutting down
> the agent because of 3 failures in a row!
> Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]:
> ERROR:ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine:Shutting down
> the agent because of 3 failures in a row!
> Jul 22 16:39:49 ractor.mydomain ovirt-ha-agent[72795]:
> WARNING:ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine:The VM is
> running locally or we have no data, keeping the domain monitor.
> Jul 22 16:39:49 ractor.mydomain ovirt-ha-agent[72795]:
> INFO:ovirt_hosted_engine_ha.agent.agent.Agent:Agent shutting down
>
> Is this sort of known problem or any reason to investigate?
> It seems very strange to have reached this limit
>
> I presume the agent runs as vdsm user and that the oVirt installation
> creates the file
> /etc/security/limits.d/99-vdsm.conf
>
> with
> # This limits are intended for medium VDSM hosts, for large hosts scale
> these
> # numbers appropriately.
>
> # nproc should be the maximum amount of storage operations usage.
> # VMs run by "qemu" user, vm processes are not relavent to "vdsm" user
> limits.
> vdsm - nproc 4096
>
> # nofile should be at least 3(stdin,stdour,stderr) * each external process.
> # 3 * 4096 = 12288
> vdsm - nofile 12288
>
> As a rough estimation (over estimation actually , due to many duplicates) I
> have now:
> # lsof -u vdsm | wc -l
> 488
>
> Anything else to check?

Ciao Gianluca,
can you please report which vdsm version are using there?
we had a similar issue in the past but it should be already solved:
https://bugzilla.redhat.com/1343005

> 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


[ovirt-users] problem setting up bonding via rest in ovirt 3.6.6.2

2016-08-09 Thread Sven Kieske
Hi,

I'd like to setup host network in the following way:

I have 4 interfaces: eth0, eno1, eno2, eno3

ovirtmgmt network resides on eth0 and is working.

Now I want to setup a bonding with the slave interfaces
eno2 and eno3 via the hosts "setupnetworks" function:

URL:

https://engine-fqdn/api/hosts/9cdcc85b-dd87-4dcf-9275-b993ee5b5e9c/nics/setupnetworks

Request:

{
"modified_bonds": {
"host_nic": [{
"name": "bond0",
"bonding": {
"options": {
"option": [{
"name": "mode",
"value": "1"
}, {
"name": "miimon",
"value": "100"
}]
},
"slaves": {
"host_nic": [{
"name": "eno2"
}, {
"name": "eno3"
}]
}
}
}]
}
}

Response from ovirt-engine:



Incomplete parameters
Action [hostNics] required for setupNetworks


When I look at the rsdl docs this seems perfectly fine.


I tried google with this error condition but it didn't return anything
useful unfortunately.

Your help would be greatly appreciated.

The official RH docs also do not mention anything else:

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.6/html-single/REST_API_Guide/index.html#Multiple_Network_Setup_Action

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.6/html-single/REST_API_Guide/index.html#Bonded_Interfaces

Also this tool doesn't seem to mention anything else:

https://jhernand.fedorapeople.org/ovirt-api-explorer/#/services/host/methods/setup_networks

-- 
Mit freundlichen Grüßen / Regards

Sven Kieske

Systemadministrator
Mittwald CM Service GmbH & Co. KG
Königsberger Straße 6
32339 Espelkamp
T: +495772 293100
F: +495772 29
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



signature.asc
Description: OpenPGP digital signature
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] ovirt-ha-agent and too many open files error

2016-08-09 Thread Gianluca Cecchi
Hello,
I have a 4.0 test environment (single host with self hosted engine) where I
have 6 VMs defined (5 running) and no much activity.

I do't monitor this system very much.

Now I have connected to it to evaluate upgrade to 4.0.1 and see that about
15 days ago the ovirt-ha-agent died because of too many open files

[root@ractor ovirt-hosted-engine-ha]# systemctl status ovirt-ha-agent -l
● ovirt-ha-agent.service - oVirt Hosted Engine High Availability Monitoring
Agent
   Loaded: loaded (/usr/lib/systemd/system/ovirt-ha-agent.service; enabled;
vendor preset: disabled)
   Active: inactive (dead) since Fri 2016-07-22 16:39:49 CEST; 2 weeks 4
days ago
 Main PID: 72795 (code=exited, status=0/SUCCESS)

Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: self.set_file(fd)
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: File
"/usr/lib64/python2.7/asyncore.py", line 657, in set_file
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: self.socket =
file_wrapper(fd)
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: File
"/usr/lib64/python2.7/asyncore.py", line 616, in __init__
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: self.fd = os.dup(fd)
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: OSError: [Errno 24]
Too many open files
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]: ovirt-ha-agent
ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine ERROR Shutting down
the agent because of 3 failures in a row!
Jul 22 16:39:47 ractor.mydomain ovirt-ha-agent[72795]:
ERROR:ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine:Shutting down
the agent because of 3 failures in a row!
Jul 22 16:39:49 ractor.mydomain ovirt-ha-agent[72795]:
WARNING:ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine:The VM is
running locally or we have no data, keeping the domain monitor.
Jul 22 16:39:49 ractor.mydomain ovirt-ha-agent[72795]:
INFO:ovirt_hosted_engine_ha.agent.agent.Agent:Agent shutting down

Is this sort of known problem or any reason to investigate?
It seems very strange to have reached this limit

I presume the agent runs as vdsm user and that the oVirt installation
creates the file
/etc/security/limits.d/99-vdsm.conf

with
# This limits are intended for medium VDSM hosts, for large hosts scale
these
# numbers appropriately.

# nproc should be the maximum amount of storage operations usage.
# VMs run by "qemu" user, vm processes are not relavent to "vdsm" user
limits.
vdsm - nproc 4096

# nofile should be at least 3(stdin,stdour,stderr) * each external process.
# 3 * 4096 = 12288
vdsm - nofile 12288

As a rough estimation (over estimation actually , due to many duplicates) I
have now:
# lsof -u vdsm | wc -l
488

Anything else to check?

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


[ovirt-users] engine-backup and messages in web admin events pane

2016-08-09 Thread Gianluca Cecchi
Hello,
having oVirt Engine Version: 4.0.0.6-1.el7.centos, when I run on engine VM
a command like

# engine-backup --mode=backup --scope=all
--file=/root/engine-backup.archive_$(date +%d-%m-%Y)
--log=/root/engine-backup_$(date +%d-%m-%Y).log
Backing up:
Notifying engine
- Files
- Engine database 'engine'
- DWH database 'ovirt_engine_history'
Packing into file '/root/engine-backup.archive_09-08-2016'
Notifying engine
Done.

I see then that in engine web admin events pane I only have rows of kind:
Finished
Started

without any reference to what...
See here:
https://drive.google.com/file/d/0BwoPbcrMv8mvYXNLZkZtQ1FFRUU/view?usp=sharing

Is it me running backup in the wrong way or was it improved in 4.0.1?

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


Re: [ovirt-users] LVM2 Thinprovisioned

2016-08-09 Thread Barak Korren
On 9 August 2016 at 15:16, Fernando Frediani
 wrote:
> Hello all.
>
> When you use oVirt with a Block Storage the only option available to store
> de VMs is LVM.
>
> Does LVM in oVirt use Thinprovisoned (supported in LVM2) instead of having
> to use the SAN Thinprovisioned features ?
>

You can set the disk format to COW. I will effectively be thin-provisioned.
I do this from the API, not sure if you can get the UI to do it.



-- 
Barak Korren
bkor...@redhat.com
RHEV-CI Team
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] 3.6 : Hosted_Storage unattached

2016-08-09 Thread Simone Tiraboschi
On Tue, Aug 9, 2016 at 2:14 PM, Alexis HAUSER
 wrote:
> Actually, I solved my problem by solving a bug I was affected by (SELinux 
> preventing to add storage domain), removing the unattached hosted_storage and 
> restarting ovirt-engine.
> It added it automatically with the VM as usual :)

Do you know if there is already an open ticket for that? if not,
opening one on https://bugzilla.redhat.com/ will help to get it fixed.
Thanks.

> - Mail original -
> De: "Alexis HAUSER" 
> À: "users" 
> Envoyé: Mardi 9 Août 2016 11:50:48
> Objet: [ovirt-users] 3.6 : Hosted_Storage unattached
>
> Hi, I installed a new node with a new hosted engine, version 3.6, added a 
> data domain, but I can't see the hosted_storage.
>
> I tried to use the "import storage" on it but it keeps having unattached 
> status, and in the logs I can see :
>
> "2016-08-09 05:39:32,821 WARN  
> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] 
> (ajp-/127.0.0.1:8702-1) [] Correlation ID: 1d9c8f67, Job ID: 
> 6e75d61e-3140-4f1c-a301-e683ddc28b1f, Call Stack: null, Custom Event ID: -1, 
> Message: This Data center compatibility version does not support importing a 
> data domain with its entities (VMs and Templates). The imported domain will 
> be imported without them."
>
> Any ideas ?
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
> ___
> Users mailing list
> Users@ovirt.org
> http://lists.ovirt.org/mailman/listinfo/users
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] LVM2 Thinprovisioned

2016-08-09 Thread Fernando Frediani

Hello all.

When you use oVirt with a Block Storage the only option available to 
store de VMs is LVM.


Does LVM in oVirt use Thinprovisoned (supported in LVM2) instead of 
having to use the SAN Thinprovisioned features ?


Fernando

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


Re: [ovirt-users] 3.6 : Hosted_Storage unattached

2016-08-09 Thread Alexis HAUSER
Actually, I solved my problem by solving a bug I was affected by (SELinux 
preventing to add storage domain), removing the unattached hosted_storage and 
restarting ovirt-engine.
It added it automatically with the VM as usual :)



 

- Mail original -
De: "Alexis HAUSER" 
À: "users" 
Envoyé: Mardi 9 Août 2016 11:50:48
Objet: [ovirt-users] 3.6 : Hosted_Storage unattached

Hi, I installed a new node with a new hosted engine, version 3.6, added a data 
domain, but I can't see the hosted_storage.

I tried to use the "import storage" on it but it keeps having unattached 
status, and in the logs I can see :

"2016-08-09 05:39:32,821 WARN  
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] 
(ajp-/127.0.0.1:8702-1) [] Correlation ID: 1d9c8f67, Job ID: 
6e75d61e-3140-4f1c-a301-e683ddc28b1f, Call Stack: null, Custom Event ID: -1, 
Message: This Data center compatibility version does not support importing a 
data domain with its entities (VMs and Templates). The imported domain will be 
imported without them."

Any ideas ?
___
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 4 and Gluster network

2016-08-09 Thread Sahina Bose
On Tue, Aug 9, 2016 at 4:28 PM, Arsène Gschwind 
wrote:

> Hi,
>
> We have setup an oVirt 4 cluster using Gluster as storage backend.
> I've setup a separate 10 Gb Network for Gluster traffic and tried to use
> that network as written in : https://www.ovirt.org/develop/
> release-management/features/network/select-network-for-gluster/
>
> But I'm not able to find the "Edit - Brick" menu to be able to set the IP
> to use for existing bricks.
> Is this not implemented yet? The feature status says "done".
>
> I've been able to create new bricks using that network and it seems the
> traffic is going trough the right nics.



Edit brick feature that can change a brick's network is not implemented -
it is dependent on the ability to call replace brick where source and
destination brick are the same. This is currently not possible in glusterfs
and hence https://gerrit.ovirt.org/51685 is not yet merged.

However, any brick that you create after you have associated gluster
network with an interface, say nic2, will use the interface nic2 for
creating bricks.


>
> Thanks for any hint.
> regards,
>
> Arsène
>
> ___
> 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] oVirt 4 and Gluster network

2016-08-09 Thread Arsène Gschwind

Hi,

We have setup an oVirt 4 cluster using Gluster as storage backend.
I've setup a separate 10 Gb Network for Gluster traffic and tried to use 
that network as written in : 
https://www.ovirt.org/develop/release-management/features/network/select-network-for-gluster/


But I'm not able to find the "Edit - Brick" menu to be able to set the 
IP to use for existing bricks.

Is this not implemented yet? The feature status says "done".

I've been able to create new bricks using that network and it seems the 
traffic is going trough the right nics.


Thanks for any hint.
regards,

Arsène

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


[ovirt-users] 3.6 : Hosted_Storage unattached

2016-08-09 Thread Alexis HAUSER
Hi, I installed a new node with a new hosted engine, version 3.6, added a data 
domain, but I can't see the hosted_storage.

I tried to use the "import storage" on it but it keeps having unattached 
status, and in the logs I can see :

"2016-08-09 05:39:32,821 WARN  
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] 
(ajp-/127.0.0.1:8702-1) [] Correlation ID: 1d9c8f67, Job ID: 
6e75d61e-3140-4f1c-a301-e683ddc28b1f, Call Stack: null, Custom Event ID: -1, 
Message: This Data center compatibility version does not support importing a 
data domain with its entities (VMs and Templates). The imported domain will be 
imported without them."

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


Re: [ovirt-users] Importing VM from Xen Server 6.5

2016-08-09 Thread Anantha Raghava

Hello Sahar,

Thanks for your quick reply.

I will try to import VM tonight and update the results here.

--

Thanks & Regards,

Anantha Raghava

Do not print this e-mail unless required. Save Paper & trees.

On Tuesday 09 August 2016 12:28 PM, Shahar Havivi wrote:

Hi,

Please take a look at this wiki page:
https://github.com/oVirt/ovirt-site/blob/ab757548e6420354013ccf62137d1a7af52373e7/source/develop/release-management/features/XenToOvirt.html.md

On 09.08.16 10:12, Anantha Raghava wrote:

Hi,

In version 4.0.1, we see wizard that helps to import VM from VMWare, Xen,
OVA appliance etc., using which I am trying to import a VM running in Xen
Server 6.5. But we do not see any documentation that explains the process.

Can someone guide us in achieving the desired result that is Import a VM
from Xen Server 6.5

--

Thanks & Regards,

Anantha Raghava

Do not print this e-mail unless required. Save Paper & trees.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


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


Re: [ovirt-users] Hosted Engine Storage Domain Stuck and no Volumes tab?

2016-08-09 Thread Dan Lavu
On Tue, Aug 9, 2016 at 1:06 AM, Sahina Bose  wrote:

>
>
> On Tue, Aug 9, 2016 at 12:49 AM, Dan Lavu  wrote:
>
>> So this is on 4.0.1, Fedora 23, the engine is running fine on glusterfs,
>> on a 3 replica arbiter 1 volume, the hosted_engine attached storage domain
>> is *stuck* in offline, wondernig if there is anyway to fix that? Since the
>> domain cannot be managed inside the engine.
>>
>
>
> Stuck as in error importing the hosted_storage domain? Were there any
> errors in engine/vdsm logs related to this?
>

It shows inactive, with a lock icon, but the engine is obviously online
since I can get to the GUI.

>
>
>>
>> Also I have gluster enabled for one of my clusters but I'm missing a
>> volumes tab to manage the gluster volumes? The hosts, when putting them
>> into maintenaince, I have the option to turn off gluster... I know in
>> 3.5-3.6 volume management was a feature, did this change?
>>
>
>
> No, this has not changed. When you edit your cluster - do you see 2
> checkboxes "Enable virt service" and "Enable Gluster service" ? Is the
> gluster service enabled here?
>

Yes it is.

We've decided to rebuild the homelab due to poor infiniband support in
Fedora, so I won't waste anymore/anyone's time with these questions since
this installation is going to be wiped.

Thanks for replying.

>
>
>>
>> Thanks,
>>
>> Dan
>>
>> ___
>> 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] Importing VM from Xen Server 6.5

2016-08-09 Thread Shahar Havivi
Hi,

Please take a look at this wiki page:
https://github.com/oVirt/ovirt-site/blob/ab757548e6420354013ccf62137d1a7af52373e7/source/develop/release-management/features/XenToOvirt.html.md

On 09.08.16 10:12, Anantha Raghava wrote:
> Hi,
> 
> In version 4.0.1, we see wizard that helps to import VM from VMWare, Xen,
> OVA appliance etc., using which I am trying to import a VM running in Xen
> Server 6.5. But we do not see any documentation that explains the process.
> 
> Can someone guide us in achieving the desired result that is Import a VM
> from Xen Server 6.5
> 
> -- 
> 
> Thanks & Regards,
> 
> Anantha Raghava
> 
> Do not print this e-mail unless required. Save Paper & trees.

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

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


Re: [ovirt-users] Cannot locate vdsm package, possible cause is incorrect channels

2016-08-09 Thread Vinzenz Feenstra

> On Aug 9, 2016, at 2:55 AM, Colin Coe  wrote:
> 
> I'm pretty sure oVirt 3.6+ needs Centos/RHEL7.2+

Yes, correct 

For RHEL6 / Centos 6 you can only have 3.5 vdsm and only in a 3.5 cluster

It’s highly recommended however that you upgrade your host to RHEL/CentOS 7

> 
> On Tue, Aug 9, 2016 at 7:59 AM, Huan He (huhe)  > wrote:
> I wonder if it has something to do with the centos version? I have
> 
> [root@host-182 ~]# uname -a
> Linux host-182 2.6.32-642.3.1.el6.x86_64 #1 SMP Tue Jul 12 18:30:56 UTC 2016 
> x86_64 x86_64 x86_64 GNU/Linux
> [root@host-182 ~]# more /etc/redhat-release 
> CentOS release 6.8 (Final)
> [root@host-182 ~]# 
> 
> 
> From: Cisco Employee >
> Date: Monday, August 8, 2016 at 4:51 PM
> To: users >
> Subject: Cannot locate vdsm package, possible cause is incorrect channels
> 
> I have ovirt engine 3.6 on centos 6.5 and tried to add centos 6.5 host. 
> 
> I used the command below to install the host
> yum localinstall 
> http://plain.resources.ovirt.org/pub/yum-repo/ovirt-release36.rpm 
> 
> 
> The ovirt repo are listed below.
> 
> I tried to uncomment out the baseurl, still got the same issue. Any idea?
> 
> It looks to me it failed to find the vdsm pkgs. 
> 
> Thanks,
> Huan
> 
> [root@host-182 yum.repos.d]# more ovirt-3.6*.repo
> ::
> ovirt-3.6-dependencies.repo
> ::
> [ovirt-3.6-epel]
> name=Extra Packages for Enterprise Linux 6 - $basearch
> #baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch 
> 
> mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6=$basearch
>  
> failovermethod=priority
> enabled=1
> includepkgs=epel-release,python-uinput,puppet,python-lockfile,python-cpopen,python-ordereddict,python-pthreading,python-inotify,python-argparse,novnc,python-ply,
> python-kitchen,python-daemon,python-websockify,livecd-tools,spice-html5,mom,python-IPy,python-ioprocess,ioprocess,safelease,rubygem-rgen,ovirt-guest-agent,pyxatt
> r,userspace-rcu
> gpgcheck=1
> gpgkey=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 
> 
> 
> [ovirt-3.6-jpackage-6.0-generic]
> name=JPackage 6.0, for generic
> mirrorlist=http://www.jpackage.org/mirrorlist.php?dist=generic=free=6.0
>  
> enabled=1
> gpgcheck=1
> includepkgs=dom4j,isorelax,jaxen,jdom,msv,msv-xsdlib,relaxngDatatype,servicemix-specs,tomcat5-servlet-2.4-api,ws-jaxme,xalan-j2,xml-commons,xml-commons-jaxp-1.2-
> apis,xml-commons-resolver11,xom,xpp2,xpp3,antlr3,stringtemplate
> gpgkey=http://www.jpackage.org/jpackage.asc 
> 
> 
> [ovirt-3.6-centos-gluster37]
> name=CentOS-$releasever - Gluster 3.7
> baseurl=http://mirror.centos.org/centos/$releasever/storage/$basearch/gluster-3.7/
>  
> gpgcheck=1
> enabled=1
> gpgkey=https://raw.githubusercontent.com/CentOS-Storage-SIG/centos-release-storage-common/master/RPM-GPG-KEY-CentOS-SIG-Storage
>  
> 
> 
> [ovirt-3.6-patternfly1-noarch-epel]
> name=Copr repo for patternfly1 owned by patternfly
> baseurl=http://copr-be.cloud.fedoraproject.org/results/patternfly/patternfly1/epel-6-$basearch/
>  
> 
> enabled=1
> skip_if_unavailable=1
> gpgcheck=0
> 
> [virtio-win-stable]
> name=virtio-win builds roughly matching what was shipped in latest RHEL
> baseurl=http://fedorapeople.org/groups/virt/virtio-win/repo/stable 
> 
> enabled=1
> skip_if_unavailable=1
> gpgcheck=0
> ::
> ovirt-3.6.repo
> ::
> [ovirt-3.6]
> name=Latest oVirt 3.6 Release
> #baseurl=http://resources.ovirt.org/pub/ovirt-3.6/rpm/el$releasever/ 
> 
> mirrorlist=http://resources.ovirt.org/pub/yum-repo/mirrorlist-ovirt-3.6-el$releasever
>  
> enabled=1
> skip_if_unavailable=1
> gpgcheck=1
> gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-ovirt-3.6 <>
> [root@host-182 yum.repos.d]# 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org 
> http://lists.ovirt.org/mailman/listinfo/users 
> 
> 
> 
> ___
> Users mailing list
> Users@ovirt.org
>