Re: [Users] Fedora upgrading from 3.1 to 3.2

2013-08-07 Thread Karli Sjöberg
OK guys, here it is. The entire process of going from oVirt-3.1 on Fedora to 
oVirt-3.2 on CentOS!

Installation
minimal Fedora 17 / oVirt-3.1

Engine Contents
NewDC (NFS DataCenter Type, Quota disabled)
- Networks
  - ovirtmgmt
  - ovirtnfs
- Storage
  - Data
  - Export
  - ISO
- Templates
  - CentOS
  - Fedora
  - Ubuntu
- Clusters (Conroe Family)
   - CLusterName
- Hostname1 (No power manangement)
- Hostname2 (No power manangement)
- Virtual machines
  - CentOS (Server,AD\abcd0001: UserRole)
  - ClonedFedora (Server)
  - ClonedUbuntu (Desktop)
  - Fedora (Server,AD\abcd0002: UserRole)
  - TestPool-{1,2,3} (VDI,Based on Fedora-template)
  - Ubuntu (Server,AD\abcd0003: UserRole)
  - Windows7 (Server,AD\abcd0004: UserRole)
- Templates
  - CentOS
  - Fedora
  - Ubuntu
- Pools
  - TestPool (Assigned:3, Running:1,AD\oVirt_Users:UserRole)
- Permissions
  - Active Directory connected
   - AD\oVirt_Admins = SuperUser

1) Back up using /mnt/backup/ovirtctl:
#!/bin/sh

DB_EXPORT_PATH=/usr/share/ovirt-engine/db-backups
DB_BKUP_FILENAME=dump_engine_`date +%Y%m%d_%H%M`.sql
DB_NAME=engine
ENGINE_CONF='/etc/ovirt-engine
 /etc/pki/ovirt-engine
 /usr/share/ovirt-engine/db-backups
 /root/.pgpass
 /root/.rnd'
BACKUPDIR=/mnt/backup
ENGINE_BKUP_FILENAME=bkup_engine_`date +%Y%m%d_%H%M`.tgz

case $1 in

  backup)
find $DB_EXPORT_PATH -mtime +1 -type f -exec rm -rf {} \;
find $BACKUPDIR -mtime +7 -type f -exec rm -rf {} \;
pg_dump -C -E UTF8 --column-inserts --disable-dollar-quoting 
--disable-triggers -U postgres --format=p -f \
$DB_EXPORT_PATH/$DB_BKUP_FILENAME $DB_NAME
tar zcf $BACKUPDIR/$ENGINE_BKUP_FILENAME $ENGINE_CONF
  ;;

  #restore)
  #  tar zxf $BACKUPDIR/$ENGINE_BKUP_FILENAME -C /
  #;;

esac

# /mnt/backup/ovirtctl backup
# systemctl stop ovirt-engine.service

2) I chose to install with engine as ISO-provider, so back that up:
# cp -rf /mnt/ISO /mnt/backup/
# cp /etc/exports /mnt/backup/

3) Reinstall minimal CentOS-6.4

4) Use dreyou´s guide for setting up engine and re-enter the same password and 
options as you used when you first installed the engine back in Fedora. Then, 
after the engine has started, shut it down and begin restoring the previous 
setup:
http://wiki.dreyou.org/dokuwiki/doku.php?id=ovirt_rpm_start31

# service ovirt-engine stop
# service jboss-as stop
# service httpd stop

5) Start the restoring process (make sure to mount your backup).
- Restore ISO domain
# rm -rf /mnt/ISO/*
# cp -rf /mnt/backup/ISO/* /mnt/ISO/
# cp /mnt/backup/exports /etc/exports
# chown -R 36:36 /mnt/ISO/
# service nfs restart

- Restore engine
# tar zxf $BACKUPDIR/$ENGINE_BKUP_FILENAME -C /

- Make a minor modification to the backed up Fedora database dump:
@@ -4,9 +4,10 @@

SET statement_timeout = 0;
SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
+SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
+SET escape_string_warning = off;

--
-- Name: engine; Type: DATABASE; Schema: -; Owner: engine
@@ -21,36 +22,18 @@

SET statement_timeout = 0;
SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
+SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
+SET escape_string_warning = off;

--
--- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
+-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: engine
--

-CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
+CREATE PROCEDURAL LANGUAGE plpgsql;


---
--- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
---
-
-COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
-
-
---
--- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner:
---
-
-CREATE EXTENSION IF NOT EXISTS uuid-ossp WITH SCHEMA public;
-
-
---
--- Name: EXTENSION uuid-ossp; Type: COMMENT; Schema: -; Owner:
---
-
-COMMENT ON EXTENSION uuid-ossp IS 'generate universally unique identifiers 
(UUIDs)';
-
+ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO engine;

SET search_path = public, pg_catalog;

- Restore database from backup:
# dropdb -U postgres engine
# createdb -U postgres engine
# psql -U postgres engine  
/usr/share/ovirt-engine/db-backups/dump_engine_20130805_1137.sql
# service httpd start
# service jboss-as start
# service ovirt-engine start

5) After everything is back up and running in CentOS, you follow dreyou´s guide 
on upgrading from 3.1 to 3.2:
http://wiki.dreyou.org/dokuwiki/doku.php?id=ovirt_rpm_update31to32

- For me, as several others, engine-upgrade first fails because you have to run 
it like:
# LC_ALL=C engine-upgrade

- And here was the trickiest part of the entire process, I had to actually fail 
once to be able to save a modified version of 
/usr/share/ovirt-engine/dbscripts/upgrade/03_01_1520_add_fk_vm_interface_vm_static_template.sql
 and insert:
DELETE FROM vm_interface where vmt_guid not in (SELECT vm_guid FROM vm_static);
select 

[Users] about using vlan or quantum in ovirt

2013-08-07 Thread lofyer

How can we implement the following scenarios in current oVirt release?

1. Suppot four VMs (VMA, VMB, VMC and VMD) run on the same Virtualization node. 
VMA and VMB is in one subnet, while VMC and VMD is in another subnet. VMA/VMB 
can communicate with VMC/VMD, or VMA/VMB can not communicate with VMC/VMD.

 case1: can comunicate with
subnet1  case2: can not comunicate with  subnet2
++++
|  +-+  +-+  [|  +-+  +-+  |
|  | VMA |  | VMB |  ||  | VMC |  | VMD |  |
|  +-+  +-+  ||  |-+  +-+  |
++++
 +--+
 |  Virtualization  |
 |  Node|
 +--+
   |
    (LAN)


2. Suppose VMA and VMC run on one Virtualization Node, while VMB and VMD run on 
the other Virtualization Node. VMA and VMB is in one subnet, while VMC and VMD 
is in another subnet. VMA/VMB can communicate with VMC/VMD, or VMA/VMB can not 
communicate with VMC/VMD.

  case1: can comunicate with
subnet1   case2: can not comunicate withsubnet2
+--+
|   +-+|
|  +-+  |  +---+   [  +-+  |  +---+
|  | VMA |  |  |  +-+   |  |  | VMB |  |  |  +-+  |
|  +-+  |  |  | VMC |   |  |  +-+  |  |  | VMD |  |
+--+   |  +-+   |  +---+  |  +-+  |
   |++|
   +--+
+--+   +--+
|  Virtualization  |   |  Virtualization  |
|  Node|   |  Node|
+--+   +--+
  |  |
 (LAN)

Can we do this with oVirt network (vlan tag)? If yes, how? If no, is Quantum 
(Neutron) network OK? and where should we find more information in oVirt 
documents?

netease mail

*1* attachments

vnet.txt(3K)
   download
   
http://preview.mail.163.com/xdownload?filename=vnet.txtmid=xtbB0Q5yGVEAFk52vAAAs3part=3sign=57990c02113caa02db3abaef66818421time=1375877638uid=jiangdi007%40163.com
   preview
   
http://preview.mail.163.com/preview?mid=xtbB0Q5yGVEAFk52vAAAs3part=3sign=57990c02113caa02db3abaef66818421time=1375877638uid=jiangdi007%40163.com




How can we implement the following scenarios in current oVirt release?

1. Suppot four VMs (VMA, VMB, VMC and VMD) run on the same Virtualization node. 
VMA and VMB is in one subnet, while VMC and VMD is in another subnet. VMA/VMB 
can communicate with VMC/VMD, or VMA/VMB can not communicate with VMC/VMD.

 case1: can comunicate with
subnet1  case2: can not comunicate with  subnet2
   
++++
|  +-+  +-+  [|  +-+  +-+  |
|  | VMA |  | VMB |  ||  | VMC |  | VMD |  |
|  +-+  +-+  ||  |-+  +-+  |
++++
 +--+ 
 |  Virtualization  |
 |  Node|
 +--+
   |
    (LAN)


2. Suppose VMA and VMC run on one Virtualization Node, while VMB and VMD run on 
the other Virtualization Node. VMA and VMB is in one subnet, while VMC and VMD 
is in another subnet. VMA/VMB can communicate with VMC/VMD, or VMA/VMB can not 
communicate with VMC/VMD.

  case1: can comunicate with
subnet1   case2: can not comunicate withsubnet2 
  
+--+
|   +-+|
|  +-+  |  +---+   [  +-+  |  +---+
|  | VMA |  |  |  +-+   |  |  | VMB |  |  |  +-+  |
|  +-+  |  |  | VMC |   |  |  +-+  |  |  | VMD |  |
+--+   |  +-+   |  +---+  |  +-+  |
   |++|
   +--+
+--+   +--+
|  Virtualization  |   |  Virtualization  |
|  Node|   |  Node|
+--+   +--+
  |  |
 (LAN)

Can we do this with oVirt network (vlan tag)? If yes, how? If no, is Quantum 
(Neutron) network OK? and where should we find more information in oVirt 
documents?

Re: [Users] about using vlan or quantum in ovirt

2013-08-07 Thread Koch (ovido)


On Wed, 2013-08-07 at 20:18 +0800, lofyer wrote:
 How can we implement the following scenarios in current oVirt release?
 
 1. Suppot four VMs (VMA, VMB, VMC and VMD) run on the same Virtualization 
 node. VMA and VMB is in one subnet, while VMC and VMD is in another subnet. 
 VMA/VMB can communicate with VMC/VMD, or VMA/VMB can not communicate with 
 VMC/VMD.
 
  case1: can comunicate with
 subnet1  case2: can not comunicate with  subnet2  
  
 ++++
 |  +-+  +-+  [|  +-+  +-+  |
 |  | VMA |  | VMB |  ||  | VMC |  | VMD |  |
 |  +-+  +-+  ||  |-+  +-+  |
 ++++
  +--+ 
  |  Virtualization  |
  |  Node|
  +--+
|
 (LAN)
 
 
 2. Suppose VMA and VMC run on one Virtualization Node, while VMB and VMD run 
 on the other Virtualization Node. VMA and VMB is in one subnet, while VMC and 
 VMD is in another subnet. VMA/VMB can communicate with VMC/VMD, or VMA/VMB 
 can not communicate with VMC/VMD.
 
   case1: can comunicate with
 subnet1   case2: can not comunicate withsubnet2   
 
 +--+
 |   +-+|
 |  +-+  |  +---+   [  +-+  |  +---+
 |  | VMA |  |  |  +-+   |  |  | VMB |  |  |  +-+  |
 |  +-+  |  |  | VMC |   |  |  +-+  |  |  | VMD |  |
 +--+   |  +-+   |  +---+  |  +-+  |
|++|
+--+
 +--+   +--+
 |  Virtualization  |   |  Virtualization  |
 |  Node|   |  Node|
 +--+   +--+
   |  |
  (LAN)
 
 Can we do this with oVirt network (vlan tag)? If yes, how? If no, is Quantum 
 (Neutron) network OK? and where should we find more information in oVirt 
 documents?
 
 

Hi,

I would solve this in the following way:

1. configure 2 logical networks with vlans
e.g. lan1 (vlan id 100, ip network 10.0.0.0/24), lan2 (vlan id 200, ip
network 10.0.1.0/24)
2. assign vnics of vms to corresponding logical network
3. create firewall rules on firewall to allow/disallow communication (fw
must be in both vlans)

Hope this helps.


Regards,
René


 
 1 attachments
 vnet.txt(3K)
 download preview 
 
 
 
 ___
 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] PROBLEM - host is restarted aromatically by ovirt and becomes unresponsible

2013-08-07 Thread Ricardo Esteves
Good afternoon,

I've having a problem with my hosts, at least one time per week the host
that has all the VMs running restarts and becomes unresponsible.

After the restart sent to the ilo by the ovirt engine the host becomes
unresponsible, the fans on the enclosure go up like crazy.

Then the only way to get the blade up is to stop it using ilo or onboard
administrator,
and then remove it from the enclosure and put it back in and then issue
the start using ovirt gui, because using stop/start on the ilo or
onboard administrator the blade powers up but becomes unresponsible,
doesn't show any image or any boot post messages.


Anyone else seen this problem before?

BLADE ENCLOSURE: HP BladeSystem c3000
BLADES: HP BL460c G6
OS: CentOS 6.4 (64 bits)
OVIRT: 3.2


engine.log:

2013-08-07 14:38:47,256 INFO
[org.ovirt.engine.core.bll.storage.SetStoragePoolStatusCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63] Running command:
SetStoragePoolStatusCommand interna
l: true. Entities affected :  ID: 06951dba-556b-4323-9356-819c9160fe8e
Type: StoragePool
2013-08-07 14:38:47,257 ERROR
[org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo]
(DefaultQuartzScheduler_Worker-8) vds::refreshVdsStats Failed
getVdsStats,  vds = 44d77dcb-b775-4aef-ae59-
1dea8d5c691a : blade5, error = VDSNetworkException:
java.net.NoRouteToHostException: No route to host
2013-08-07 14:38:47,263 WARN
[org.ovirt.engine.core.vdsbroker.VdsManager]
(DefaultQuartzScheduler_Worker-8)
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
44d77dcb-b77
5-4aef-ae59-1dea8d5c691a : blade5, VDS Network Error, continuing.
java.net.NoRouteToHostException: No route to host
2013-08-07 14:38:50,252 ERROR
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63]
IrsBroker::Failed::GetStoragePoolInfoVDS due to: NoRout
eToHostException: No route to host
2013-08-07 14:38:50,253 WARN
[org.ovirt.engine.core.vdsbroker.VdsManager]
(DefaultQuartzScheduler_Worker-10) [2b4cb7c5]
ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds = 
44d77dcb-b775-4aef-ae59-1dea8d5c691a : blade5, VDS Network Error,
continuing.
java.net.NoRouteToHostException: No route to host
2013-08-07 14:38:53,252 INFO
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63] Irs placed on server
44d77dcb-b775-4aef-ae59-1dea8d5c69
1a failed. Proceed Failover
2013-08-07 14:38:53,254 ERROR
[org.ovirt.engine.core.vdsbroker.VdsManager]
(DefaultQuartzScheduler_Worker-4) VDS::handleNetworkException Server
failed to respond,  vds_id = 44d77dcb-b775-4aef
-ae59-1dea8d5c691a, vds_name = blade5, error =
java.net.NoRouteToHostException: No route to host
2013-08-07 14:38:53,296 INFO
[org.ovirt.engine.core.bll.VdsEventListener] (pool-3-thread-47)
ResourceManager::vdsNotResponding entered for Host
44d77dcb-b775-4aef-ae59-1dea8d5c691a, 192.168.
10.25
2013-08-07 14:38:53,299 INFO
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63] hostFromVds::selectedVds -
blade6, spmStatus Free, stor
age pool VI-DataCenter
2013-08-07 14:38:53,308 ERROR
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63] SPM Init: could not find
reported vds or not up - pool:
VI-DataCenter vds_spm_id: 1
2013-08-07 14:38:53,346 INFO
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63] SPM selection - vds seems
as spm blade5
2013-08-07 14:38:53,355 WARN
[org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
(DefaultQuartzScheduler_Worker-7) [3b761f63] spm vds is non responsive,
stopping spm selection.
2013-08-07 14:38:53,438 INFO  [org.ovirt.engine.core.bll.FenceExecutor]
(pool-3-thread-47) Using Host blade6 from CLUSTER as proxy to execute
Restart command on Host blade5
2013-08-07 14:38:53,438 INFO  [org.ovirt.engine.core.bll.FenceExecutor]
(pool-3-thread-47) Executing Status Power Management command, Proxy
Host:blade6, Agent:ilo, Target Host:blade5, Manag
ement IP:ilo5.vi.pt, User:Administrator, Options:secure=true
2013-08-07 14:38:53,457 INFO
[org.ovirt.engine.core.vdsbroker.vdsbroker.FenceVdsVDSCommand]
(pool-3-thread-47) START, FenceVdsVDSCommand(HostName = blade6, HostId =
2530f498-6029-496a-ab42-9
24ca2e3eb7f, targetVdsId = 44d77dcb-b775-4aef-ae59-1dea8d5c691a, action
= Status, ip = ilo5.vi.pt, port = , type = ilo, user = Administrator,
password = **, options = 'secure=true'), log 
id: 41a729f3
2013-08-07 14:39:02,533 INFO
[org.ovirt.engine.core.vdsbroker.vdsbroker.FenceVdsVDSCommand]
(pool-3-thread-47) FINISH, FenceVdsVDSCommand, return: Test Succeeded,
Host Status is: on, log id:
 41a729f3
2013-08-07 14:39:02,541 INFO
[org.ovirt.engine.core.bll.VdsNotRespondingTreatmentCommand]
(pool-3-thread-47) Running command: VdsNotRespondingTreatmentCommand
internal: true. Entities affect
ed :  ID: 44d77dcb-b775-4aef-ae59-1dea8d5c691a Type: VDS
2013-08-07 

Re: [Users] glance and neutron deep dives on youtube

2013-08-07 Thread Koch (ovido)
I want to thank Frederico, Mike and Eli for preparing deep dive webinars
and thanks a lot for putting them on YouTube.
Sadly I couldn't participate, but will watch the slides and videos.

I hope you keep going with such webinars.


Again, thanks a lot!
René



On Tue, 2013-08-06 at 12:10 +0300, Itamar Heim wrote:
 On 08/03/2013 06:46 AM, Jason Brooks wrote:
 
  Hey everyone,
 
  To make them easier to access, I converted the Elluminate session
  recordings [1] for the recent Glance and Neutron integration deep
  dives into regular videos and put them up on YouTube:
 
  oVirt / Glance Integration Deep Dive:
   http://www.youtube.com/watch?v=_Nyi1xyiQnY
 
  oVirt / Neutron Integration Deep Dive:
   http://www.youtube.com/watch?v=S16AfFylcHk
 
  Regards, Jason
 
 
  [1] http://www.ovirt.org/OVirt_3.3_release_notes
  ___
  Users mailing list
  Users@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/users
 
 
 thanks jason - can you please add these links to [1] above?
 
 I've added them to youtube ovirtproject channel
 http://www.youtube.com/ovirtproject
 
 Thanks,
 Itamar
 ___
 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] oVirt Weekly Meeting Minutes -- 2013-08-07

2013-08-07 Thread Ofer Schreiber
Minutes:http://ovirt.org/meetings/ovirt/2013/ovirt.2013-08-07-14.04.html
Minutes (text): http://ovirt.org/meetings/ovirt/2013/ovirt.2013-08-07-14.04.txt
Log:
http://ovirt.org/meetings/ovirt/2013/ovirt.2013-08-07-14.04.log.html


#ovirt: oVirt Weekly Meeting


Meeting started by oschreib at 14:04:19 UTC. The full logs are available
at http://ovirt.org/meetings/ovirt/2013/ovirt.2013-08-07-14.04.log.html
.

Meeting summary
---
* agenda and roll call  (oschreib, 14:04:28)
  * 3.3 status update  (oschreib, 14:04:48)
  * infra team update  (oschreib, 14:05:16)
  * Conference and Workshop  (oschreib, 14:05:23)
  * Other Topics  (oschreib, 14:05:27)

* 3.3 status update  (oschreib, 14:07:06)
  * ovirt 3.3 releae page and tracker:  (oschreib, 14:07:13)
  * LINK: http://www.ovirt.org/OVirt_3.3_release-management   (oschreib,
14:07:18)
  * LINK: https://bugzilla.redhat.com/show_bug.cgi?id=918494
(oschreib, 14:07:24)
  * blocker review  (oschreib, 14:10:32)
  * : Bug 984586 - Cannot start a VM with USB Native - Exit message:
internal error Could not format channel target type. (backend,
MODIFIED)  (oschreib, 14:11:10)
  * Bug should have been fixed.  (oschreib, 14:16:42)
  * LINK: http://gerrit.ovirt.org/#/c/17708/ is in ovirt-engine-3.3
branch  (evilissimo, 14:17:56)
  * Bug 988004 - [vdsm] OSError: [Errno 2] No such file or directory:
'/sys/class/net/ovirtmgmt/brif' (vdsm ON_QA)  (oschreib, 14:18:53)
  * bug already fixed  (oschreib, 14:22:40)
  * Bug 988065 - Migration fails - AttributeError: 'ConsoleDevice'
object has no attribute 'alias' (vdsm, MODIFIED)  (oschreib,
14:23:22)
  * pushed, not sure about build yet  (oschreib, 14:24:01)
  * Bug 988299 - Impossible to start VM from Gluster Storage Domain
(engine, NEW)  (oschreib, 14:26:23)
  * no qemu 1.3 for centos 6.4, we might want to release note that
issue, followup in the mailing list  (oschreib, 14:37:05)
  * BZ#988397 - ovirt-node post-installation setup networks fails when
NetworkManager is running (vdsm, ON_QA)  (oschreib, 14:39:19)
  * bug is fixed  (oschreib, 14:42:11)
  * BZ#994523 - [vdsm][multiple gateways] Keep ovirt management as
default in the main routing table always (vdsm, POST)  (oschreib,
14:42:41)
  * should be pushed today  (oschreib, 14:44:44)
  * BZ#990963 - vdsm must require selinux-policy-3.12.1-68.fc19 (vdsm,
MODIFIED)  (oschreib, 14:45:23)
  * issue fixed  (oschreib, 14:47:30)
  * BZ#988990 - oVirt 3.3 - (vdsm-network): netinfo - ValueError:
unknown bridge ens3 (vdsm, ON_QA)  (oschreib, 14:48:05)
  * issue fixed  (oschreib, 14:50:49)
  * Bug 988986 - libvirt network directory is not persisted (node, POST)
(oschreib, 14:51:13)
  * fix is posted, should be closed in by tomorrow  (oschreib, 14:53:56)
  * : BZ#988849 - edit-node does not handle firewall rules (node,  NEW)
(oschreib, 14:55:48)
  * fix should be published today  (oschreib, 14:57:34)
  * Bug 987939 - engine-setup - engine-cleanup - engine-setup - fails
(installer, NEW)  (oschreib, 14:58:08)
  * no updates yet,  (oschreib, 14:59:16)
  * RC at 2013-08-14, GA at 2013-08-28  (oschreib, 15:07:12)

* other topics  (oschreib, 15:07:34)

Meeting ended at 15:09:49 UTC.



People Present (lines said)
---
* oschreib (111)
* apuimedo (31)
* danken (26)
* deepakcs (21)
* evilissimo (11)
* ybronhei (10)
* jboggs (10)
* amuller_WFH (5)
* tontsa (3)
* itamar (3)
* alonbl (3)
* outi_ (2)
* ovirtbot (2)
* jb_netapp (1)
* derez (1)
* dustins_ntap (1)
* sahina (1)
* ofri (1)
* amureini (1)
* fabiand (1)

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


Re: [Users] PROBLEM - host is restarted aromatically by ovirt and becomes unresponsible

2013-08-07 Thread Doron Fediuck


- Original Message -
| From: Ricardo Esteves maverick...@gmail.com
| To: Users@ovirt.org
| Sent: Wednesday, August 7, 2013 5:43:26 PM
| Subject: [Users] PROBLEM - host is restarted aromatically by ovirt and 
becomes unresponsible
| 
| Good afternoon,
| 
| I've having a problem with my hosts, at least one time per week the host that
| has all the VMs running restarts and becomes unresponsible.
| 
| After the restart sent to the ilo by the ovirt engine the host becomes
| unresponsible, the fans on the enclosure go up like crazy.
| 
| Then the only way to get the blade up is to stop it using ilo or onboard
| administrator,
| and then remove it from the enclosure and put it back in and then issue the
| start using ovirt gui, because using stop/start on the ilo or onboard
| administrator the blade powers up but becomes unresponsible, doesn't show
| any image or any boot post messages.
| 
| 
| Anyone else seen this problem before?
| 
| BLADE ENCLOSURE: HP BladeSystem c3000
| BLADES: HP BL460c G6
| OS: CentOS 6.4 (64 bits)
| OVIRT: 3.2
| 
| 
| engine.log:
| 
| 2013-08-07 14:38:47,256 INFO
| [org.ovirt.engine.core.bll.storage.SetStoragePoolStatusCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63] Running command:
| SetStoragePoolStatusCommand interna
| l: true. Entities affected : ID: 06951dba-556b-4323-9356-819c9160fe8e Type:
| StoragePool
| 2013-08-07 14:38:47,257 ERROR
| [org.ovirt.engine.core.vdsbroker.VdsUpdateRunTimeInfo]
| (DefaultQuartzScheduler_Worker-8) vds::refreshVdsStats Failed getVdsStats,
| vds = 44d77dcb-b775-4aef-ae59-
| 1dea8d5c691a : blade5, error = VDSNetworkException:
| java.net.NoRouteToHostException: No route to host
| 2013-08-07 14:38:47,263 WARN [org.ovirt.engine.core.vdsbroker.VdsManager]
| (DefaultQuartzScheduler_Worker-8)
| ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
| 44d77dcb-b77
| 5-4aef-ae59-1dea8d5c691a : blade5, VDS Network Error, continuing.
| java.net.NoRouteToHostException: No route to host
| 2013-08-07 14:38:50,252 ERROR
| [org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63]
| IrsBroker::Failed::GetStoragePoolInfoVDS due to: NoRout
| eToHostException: No route to host
| 2013-08-07 14:38:50,253 WARN [org.ovirt.engine.core.vdsbroker.VdsManager]
| (DefaultQuartzScheduler_Worker-10) [2b4cb7c5]
| ResourceManager::refreshVdsRunTimeInfo::Failed to refresh VDS , vds =
| 44d77dcb-b775-4aef-ae59-1dea8d5c691a : blade5, VDS Network Error, continuing.
| java.net.NoRouteToHostException: No route to host
| 2013-08-07 14:38:53,252 INFO
| [org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63] Irs placed on server
| 44d77dcb-b775-4aef-ae59-1dea8d5c69
| 1a failed. Proceed Failover
| 2013-08-07 14:38:53,254 ERROR [org.ovirt.engine.core.vdsbroker.VdsManager]
| (DefaultQuartzScheduler_Worker-4) VDS::handleNetworkException Server failed
| to respond, vds_id = 44d77dcb-b775-4aef
| -ae59-1dea8d5c691a, vds_name = blade5, error =
| java.net.NoRouteToHostException: No route to host
| 2013-08-07 14:38:53,296 INFO [org.ovirt.engine.core.bll.VdsEventListener]
| (pool-3-thread-47) ResourceManager::vdsNotResponding entered for Host
| 44d77dcb-b775-4aef-ae59-1dea8d5c691a, 192.168.
| 10.25
| 2013-08-07 14:38:53,299 INFO
| [org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63] hostFromVds::selectedVds -
| blade6, spmStatus Free, stor
| age pool VI-DataCenter
| 2013-08-07 14:38:53,308 ERROR
| [org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63] SPM Init: could not find
| reported vds or not up - pool:
| VI-DataCenter vds_spm_id: 1
| 2013-08-07 14:38:53,346 INFO
| [org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63] SPM selection - vds seems as
| spm blade5
| 2013-08-07 14:38:53,355 WARN
| [org.ovirt.engine.core.vdsbroker.irsbroker.IrsBrokerCommand]
| (DefaultQuartzScheduler_Worker-7) [3b761f63] spm vds is non responsive,
| stopping spm selection.
| 2013-08-07 14:38:53,438 INFO [org.ovirt.engine.core.bll.FenceExecutor]
| (pool-3-thread-47) Using Host blade6 from CLUSTER as proxy to execute
| Restart command on Host blade5
| 2013-08-07 14:38:53,438 INFO [org.ovirt.engine.core.bll.FenceExecutor]
| (pool-3-thread-47) Executing Status Power Management command, Proxy
| Host:blade6, Agent:ilo, Target Host:blade5, Manag
| ement IP:ilo5.vi.pt, User:Administrator, Options:secure=true
| 2013-08-07 14:38:53,457 INFO
| [org.ovirt.engine.core.vdsbroker.vdsbroker.FenceVdsVDSCommand]
| (pool-3-thread-47) START, FenceVdsVDSCommand(HostName = blade6, HostId =
| 2530f498-6029-496a-ab42-9
| 24ca2e3eb7f, targetVdsId = 44d77dcb-b775-4aef-ae59-1dea8d5c691a, action =
| Status, ip = ilo5.vi.pt, port = , type = ilo, user = Administrator, password
| = **, options = 'secure=true'), log
| id: 41a729f3
| 2013-08-07 14:39:02,533 INFO

Re: [Users] Ovirt 3.2 - Clone VM from snapshot

2013-08-07 Thread noc

On 7-8-2013 18:20, Ricardo Esteves wrote:

Good afternoon,

Hi, when o try to clone vm from snapshot, it opens the window but it doesn't 
does anything else.



Is a known bug of 3.2.1. version 3.2.2 fixes this.

Joop

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