Re: [one-users] Multiple network cards with same MAC address

2014-09-16 Thread Daniel Dehennin
Ruben S. Montero rsmont...@opennebula.org writes:

 Hi

Hello,

 MAC address  is checked to not collide within a VNET - AR. If you want to
 set different MAC on different VNETs you need to define the MAC address
 ranges in such a way they do not overlap.

Ok, thank you.
-- 
Daniel Dehennin
Récupérer ma clef GPG: gpg --recv-keys 0xCC1E9E5B7A6FE2DF
Fingerprint: 3E69 014E 5C23 50E8 9ED6  2AAD CC1E 9E5B 7A6F E2DF


signature.asc
Description: PGP signature
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Multiple VLAN and Bridge

2014-09-16 Thread Stefan Kooman
Hi,

Quoting Amier Anis (myma...@gmail.com):
 Dear Stefan,
 
 It's great ... yes I would like you to share here. I hv tried before but no
 luck.
 My server have at least 2 physical nic. 1 is management and another one is
 storage.

I use this little script to setup networking on our hosts (openvswitch
should already be installed and running):

#!/bin/sh
echo adding bridges
ovs-vsctl add-br storage
ovs-vsctl add-br uplink
ovs-vsctl add-br mgmt-migr

echo adding bonds
ovs-vsctl add-bond storage bond0 eth0 eth5 bond_mode=balance-tcp
lacp=active other_config:lacp-time=fast trunks=list-of-vlan-ids-here
ovs-vsctl add-bond uplink bond1 eth1 eth4 bond_mode=balance-tcp
lacp=active other_config:lacp-time=fast trunks=list-of-vlan-ids-here
ovs-vsctl add-bond mgmt-migr bond2 eth2 eth3 bond_mode=balance-tcp
lacp=active other_config:lacp-time=fast trunks=list-of-vlan-ids-here

We have all vlans tagged/trunked on the port(s)(channels). In order to
have vlan interface(s) on the hypervisor itself we create some
openvswitch internal ports:

echo adding vlans
ovs-vsctl add-port storage vlanVID tag=VID -- set interface vlanID
type=internal
ovs-vsctl add-port mgmt-migr vlanVID tag=VID -- set interface vlanVID
type=internal
ovs-vsctl add-port mgmt-migr vlanVID tag=VID -- set interface vlanVID
type=internal

That way we can configure networking for hypervisor management,
vm-migration and storage (nfs) on the hypervisors themselves. It will
just show up as a regular interface (ip list).

If you don't want / can't make portchannels (bonds/trunkports/teams,
whatever you want to call them: 802.3ad) you can add ports to bridges
like this:

ovs-vsctl add-br bridge-name

At this point you got two options. Create a trunk port (tag all vlans:
802.1Q), or provide a list of vlans. If you define a trunk port you
don't have to add newly created vlans on the openvswitch port if you add
new vlans on the physical switch port.

trunk port:
ovs-vsctl add-port eth0 bridge-name vlan_mode=trunk

or

Explicitly specify vlans:
ovs-vsctl add-port eth0 bridge-name trunks=vlan_id1,vlan_id2

In /etc/network/interfaces (if using Ubuntu/Debian) you have to make
sure the physical devices are marked up/down:

auto eth0
iface eth0 inet manual
  pre-up ip link set $IFACE up
  post-down ip link set $IFACE down

auto eth1
iface eth1 inet manual
  pre-up ip link set $IFACE up
  post-down ip link set $IFACE down

...
for every interface you want to add to openvswitch
...

And of course configure networking for the vlan (internal)
interface(s).

ovs-vsctl show should give you a nice overview of what has been
configured. 

Just add the openvswitch bridge(s) to OpenNebula and off you go.

Let me know if I can be of any further assistance.

Gr. Stefan


-- 
| BIT BV  http://www.bit.nl/Kamer van Koophandel 09090351
| GPG: 0xD14839C6   +31 318 648 688 / i...@bit.nl


pgpZx2l7kjQYK.pgp
Description: PGP signature
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Extra IP's not reachable from outside worl

2014-09-16 Thread Johan Kooijman
Hi,

I have a VM with 6 IP's. Contextualization configured them for me, it
works. However: all IP's on interfaced other than eth0, are not reachable
from the outside world.

When I down the ethX interface, add the IP's as an alias on eth0 and send
out an arping from eth0, the IP becomes available. Sending the arp from the
eth1 interface doesn't help.


-- 
Met vriendelijke groeten / With kind regards,
Johan Kooijman
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Migrating from none to cephx authorization

2014-09-16 Thread Stanislav Yanchev
Hello,
We are migrating from authorization none to cephx in our ceph datastore. Is 
there a way to upgrade the available VMs with the CEPH_SECRET value?
Now only the new one are generated with CEPH_SECRET and working with libvirt. 
We're using OpenNebula 4.6.2 at the moment.

Regards,
Stanislav Yanchev
Sen. Core Systems Operations Admin

[cid:image001.png@01CFD1C0.5303D5C0]

Mobile: +359 882 549 441
s.yanc...@maxtelecom.bgmailto:s.yanc...@maxtelecom.bg
www.maxtelecom.bghttp://www.maxtelecom.bg



CONFIDENTIALITY NOTICE

The information contained in this message (including any attachments) is 
confidential and may be legally privileged or otherwise protected from 
disclosure. This message is intended solely for the addressee(s). If you are 
not the intended recipient, please notify the sender by return e-mail and 
delete this message from your system. Any unauthorised use, reproduction, or 
dissemination of this message is strictly prohibited. Any liability arising 
from any third party acting, or refraining from acting, on any information 
contained in this e-mail is hereby excluded. Please note that e-mails are 
susceptible to change. Max Telecom shall not be liable for the improper or 
incomplete transmission of the information contained in this communication, nor 
shall it be liable for any delay in its receipt.


___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


Re: [one-users] Multiple VLAN and Bridge

2014-09-16 Thread Amier Anis
thanks stefan. i will give a try. I will let you know if i need further
help.


On Tue, Sep 16, 2014 at 6:17 PM, Stefan Kooman ste...@bit.nl wrote:

 Hi,

 Quoting Amier Anis (myma...@gmail.com):
  Dear Stefan,
 
  It's great ... yes I would like you to share here. I hv tried before but
 no
  luck.
  My server have at least 2 physical nic. 1 is management and another one
 is
  storage.

 I use this little script to setup networking on our hosts (openvswitch
 should already be installed and running):

 #!/bin/sh
 echo adding bridges
 ovs-vsctl add-br storage
 ovs-vsctl add-br uplink
 ovs-vsctl add-br mgmt-migr

 echo adding bonds
 ovs-vsctl add-bond storage bond0 eth0 eth5 bond_mode=balance-tcp
 lacp=active other_config:lacp-time=fast trunks=list-of-vlan-ids-here
 ovs-vsctl add-bond uplink bond1 eth1 eth4 bond_mode=balance-tcp
 lacp=active other_config:lacp-time=fast trunks=list-of-vlan-ids-here
 ovs-vsctl add-bond mgmt-migr bond2 eth2 eth3 bond_mode=balance-tcp
 lacp=active other_config:lacp-time=fast trunks=list-of-vlan-ids-here

 We have all vlans tagged/trunked on the port(s)(channels). In order to
 have vlan interface(s) on the hypervisor itself we create some
 openvswitch internal ports:

 echo adding vlans
 ovs-vsctl add-port storage vlanVID tag=VID -- set interface vlanID
 type=internal
 ovs-vsctl add-port mgmt-migr vlanVID tag=VID -- set interface vlanVID
 type=internal
 ovs-vsctl add-port mgmt-migr vlanVID tag=VID -- set interface vlanVID
 type=internal

 That way we can configure networking for hypervisor management,
 vm-migration and storage (nfs) on the hypervisors themselves. It will
 just show up as a regular interface (ip list).

 If you don't want / can't make portchannels (bonds/trunkports/teams,
 whatever you want to call them: 802.3ad) you can add ports to bridges
 like this:

 ovs-vsctl add-br bridge-name

 At this point you got two options. Create a trunk port (tag all vlans:
 802.1Q), or provide a list of vlans. If you define a trunk port you
 don't have to add newly created vlans on the openvswitch port if you add
 new vlans on the physical switch port.

 trunk port:
 ovs-vsctl add-port eth0 bridge-name vlan_mode=trunk

 or

 Explicitly specify vlans:
 ovs-vsctl add-port eth0 bridge-name trunks=vlan_id1,vlan_id2

 In /etc/network/interfaces (if using Ubuntu/Debian) you have to make
 sure the physical devices are marked up/down:

 auto eth0
 iface eth0 inet manual
   pre-up ip link set $IFACE up
   post-down ip link set $IFACE down

 auto eth1
 iface eth1 inet manual
   pre-up ip link set $IFACE up
   post-down ip link set $IFACE down

 ...
 for every interface you want to add to openvswitch
 ...

 And of course configure networking for the vlan (internal)
 interface(s).

 ovs-vsctl show should give you a nice overview of what has been
 configured.

 Just add the openvswitch bridge(s) to OpenNebula and off you go.

 Let me know if I can be of any further assistance.

 Gr. Stefan


 --
 | BIT BV  http://www.bit.nl/Kamer van Koophandel 09090351
 | GPG: 0xD14839C6   +31 318 648 688 / i...@bit.nl

___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org


[one-users] Fwd: 4.8 with vSphere single node datastores

2014-09-16 Thread Tino Vazquez
--
OpenNebula - Flexible Enterprise Cloud Made Simple

--
Constantino Vázquez Blanco, PhD, MSc
Senior Infrastructure Architect at C12G Labs
www.c12g.com | @C12G | es.linkedin.com/in/tinova

--
Confidentiality Warning: The information contained in this e-mail and any
accompanying documents, unless otherwise expressly indicated, is
confidential and privileged, and is intended solely for the person and/or
entity to whom it is addressed (i.e. those identified in the To and cc
box). They are the property of C12G Labs S.L.. Unauthorized distribution,
review, use, disclosure, or copying of this communication, or any part
thereof, is strictly prohibited and may be unlawful. If you have received
this e-mail in error, please notify us immediately by e-mail at
ab...@c12g.com and delete the e-mail and attachments and any copy from your
system. C12G thanks you for your cooperation.

-- Forwarded message --
From: Stan Yarbrough stan.yarbro...@oriontech.com
Date: 15 September 2014 19:19
Subject: RE: [one-users] 4.8 with vSphere single node datastores
To: Tino Vazquez cvazq...@c12g.com


 Here is the config for the system 0 datastore











 Stan Yarbrough

Chief Technology Officer

Orion Technology Services

704-307-1633

600 Galleria Parkway SE | Suite 1450

Atlanta, Georgia 30339

stan.yarbro...@oriontech.com | www.oriontech.com







  The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.



-Original Message-
From: Users [mailto:users-boun...@lists.opennebula.org] On Behalf Of Tino
Vazquez
Sent: Monday, September 15, 2014 12:12 PM
To: users
Subject: Re: [one-users] 4.8 with vSphere single node datastores









 -- Forwarded message --

 From: Stan Yarbrough stan.yarbro...@oriontech.com

 Date: 15 September 2014 18:08

 Subject: RE: [one-users] 4.8 with vSphere single node datastores

 To: Tino Vazquez cvazq...@c12g.com





 Still empty and status is Pending



This means that the scheduler is not able to find an available host, are
the hosts still in the on state? If so, please send us the output of
onehost list, and also the scheduler log (/var/log/one/sched.log).







 [oneadmin@otscsfe01 one]$ ls -l

 total 97784

 -rw-r--r--  1 root root   61 Sep 15 11:23 0.log

 -rw-r--r--  1 root root   61 Sep 15 11:23 1.log

 -rw-r--r--  1 root root   61 Sep 15 11:23 2.log

 -rw-r--r--  1 root root   61 Sep 15 11:23 3.log

 -rw-r--r--  1 root root   61 Sep 15 11:23 4.log

 -rw-r--r--  1 root root0 Sep 15 11:25 5.log

 -rw-r--r--  1 root root0 Sep 15 11:25 6.log

 -rw-r--r--  1 root root0 Sep 15 11:25 7.log

 -rw-r--r--  1 root root0 Sep 15 11:25 8.log 



About the file permissions, did you execute 'oned' as root? If so, you may
need to chown to oneadmin /var/lib/one and /var/log/one.



Best,



-Tino







 Stan



 Stan Yarbrough

 Chief Technology Officer

 Orion Technology Services

 704-307-1633

 600 Galleria Parkway SE | Suite 1450

 Atlanta, Georgia 30339

 stan.yarbro...@oriontech.com | www.oriontech.com

















 The information transmitted is intended only for the person or entity

 to which it is addressed and may contain confidential and/or

 privileged material. Any review, retransmission, dissemination or

 other use of, or taking of any action in reliance upon, this

 information by persons or entities other than the intended recipient

 is prohibited. If you received this in error, please contact the

 sender and delete the material from any computer.





 -Original Message-

 From: Tino Vazquez [mailto:cvazq...@c12g.com cvazq...@c12g.com]

 Sent: Monday, September 15, 2014 11:38 AM

 To: Stan Yarbrough

 Cc: users

 Subject: Re: [one-users] 4.8 with vSphere single node datastores



 Hi Stan,



 Ok, restart oned and please try again to deploy a VM and come back with
the log.



 Best,



 -Tino



 --

 OpenNebula - Flexible Enterprise Cloud Made Simple



 --

 Constantino Vázquez Blanco, PhD, MSc

 Senior Infrastructure Architect at C12G Labs www.c12g.com | @C12G |

 es.linkedin.com/in/tinova



 --

 Confidentiality Warning: The information contained in this e-mail and

 any accompanying documents, unless otherwise expressly indicated, is

 confidential and privileged, and is intended solely for the person

 and/or entity to whom it is addressed (i.e. those identified in the

 To and cc box). They are the property of C12G Labs S.L..

 Unauthorized distribution, review, use, disclosure, or copying of this

 communication, or any 

Re: [one-users] 4.8 with vSphere single node datastores

2014-09-16 Thread Tino Vazquez
Hi Stan,

From the last mail, I think you may be using ESX 5.5, please note that
this version is currently not supported by OpenNebula. Having said
this, we are in the process of supporting it and there seems to be no
many issues, so we can try and fix it in your installation.

The problem you are experiencing comes from a bad monitoring of the
ESX host. Please send us the output of the following command (as
oneadmin, in the front-end):

 $  /var/lib/one/remotes/im/vmware.d/vmware.rb hostname-of-esx-server

Best regards,

-Tino




 -- Forwarded message --
 From: Stan Yarbrough stan.yarbro...@oriontech.com
 Date: 15 September 2014 20:36
 Subject: RE: [one-users] 4.8 with vSphere single node datastores
 To: Tino Vazquez cvazq...@c12g.com


 I did find one issue.  The UID for ESX servers defaults to 1000 when
 you create the user oneadmin.  The UID for FE is 1001, so icreated a
 dummy user in esx to increase the UID count.  I also reconfigured SSH
 for the hosts so that it will login.  Ensured that oneadmin has access
 to the ESX Shell.  ESX shell and SSH services are running on all
 hosts.

 Nothing different though.


 Stan Yarbrough
 Chief Technology Officer
 Orion Technology Services
 704-307-1633
 600 Galleria Parkway SE | Suite 1450
 Atlanta, Georgia 30339
 stan.yarbro...@oriontech.com | www.oriontech.com








 The information transmitted is intended only for the person or entity
 to which it is addressed and may contain confidential and/or
 privileged material. Any review, retransmission, dissemination or
 other use of, or taking of any action in reliance upon, this
 information by persons or entities other than the intended recipient
 is prohibited. If you received this in error, please contact the
 sender and delete the material from any computer.


 -Original Message-
 From: Users [mailto:users-boun...@lists.opennebula.org] On Behalf Of
 Tino Vazquez
 Sent: Monday, September 15, 2014 12:12 PM
 To: users
 Subject: Re: [one-users] 4.8 with vSphere single node datastores




 -- Forwarded message --
 From: Stan Yarbrough stan.yarbro...@oriontech.com
 Date: 15 September 2014 18:08
 Subject: RE: [one-users] 4.8 with vSphere single node datastores
 To: Tino Vazquez cvazq...@c12g.com


 Still empty and status is Pending

 This means that the scheduler is not able to find an available host,
 are the hosts still in the on state? If so, please send us the
 output of onehost list, and also the scheduler log
 (/var/log/one/sched.log).



 [oneadmin@otscsfe01 one]$ ls -l
 total 97784
 -rw-r--r--  1 root root   61 Sep 15 11:23 0.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 1.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 2.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 3.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 4.log
 -rw-r--r--  1 root root0 Sep 15 11:25 5.log
 -rw-r--r--  1 root root0 Sep 15 11:25 6.log
 -rw-r--r--  1 root root0 Sep 15 11:25 7.log
 -rw-r--r--  1 root root0 Sep 15 11:25 8.log 

 About the file permissions, did you execute 'oned' as root? If so, you
 may need to chown to oneadmin /var/lib/one and /var/log/one.

 Best,

 -Tino



 Stan

 Stan Yarbrough
 Chief Technology Officer
 Orion Technology Services
 704-307-1633
 600 Galleria Parkway SE | Suite 1450
 Atlanta, Georgia 30339
 stan.yarbro...@oriontech.com | www.oriontech.com








 The information transmitted is intended only for the person or entity
 to which it is addressed and may contain confidential and/or
 privileged material. Any review, retransmission, dissemination or
 other use of, or taking of any action in reliance upon, this
 information by persons or entities other than the intended recipient
 is prohibited. If you received this in error, please contact the
 sender and delete the material from any computer.


 -Original Message-
 From: Tino Vazquez [mailto:cvazq...@c12g.com]
 Sent: Monday, September 15, 2014 11:38 AM
 To: Stan Yarbrough
 Cc: users
 Subject: Re: [one-users] 4.8 with vSphere single node datastores

 Hi Stan,

 Ok, restart oned and please try again to deploy a VM and come back with the 
 log.

 Best,

 -Tino

 --
 OpenNebula - Flexible Enterprise Cloud Made Simple

 --
 Constantino Vázquez Blanco, PhD, MSc
 Senior Infrastructure Architect at C12G Labs www.c12g.com | @C12G |
 es.linkedin.com/in/tinova

 --
 Confidentiality Warning: The information contained in this e-mail and
 any accompanying documents, unless otherwise expressly indicated, is
 confidential and privileged, and is intended solely for the person
 and/or entity to whom it is addressed (i.e. those identified in the
 To and cc box). They are the property of C12G Labs S.L..
 Unauthorized distribution, review, use, disclosure, or copying of this
 communication, or any part thereof, is strictly prohibited and may be
 unlawful. If you have received this e-mail in error, 

[one-users] Fwd: 4.8 with vSphere single node datastores

2014-09-16 Thread Tino Vazquez
--
OpenNebula - Flexible Enterprise Cloud Made Simple

--
Constantino Vázquez Blanco, PhD, MSc
Senior Infrastructure Architect at C12G Labs
www.c12g.com | @C12G | es.linkedin.com/in/tinova

--
Confidentiality Warning: The information contained in this e-mail and
any accompanying documents, unless otherwise expressly indicated, is
confidential and privileged, and is intended solely for the person
and/or entity to whom it is addressed (i.e. those identified in the
To and cc box). They are the property of C12G Labs S.L..
Unauthorized distribution, review, use, disclosure, or copying of this
communication, or any part thereof, is strictly prohibited and may be
unlawful. If you have received this e-mail in error, please notify us
immediately by e-mail at ab...@c12g.com and delete the e-mail and
attachments and any copy from your system. C12G thanks you for your
cooperation.



-- Forwarded message --
From: Stan Yarbrough stan.yarbro...@oriontech.com
Date: 15 September 2014 20:36
Subject: RE: [one-users] 4.8 with vSphere single node datastores
To: Tino Vazquez cvazq...@c12g.com


I did find one issue.  The UID for ESX servers defaults to 1000 when
you create the user oneadmin.  The UID for FE is 1001, so icreated a
dummy user in esx to increase the UID count.  I also reconfigured SSH
for the hosts so that it will login.  Ensured that oneadmin has access
to the ESX Shell.  ESX shell and SSH services are running on all
hosts.

Nothing different though.


Stan Yarbrough
Chief Technology Officer
Orion Technology Services
704-307-1633
600 Galleria Parkway SE | Suite 1450
Atlanta, Georgia 30339
stan.yarbro...@oriontech.com | www.oriontech.com








The information transmitted is intended only for the person or entity
to which it is addressed and may contain confidential and/or
privileged material. Any review, retransmission, dissemination or
other use of, or taking of any action in reliance upon, this
information by persons or entities other than the intended recipient
is prohibited. If you received this in error, please contact the
sender and delete the material from any computer.


-Original Message-
From: Users [mailto:users-boun...@lists.opennebula.org] On Behalf Of
Tino Vazquez
Sent: Monday, September 15, 2014 12:12 PM
To: users
Subject: Re: [one-users] 4.8 with vSphere single node datastores




 -- Forwarded message --
 From: Stan Yarbrough stan.yarbro...@oriontech.com
 Date: 15 September 2014 18:08
 Subject: RE: [one-users] 4.8 with vSphere single node datastores
 To: Tino Vazquez cvazq...@c12g.com


 Still empty and status is Pending

This means that the scheduler is not able to find an available host,
are the hosts still in the on state? If so, please send us the
output of onehost list, and also the scheduler log
(/var/log/one/sched.log).



 [oneadmin@otscsfe01 one]$ ls -l
 total 97784
 -rw-r--r--  1 root root   61 Sep 15 11:23 0.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 1.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 2.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 3.log
 -rw-r--r--  1 root root   61 Sep 15 11:23 4.log
 -rw-r--r--  1 root root0 Sep 15 11:25 5.log
 -rw-r--r--  1 root root0 Sep 15 11:25 6.log
 -rw-r--r--  1 root root0 Sep 15 11:25 7.log
 -rw-r--r--  1 root root0 Sep 15 11:25 8.log 

About the file permissions, did you execute 'oned' as root? If so, you
may need to chown to oneadmin /var/lib/one and /var/log/one.

Best,

-Tino



 Stan

 Stan Yarbrough
 Chief Technology Officer
 Orion Technology Services
 704-307-1633
 600 Galleria Parkway SE | Suite 1450
 Atlanta, Georgia 30339
 stan.yarbro...@oriontech.com | www.oriontech.com








 The information transmitted is intended only for the person or entity
 to which it is addressed and may contain confidential and/or
 privileged material. Any review, retransmission, dissemination or
 other use of, or taking of any action in reliance upon, this
 information by persons or entities other than the intended recipient
 is prohibited. If you received this in error, please contact the
 sender and delete the material from any computer.


 -Original Message-
 From: Tino Vazquez [mailto:cvazq...@c12g.com]
 Sent: Monday, September 15, 2014 11:38 AM
 To: Stan Yarbrough
 Cc: users
 Subject: Re: [one-users] 4.8 with vSphere single node datastores

 Hi Stan,

 Ok, restart oned and please try again to deploy a VM and come back with the 
 log.

 Best,

 -Tino

 --
 OpenNebula - Flexible Enterprise Cloud Made Simple

 --
 Constantino Vázquez Blanco, PhD, MSc
 Senior Infrastructure Architect at C12G Labs www.c12g.com | @C12G |
 es.linkedin.com/in/tinova

 --
 Confidentiality Warning: The information contained in this e-mail and
 any accompanying documents, unless otherwise expressly indicated, is
 confidential and privileged, and is intended solely for the person
 and/or entity to 

Re: [one-users] unknown ethernet controller on windows imported image

2014-09-16 Thread Tino Vazquez
Hi Luca,

Can you send the .vmx over in case we can see anything wrong with it?

Regards,

-Tino



--
OpenNebula - Flexible Enterprise Cloud Made Simple

--
Constantino Vázquez Blanco, PhD, MSc
Senior Infrastructure Architect at C12G Labs
www.c12g.com | @C12G | es.linkedin.com/in/tinova

--
Confidentiality Warning: The information contained in this e-mail and any
accompanying documents, unless otherwise expressly indicated, is
confidential and privileged, and is intended solely for the person and/or
entity to whom it is addressed (i.e. those identified in the To and cc
box). They are the property of C12G Labs S.L.. Unauthorized distribution,
review, use, disclosure, or copying of this communication, or any part
thereof, is strictly prohibited and may be unlawful. If you have received
this e-mail in error, please notify us immediately by e-mail at
ab...@c12g.com and delete the e-mail and attachments and any copy from your
system. C12G thanks you for your cooperation.

On 15 September 2014 16:27, Luca Uburti lubu...@ricca-it.com wrote:

  It gets imported but then it has an Invalid gray status. On the Events it
 says: Configuration file for one-44 on esxricca cannot be found.
 I don't know, it's like the VM can't access the datastore, yet I browse it
 correctly from inside the vSphere Client it shows as green... and this only
 happens if I specify any NIC in the template.

 thanks for your support
 Luca

 Il 15/09/2014 15:26, Tino Vazquez ha scritto:

 Hi Luca,

  Let's try to get more information. What happens if you import from
 inventory one-39.vmx (browse the datastore, and right clic it) and try to
 start the VM?

  Best,

  -Tino


 --
 OpenNebula - Flexible Enterprise Cloud Made Simple

 --
 Constantino Vázquez Blanco, PhD, MSc
 Senior Infrastructure Architect at C12G Labs
 www.c12g.com | @C12G | es.linkedin.com/in/tinova

 --
 Confidentiality Warning: The information contained in this e-mail and any
 accompanying documents, unless otherwise expressly indicated, is
 confidential and privileged, and is intended solely for the person and/or
 entity to whom it is addressed (i.e. those identified in the To and cc
 box). They are the property of C12G Labs S.L.. Unauthorized distribution,
 review, use, disclosure, or copying of this communication, or any part
 thereof, is strictly prohibited and may be unlawful. If you have received
 this e-mail in error, please notify us immediately by e-mail at
 ab...@c12g.com and delete the e-mail and attachments and any copy from
 your system. C12G thanks you for your cooperation.

 On 11 September 2014 16:25, Luca Uburti lubu...@ricca-it.com wrote:

  Hi Tino
 unfortunately I can't find vmware.log, I have only these files left over
 after the deployment fails:
 [root@one-sandbox disk.0]# pwd
 /var/lib/one/datastores/0/39/disk.0
 [root@one-sandbox disk.0]# ll -h
 total 12G
 -rw--- 1 oneadmin oneadmin 21G Sep 11 16:13 disk-flat.vmdk
 -rw--- 1 oneadmin oneadmin 639 Sep 11 16:13 disk.vmdk
 -rw-r--r-- 1 oneadmin oneadmin   0 Sep 11 16:14 one-39.vmsd
 -rw-r--r-- 1 oneadmin oneadmin 872 Sep 11 16:14 one-39.vmx
 -rw-r--r-- 1 oneadmin oneadmin 261 Sep 11 16:14 one-39.vmxf




 Il 11/09/2014 10:52, Tino Vazquez ha scritto:

 Hi Luca,

  Let's see if the vmware log gives us more information. After a
 unsuccessful deploy with the model E1000, please send us over the contents
 of the following file in the ESX host:

/vmfs/volumes/ds_id/vm_id/disk.0/vmware.log

  Best,

  -Tino


 --
 OpenNebula - Flexible Enterprise Cloud Made Simple

 --
 Constantino Vázquez Blanco, PhD, MSc
 Senior Infrastructure Architect at C12G Labs
 www.c12g.com | @C12G | es.linkedin.com/in/tinova

 --
 Confidentiality Warning: The information contained in this e-mail and any
 accompanying documents, unless otherwise expressly indicated, is
 confidential and privileged, and is intended solely for the person and/or
 entity to whom it is addressed (i.e. those identified in the To and cc
 box). They are the property of C12G Labs S.L.. Unauthorized distribution,
 review, use, disclosure, or copying of this communication, or any part
 thereof, is strictly prohibited and may be unlawful. If you have received
 this e-mail in error, please notify us immediately by e-mail at
 ab...@c12g.com and delete the e-mail and attachments and any copy from
 your system. C12G thanks you for your cooperation.

 On 10 September 2014 12:54, Luca Uburti lubu...@ricca-it.com wrote:

  Hello
 I tried adding the model E1000 as you suggested, but now the Vm fails to
 instantiate.
 I tried specifying E1000, vmxnet3 and even Flexible as Model, but they
 all give these errors,
 The VM only deploys if I leave the Model field empty (but then I have no
 connectivity)

 I get these errors in the log:

 Wed Sep 10 12:20:57 2014 [Z0][VMM][D]: Message received: LOG I 38
 Command execution fail: /var/lib/one/remotes/vmm/vmware/deploy
 '/var/lib/one/vms/38/deployment.0' '10.10.10.235' 38 10.10.10.235
 Wed Sep 10 12:20:57 2014 

[one-users] Error when instantiating template with OS Disk and Datablock - 4.8

2014-09-16 Thread Robert Tanase
Hello One Users,

I am facing a strange behavior when instantiating a template.

1) When template contains only the OS disk (qcow2) - VM instances get on
Active/Running'

2) When a second disk (Datablock - 1GB - vd - no other settings) - got the
following error:

I was trying also with qcow2 Datablock - same result.

Any help is much appreciated.

Thank you,
Robert Tanase

Tue Sep 16 19:21:26 2014 [DiM][I]: New VM state is ACTIVE.
Tue Sep 16 19:21:27 2014 [LCM][I]: New VM state is PROLOG.
Tue Sep 16 19:21:47 2014 [LCM][I]: New VM state is BOOT
Tue Sep 16 19:21:47 2014 [VMM][I]: Generating deployment file:
/var/lib/one/vms/1151/deployment.0
Tue Sep 16 19:21:47 2014 [VMM][I]: ExitCode: 0
Tue Sep 16 19:21:47 2014 [VMM][I]: Successfully execute network driver
operation: pre.
Tue Sep 16 19:21:49 2014 [VMM][I]: Command execution fail: cat  EOT |
/var/tmp/one/vmm/kvm/deploy '/var/lib/one//datastores/0/1151/deployment.0' '
bu-mf39071.appnor.net' 1151 bu-mf39071.mydomain.net
Tue Sep 16 19:21:49 2014 [VMM][I]: setlocale: No such file or directory
Tue Sep 16 19:21:49 2014 [VMM][I]: error: Failed to create domain from
/var/lib/one//datastores/0/1151/deployment.0
Tue Sep 16 19:21:49 2014 [VMM][I]: error: internal error process exited
while connecting to monitor: kvm: -drive
file=/var/lib/one//datastores/0/1151/disk.1,if=none,id=drive-ide0-0-1,format=qcow2,cache=none:
could not open disk image /var/lib/one//datastores/0/1151/disk.1: Invalid
argument
Tue Sep 16 19:21:49 2014 [VMM][I]:
Tue Sep 16 19:21:49 2014 [VMM][E]: Could not create domain from
/var/lib/one//datastores/0/1151/deployment.0
Tue Sep 16 19:21:49 2014 [VMM][I]: ExitCode: 255
Tue Sep 16 19:21:49 2014 [VMM][I]: Failed to execute virtualization driver
operation: deploy.
Tue Sep 16 19:21:49 2014 [VMM][E]: Error deploying virtual machine: Could
not create domain from /var/lib/one//datastores/0/1151/deployment.0
Tue Sep 16 19:21:49 2014 [DiM][I]: New VM state is FAILED
___
Users mailing list
Users@lists.opennebula.org
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org