Re: [ovirt-users] how does ovirt deal with multiple networks with multiple gateways

2017-04-30 Thread martin chamambo
I am using ovirt 4.1.1.X.X  version on both nodes and Engine.
There are no static routes and the network topology is is such a way that
only the VMnetwork logical network is on a network with internet and has
got  a default gateway .

so i have
192.168.1.X  with a gateway of say 192.168.1.50 (This has internet) and
this is the VM network
 192.168.2.X , no gateway and is the ovirtmangnt
192.168.3.X  no gateway and its the display
,192.168.4.X , no gateway and its the Migration network
192.168.5.X , no gateway and its the Storage

when i set up these networks using the Ovirt engine GUI , ovirt seems to
create routes and rule files for each specific network ,but for some reason
, i cant ping anything besides the networks defined

On Sun, Apr 30, 2017 at 8:45 AM, Yaniv Kaul <yk...@redhat.com> wrote:

> Can you share some more details?
> - What version are you using?
> - What is the network topology? Are any static routes defined? The fact
> oVirt sets a specific network for storage does not imply it'll use it for
> storage automatically - unless routing is properly defined for it.
>
> TIA,
> Y.
>
> On Sun, Apr 30, 2017 at 8:11 AM, martin chamambo <chamam...@gmail.com>
> wrote:
>
>> Hello
>>
>> I am testing ovirt and i have configured it with 5 networks as shown
>> below
>>
>> Display , Migration , VMnetwork ,Storage and the default ovirtmngmnt
>> network
>>
>> These networks are represented by individual phyiscal interfaces on the
>> ovirt nodes and for some reason the default gateway is not being set
>> correctly
>>
>> it always seem to prefer the ovirtmngmnt interface as the default
>>
>> The only network thats supposed to have internet is the VMnetwork role
>>
>>
>> ___
>> 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] how does ovirt deal with multiple networks with multiple gateways

2017-04-29 Thread martin chamambo
Hello

I am testing ovirt and i have configured it with 5 networks as shown below

Display , Migration , VMnetwork ,Storage and the default ovirtmngmnt
network

These networks are represented by individual phyiscal interfaces on the
ovirt nodes and for some reason the default gateway is not being set
correctly

it always seem to prefer the ovirtmngmnt interface as the default

The only network thats supposed to have internet is the VMnetwork role
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] VDSM not properly setting the networking settings when

2017-04-27 Thread martin chamambo
Just noticed that VDSM creates these 2 files ,which should do  the routing

[root@node01 network-scripts]# cat rule-vmtraffic
# Generated by VDSM version 4.19.10.1-1.el7.centos
from 192.168.192.0/24 table 3232284815
from all to 192.168.192.0/24 dev vmtraffic table 3232284815
[root@node01 network-scripts]# cat route-vmtraffic
# Generated by VDSM version 4.19.10.1-1.el7.centos
0.0.0.0/0 via 192.168.192.2 dev vmtraffic table 3232284815
192.168.192.0/24 via 192.168.192.143 dev vmtraffic table 3232284815
[root@node01 network-scripts]#

But for some reason these are not working and i am not able to ping the
internet



On Thu, Apr 27, 2017 at 4:31 PM, martin chamambo <chamam...@gmail.com>
wrote:

> Here is my scenario
>
> I have engine and 2 nodes  running on VMware workstation with 5 interfaces
> each  with these responsibilities
>
> vmtraffic - 192.168.192.X
> display  - 192.168.193.X
> storage - 192.168.194.X
> migration- 192.168.195.X
> ovirtmanagement - 192.168.196.X
>
> Logical networks have been set up as above and all the networks are
> reachablethe only network with a gateway is the vmtraffic
>
> 192.168.192.143 with gateway 192.168.192.2
>
> when i go to the nodes via the terminal , it doesnt set the gateway and
> theirfore that node when you do ip route ,i get this
>
> [root@node01 ~]# ip route
> 192.168.192.0/24 dev vmtraffic  proto kernel  scope link  src
> 192.168.192.143
> 192.168.193.0/24 dev ens37  proto kernel  scope link  src 192.168.193.143
> 192.168.194.0/24 dev ens34  proto kernel  scope link  src 192.168.194.143
> 192.168.195.0/24 dev ens35  proto kernel  scope link  src 192.168.195.143
> 192.168.196.0/24 dev ens36  proto kernel  scope link  src 192.168.196.143
> [root@node01 ~]#
>
> I know the solution is to insert a static route but isnt the interface
> with a gateway supposed to be default gateway for any traffic ?
>
> and if i put the routes manually ,wont VDSM overwite it ,say if i upgrade.
>
>
>
>
>
>
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] VDSM not properly setting the networking settings when

2017-04-27 Thread martin chamambo
Here is my scenario

I have engine and 2 nodes  running on VMware workstation with 5 interfaces
each  with these responsibilities

vmtraffic - 192.168.192.X
display  - 192.168.193.X
storage - 192.168.194.X
migration- 192.168.195.X
ovirtmanagement - 192.168.196.X

Logical networks have been set up as above and all the networks are
reachablethe only network with a gateway is the vmtraffic

192.168.192.143 with gateway 192.168.192.2

when i go to the nodes via the terminal , it doesnt set the gateway and
theirfore that node when you do ip route ,i get this

[root@node01 ~]# ip route
192.168.192.0/24 dev vmtraffic  proto kernel  scope link  src
192.168.192.143
192.168.193.0/24 dev ens37  proto kernel  scope link  src 192.168.193.143
192.168.194.0/24 dev ens34  proto kernel  scope link  src 192.168.194.143
192.168.195.0/24 dev ens35  proto kernel  scope link  src 192.168.195.143
192.168.196.0/24 dev ens36  proto kernel  scope link  src 192.168.196.143
[root@node01 ~]#

I know the solution is to insert a static route but isnt the interface with
a gateway supposed to be default gateway for any traffic ?

and if i put the routes manually ,wont VDSM overwite it ,say if i upgrade.
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] ISSUES WITH EDITING A CLUSTER SO IT CAN BE PART OF A NEW DATACENTER

2017-04-17 Thread martin chamambo
@gianlucca yes you are right that would have worked definitely...because a
prerequisite for removing a storage domain is having another say nfs or
iscsi as the master then decommissioning the old onei opted for the
longer route of deleting the data center, since I am also still testing the
platform.

I don't think there is a work flow we are missing...im still researching
for options and will update..but seems there is no easy way

On Apr 18, 2017 12:29 AM, "Gianluca Cecchi" <gianluca.cec...@gmail.com>
wrote:
>
> On Mon, Apr 17, 2017 at 4:03 PM, martin chamambo <chamam...@gmail.com>
wrote:
>>
>> I had issues with my master data storage domain and the only way was to
set the hosts in maintenence mode ,delete the datacenter so i can recreate
it
>>
>> I managed to delete the datacenter and the storage domains , and created
a new datacenter , but now the existing clusters are not part of a
datacenter and trying to add them to the datacenter gives out this error
below
>>
>> Error while executing action: Cannot edit Cluster. Changing management
network in a non-empty cluster is not allowed.
>>
>> and by non empty i guess it means there is a host inside that cluster ?
fair enough
>>
>> trying to change a node cluster comes with the Host Cluster Dropdown
with this
>>
>> Datacenter:Undefined
>>
>> How can i fix the catch 22 scenario without deleting clusters or hosts..
>>
>>
>> surely there should be a smarter way ?
>>
>
> I don't know how to manage your current situation.
> But I somehow had a similar problem as your initial one a few weeks ago
but for other reasons.
> My case was that I defined an iSCSI DC and then used a LUN to create an
iSCSI storage domain.
> I initially formatted and tested the infrastructure to manage all the
relevant configuration (iSCSI config, multipath config, ecc.) before going
to production.
> Then I had to decommission/re-create this storage domain at its target
stage: my iSCSI lun had to be a raw copy of a SAN FC lun I migrated from
older DC.
> But in the mean time I created a cluster of two hosts and such and I
discovered that I was in problem as you described
> My solution was to create a smaller NFS share and add it as a new storage
domain: in old releases of oVirt it was not possible to mix different types
of storage domains in the same DC, but since 3.4 (oVirt version and DC
version) it is:
>
http://www.ovirt.org/develop/release-management/features/storage/mixed-types-data-center/
>
> With this workaround I was able to put then my iSCSI storage domain into
maintenance and have the small NFS one to become the master.
> And finally to remove the iSCSI storage domain and import the copied one,
finally decommissioning the temporary NFS share.
>
> Not the best way but it could have helped you too, eventually setting a
directory of the host itself as a share for a temporary operation of this
kind.
> In the past it was discussed about SPM removal and by consequence the
removal of master storage domain concept... but probably it didn't get any
update.
> See this whole thread for example:
> http://lists.ovirt.org/pipermail/users/2016-May/039782.html
>
> For sure it would be nice to have a clean way (if we are not missing some
other correct workflow) to manage the case when you have only one SD and
for some reason you need to scratch it but preserve your DC/cluster config.
> HIH,
> Gianluca
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] ISSUES WITH EDITING A CLUSTER SO IT CAN BE PART OF A NEW DATACENTER

2017-04-17 Thread martin chamambo
Sorry for the CAPS...

On Apr 17, 2017 6:53 PM, "Gianluca Cecchi" 
wrote:
>
> Hi,
> What's the problem with your keyboard while typing your emails' subject?
> Only a fact of being an Easter present and not yet acquainted..?
> It sounds like a cry and doesn't set one to reply better or sooner...
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] JUST CANT UNDERSTAND WHY OVIRT DOESNT HAVE A WEB-GUI FOR EDITING , REMOVING UNWANTED STORAGE DOMAINS

2017-04-17 Thread martin chamambo
Thats a far fetched solution koz a lot of iscsi connections are IP:3260 but
will definitely look into that regardless i ran into another issue when
i deleted the storage domains...so this will be for another time

On Mon, Apr 17, 2017 at 4:42 PM, Konstantin Raskoshnyi <konra...@gmail.com>
wrote:

> I didn't try, but should work https://www.ietf.org/rfc/rfc3721.txt
>
> On Mon, Apr 17, 2017 at 7:32 AM martin chamambo <chamam...@gmail.com>
> wrote:
>
>> @Konstantin
>>
>> ISCSI doesnt work with FQDN ,if i remember correctly , when you discover
>> your LUNs ,it will be in the form of X.X.X.X:3260 ?
>>
>>
>>
>>
>>
>> On Mon, Apr 17, 2017 at 4:27 PM, Konstantin Raskoshnyi <
>> konra...@gmail.com> wrote:
>>
>>> Use fqdn instead of IP address.
>>>
>>> On Mon, Apr 17, 2017 at 6:38 AM martin chamambo <chamam...@gmail.com>
>>> wrote:
>>>
>>>> JUST CANT UNDERSTAND WHY OVIRT DOESNT HAVE A WEB-GUI FOR EDITING
>>>> ,REMOVING UNWANTED STORAGE DOMAINS
>>>>
>>>> I configured openfiler as my iscsi storage and while i am able to
>>>> connect to it i wanted to change the IP address of the connecting IP to
>>>> one of the logical networks which i disignated as a STORAGE role.
>>>>
>>>> This is a nightmare changing this and i have to set hosts in
>>>> maintenence mode and delete the datacenter ,
>>>>
>>>> is there any other way ?
>>>> ___
>>>> 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] JUST CANT UNDERSTAND WHY OVIRT DOESNT HAVE A WEB-GUI FOR EDITING , REMOVING UNWANTED STORAGE DOMAINS

2017-04-17 Thread martin chamambo
@Konstantin

ISCSI doesnt work with FQDN ,if i remember correctly , when you discover
your LUNs ,it will be in the form of X.X.X.X:3260 ?





On Mon, Apr 17, 2017 at 4:27 PM, Konstantin Raskoshnyi <konra...@gmail.com>
wrote:

> Use fqdn instead of IP address.
>
> On Mon, Apr 17, 2017 at 6:38 AM martin chamambo <chamam...@gmail.com>
> wrote:
>
>> JUST CANT UNDERSTAND WHY OVIRT DOESNT HAVE A WEB-GUI FOR EDITING
>> ,REMOVING UNWANTED STORAGE DOMAINS
>>
>> I configured openfiler as my iscsi storage and while i am able to connect
>> to it i wanted to change the IP address of the connecting IP to one of
>> the logical networks which i disignated as a STORAGE role.
>>
>> This is a nightmare changing this and i have to set hosts in maintenence
>> mode and delete the datacenter ,
>>
>> is there any other way ?
>> ___
>> 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] ISSUES WITH EDITING A CLUSTER SO IT CAN BE PART OF A NEW DATACENTER

2017-04-17 Thread martin chamambo
I had issues with my master data storage domain and the only way was to set
the hosts in maintenence mode ,delete the datacenter so i can recreate
it

I managed to delete the datacenter and the storage domains , and created a
new datacenter , but now the existing clusters are not part of a datacenter
and trying to add them to the datacenter gives out this error below

Error while executing action: Cannot edit Cluster. Changing management
network in a non-empty cluster is not allowed.

and by non empty i guess it means there is a host inside that cluster ?
fair enough

trying to change a node cluster comes with the Host Cluster Dropdown with
this

Datacenter:Undefined

How can i fix the catch 22 scenario without deleting clusters or hosts..


surely there should be a smarter way ?
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] JUST CANT UNDERSTAND WHY OVIRT DOESNT HAVE A WEB-GUI FOR EDITING , REMOVING UNWANTED STORAGE DOMAINS

2017-04-17 Thread martin chamambo
JUST CANT UNDERSTAND WHY OVIRT DOESNT HAVE A WEB-GUI FOR EDITING ,REMOVING
UNWANTED STORAGE DOMAINS

I configured openfiler as my iscsi storage and while i am able to connect
to it i wanted to change the IP address of the connecting IP to one of
the logical networks which i disignated as a STORAGE role.

This is a nightmare changing this and i have to set hosts in maintenence
mode and delete the datacenter ,

is there any other way ?
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] After adding ISCSI storage on ovirt 4.0 (both engine and node) , storage doesnt come up

2017-04-14 Thread martin chamambo
A quick update , i moved my iscsi storage from centos7.3 targetcli based
one to openfiler and the problem is no longer there.When i was reading the
forums ,seems like i needed to change a global filter in lvm.conf but ddnt
have time to check that so i decided to use openfiler


On Fri, Apr 14, 2017 at 3:34 PM, Sandro Bonazzola <sbona...@redhat.com>
wrote:

> Adding some people
>
> On Mon, Mar 27, 2017 at 5:41 PM, martin chamambo <chamam...@gmail.com>
> wrote:
>
>> For some reason when i add iscsi storage on my ovirtNode it works like a
>> charm , but when i reboot the ovirtengine and node , the storage doesnt
>> come up and on the storage tab , i have noticed that the USE HOST dropdown
>> is empty
>>
>> NB:iscsi and iscsid are running on the node and the LUN is active
>>
>> ___
>> Users mailing list
>> Users@ovirt.org
>> http://lists.ovirt.org/mailman/listinfo/users
>>
>>
>
>
> --
>
> SANDRO BONAZZOLA
>
> ASSOCIATE MANAGER, SOFTWARE ENGINEERING, EMEA ENG VIRTUALIZATION R
>
> Red Hat EMEA <https://www.redhat.com/>
> <https://red.ht/sig>
> TRIED. TESTED. TRUSTED. <https://redhat.com/trusted>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Installation of ovirtNode3.6 on VMware workstation is failing

2017-04-10 Thread martin chamambo
Hello Sandro

RHCVA should be on 3.6 but the concepts around ovirt and rhev are the
same..i also tried ovirt-node-3.6 on workstation and it did not work
(issue around Partitions)I am using ovirt node 4.1 and engine 4.1
because i first need to understand the basics.Once you understand ovirt
,you van get that rhve 3.6 60 day trial

On Mon, Apr 10, 2017 at 3:36 PM, Sandro Bonazzola <sbona...@redhat.com>
wrote:

>
>
> On Sun, Mar 26, 2017 at 9:28 PM, martin chamambo <chamam...@gmail.com>
> wrote:
>
>> ovirt-node-ng-installer-ovirt-3.6-2016052403 this is the version of the
>> installer that i am using , can anyone confirm then which version of Ovirt
>> (Both Node and Engine) are equivalent to which RHEV equivalentsi am
>> studying for RHCVA and thought ovirtNode 3.6 and 4.0 would work
>>
>
> I think RHCVA is still on 3.5 but haven't checked it recently.
>
>
>
>>
>> On Sun, Mar 26, 2017 at 9:06 PM, Sandro Bonazzola <sbona...@redhat.com>
>> wrote:
>>
>>>
>>>
>>> Il 24/Mar/2017 09:32, "martin chamambo" <chamam...@gmail.com> ha
>>> scritto:
>>>
>>> Good day
>>>
>>> I am using ovirtEngine 4.0 and ovirtnode 4.0  on the same engine i
>>> also need to test ovirtNode 3.6 since its  supported.
>>>
>>>
>>> Please note 3.6 and 4.0 have both reached end of life and current
>>> supported version is 4.1.
>>>
>>> Also in 3.6 oVirt Node NG was in tech preview. Are you using a "legacy"
>>> oVirt Node iso?
>>>
>>>
>>>
>>>
>>> Initially i struggled with installing ovirt engine 4.0 until i selected
>>> LVM thin provisioning
>>>
>>> the  same trick is not working with ovirtNode3.6 any type of
>>> partition  ,standard partition ,LVM ,LVM thin provisioning is not working
>>>
>>> is there anyone who experienced the same issue
>>>
>>> ___
>>> Users mailing list
>>> Users@ovirt.org
>>> http://lists.ovirt.org/mailman/listinfo/users
>>>
>>>
>>>
>>
>
>
> --
>
> SANDRO BONAZZOLA
>
> ASSOCIATE MANAGER, SOFTWARE ENGINEERING, EMEA ENG VIRTUALIZATION R
>
> Red Hat EMEA <https://www.redhat.com/>
> <https://red.ht/sig>
> TRIED. TESTED. TRUSTED. <https://redhat.com/trusted>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Initial network setup question ...

2017-04-09 Thread martin chamambo
Hie alan

I am not an expect on ovirt but problem is if you setup via CLI ,and you
then try to set up or edit the interfaces via GUI ,ovirt will overwrite
whatever you put via CLI so the best option will be to do everything via
OVirt GUI

On Fri, Apr 7, 2017 at 2:44 PM, Alan Bunch  wrote:

> Hello all,
>
>
>
> I have a question about the initial setup for ovirt. I have 3 nodes that I
> am about ready to install a hyper converged setup using Gluster for storage
> and hosted-engine. Gluster is setup and the volumes are mounted.
>
>
>
> My question is this:
>
> What does the networking setup need to look like at install time ? Do I
> need to setup all of the bonds, vlans and bridges before I start the
> install or should I just set an ovirtmgmt bond/vlan/bridge and setup the
> rest of the networking inside of ovirt. I expect to need 3 or 4
> networks/vlan to match my existing networks to attach vm's to.
>
>
>
> Any help or pointers would be appreciated.
>
>
>
> Thank You
>
> ___
> 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] for some reason ovirtnode creates unecessary vg and lvs

2017-04-06 Thread martin chamambo
I created a vg and an lv using targetcli on a centos 7.3 host,managed to
connect my ovirtengine on that Lv When I reboot my engine and nodes,
the storage won't come up and when I check my storage server,the lun will
have been deleted and those lvs and vg will be automatically created.I have
initialized my storage more than 3 times and.the same thing keeps happening

On Apr 6, 2017 8:31 PM, "Liron Aravot" <lara...@redhat.com> wrote:

>
>
> On Wed, Apr 5, 2017 at 3:16 PM, Yaniv Kaul <yk...@redhat.com> wrote:
>
>>
>>
>> On Sun, Apr 2, 2017 at 9:15 PM, martin chamambo <chamam...@gmail.com>
>> wrote:
>>
>>> I managed to configure the mail iscsi domain for my ovirt 4.1 engine and
>>> node , it connects to the storage initially and initialises the data center
>>> ,but after rebooting the node and engine , it creates unecessary vg and lvs
>>> like below
>>>
>>> 280246d3-ac7b-44ff-8c03-dc2bcb9edb70 d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a- 128.00m
>>>   2d57ab88-16e4-4007-9047-55fc4a35b534 d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a- 128.00m
>>>   ids  d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a- 128.00m
>>>   inboxd5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a- 128.00m
>>>   leases   d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a-   2.00g
>>>   master   d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a-   1.00g
>>>   metadata d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a- 512.00m
>>>   outbox   d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a- 128.00m
>>>   xleases  d5104206-5863-4f9d-9ea7-2b140c97d65f
>>> -wi-a-   1.00g
>>>
>>> whats the cause of this
>>>
>>
>> I'm not sure what is the problem? These LVs are the metadata LVs for a
>> storage domain.
>> Y.
>>
>>
>
> As Yaniv wrote - those are LVs created by oVirt.
> Is the node  currently in use in oVirt? if so, it should be connected to
> your storage server and have those vg/lvs.
>
>>
>>> NB:mY ISCSI storage is on a centos 7 box
>>>
>>> ___
>>> Users mailing list
>>> Users@ovirt.org
>>> http://lists.ovirt.org/mailman/listinfo/users
>>>
>>>
>>
>> ___
>> Users mailing list
>> Users@ovirt.org
>> http://lists.ovirt.org/mailman/listinfo/users
>>
>>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] for some reason ovirtnode creates unecessary vg and lvs

2017-04-02 Thread martin chamambo
Hie scott ,read the links you sentbut since i am using targetcli on
Centos 7.3 ,isnt that supposed to have incoporated that patch already ,
will read deeper to see how i can get it fixed

On Sun, Apr 2, 2017 at 8:40 PM, Scott Worthington <
scott.c.worthing...@gmail.com> wrote:

> Also, this 'targetctlfix' script seems to have helped others, too:
>   https://github.com/wfurmank/targetctlfix/blob/master/targetctlfix
>
>
> On 4/2/2017 2:15 PM, martin chamambo wrote:
> > I managed to configure the mail iscsi domain for my ovirt 4.1 engine and
> > node , it connects to the storage initially and initialises the data
> > center ,but after rebooting the node and engine , it creates unecessary
> > vg and lvs like below
> >
> > 280246d3-ac7b-44ff-8c03-dc2bcb9edb70
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 128.00m
> >   2d57ab88-16e4-4007-9047-55fc4a35b534
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 128.00m
> >   ids
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 128.00m
> >   inbox
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 128.00m
> >   leases
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 2.00g
> >   master
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 1.00g
> >   metadata
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 512.00m
> >   outbox
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-
> > 128.00m
> >   xleases
> > d5104206-5863-4f9d-9ea7-2b140c97d65f -wi-a-   1.00g
> >
> > whats the cause of this
> >
> > NB:mY ISCSI storage is on a centos 7 box
> >
> >
> > ___
> > 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] for some reason ovirtnode creates unecessary vg and lvs

2017-04-02 Thread martin chamambo
I managed to configure the mail iscsi domain for my ovirt 4.1 engine and
node , it connects to the storage initially and initialises the data center
,but after rebooting the node and engine , it creates unecessary vg and lvs
like below

280246d3-ac7b-44ff-8c03-dc2bcb9edb70 d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a- 128.00m
  2d57ab88-16e4-4007-9047-55fc4a35b534 d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a- 128.00m
  ids  d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a- 128.00m
  inboxd5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a- 128.00m
  leases   d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a-   2.00g
  master   d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a-   1.00g
  metadata d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a- 512.00m
  outbox   d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a- 128.00m
  xleases  d5104206-5863-4f9d-9ea7-2b140c97d65f
-wi-a-   1.00g

whats the cause of this

NB:mY ISCSI storage is on a centos 7 box
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] How to re-initialize storage?

2017-03-28 Thread martin chamambo
I am not an expert but storage is tied to your datacenter so you need to
make sure your datacenter is removed so that you are able to remove storage

On Mon, Mar 27, 2017 at 8:53 PM, Peter Wood  wrote:

> Hi,
>
> I inherited a small oVirt cluster with 3 nodes using iSCSI storage.
>
> The LUNs used by the oVirt nodes were also accessible by some VMware nodes.
>
> By mistake an action was started on VMware to initialize and start using
> the same LUNs, which it happily did. This rendered the storage no longer
> usable by oVirt nodes. All VMs went down, their image files no longer
> accessible, the whole cluster became unusable without access to the shared
> storage.
>
> We have recovered from backups and moved the VMs to another cluster and
> now I want to get this oVirt cluster back up and running.
>
> I'm not an oVirt expert so everything I tried was through the web
> interface and everything failed because storage is not accessible. I can't
> remove VMs, I can't remove nodes, I can't remove the storage domain.
>
> What is the right approach to destroy the cluster and rebuild it and
> re-initialize the storage?
>
> Even better if I can just remove all VMs from the inventory and somehow
> tell it to make the storage LUNs usable again?
>
> Any help is highly appreciated?
>
> Thank you,
>
> -- Peter
>
> ___
> 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] After adding ISCSI storage on ovirt 4.0 (both engine and node) , storage doesnt come up

2017-03-27 Thread martin chamambo
For some reason when i add iscsi storage on my ovirtNode it works like a
charm , but when i reboot the ovirtengine and node , the storage doesnt
come up and on the storage tab , i have noticed that the USE HOST dropdown
is empty

NB:iscsi and iscsid are running on the node and the LUN is active
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Installation of ovirtNode3.6 on VMware workstation is failing

2017-03-26 Thread martin chamambo
ovirt-node-ng-installer-ovirt-3.6-2016052403 this is the version of the
installer that i am using , can anyone confirm then which version of Ovirt
(Both Node and Engine) are equivalent to which RHEV equivalentsi am
studying for RHCVA and thought ovirtNode 3.6 and 4.0 would work

On Sun, Mar 26, 2017 at 9:06 PM, Sandro Bonazzola <sbona...@redhat.com>
wrote:

>
>
> Il 24/Mar/2017 09:32, "martin chamambo" <chamam...@gmail.com> ha scritto:
>
> Good day
>
> I am using ovirtEngine 4.0 and ovirtnode 4.0  on the same engine i
> also need to test ovirtNode 3.6 since its  supported.
>
>
> Please note 3.6 and 4.0 have both reached end of life and current
> supported version is 4.1.
>
> Also in 3.6 oVirt Node NG was in tech preview. Are you using a "legacy"
> oVirt Node iso?
>
>
>
>
> Initially i struggled with installing ovirt engine 4.0 until i selected
> LVM thin provisioning
>
> the  same trick is not working with ovirtNode3.6 any type of
> partition  ,standard partition ,LVM ,LVM thin provisioning is not working
>
> is there anyone who experienced the same issue
>
> ___
> 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] Installation of ovirtNode3.6 on VMware workstation is failing

2017-03-26 Thread martin chamambo
@Yaniv , OvirtNode 4.0 is working flawlessly , and the issue is with DISK
partitioning and VMware exposes the same drivers as with ovirtNode 4.0 
changing to thin LVM ddnt work either..

FYI - i am currently using ovirtNode 4.0 and OvirtEngine 4.0 and its working

On Sun, Mar 26, 2017 at 4:40 PM, Yaniv Kaul <yk...@redhat.com> wrote:

>
>
> On Fri, Mar 24, 2017 at 11:31 AM, martin chamambo <chamam...@gmail.com>
> wrote:
>
>> Good day
>>
>> I am using ovirtEngine 4.0 and ovirtnode 4.0  on the same engine i
>> also need to test ovirtNode 3.6 since its  supported.
>>
>> Initially i struggled with installing ovirt engine 4.0 until i selected
>> LVM thin provisioning
>>
>> the  same trick is not working with ovirtNode3.6 any type of
>> partition  ,standard partition ,LVM ,LVM thin provisioning is not working
>>
>
> Are you trying to install it nested, on top of a virtualization solution
> (VMware) ?
> Perhaps the kind of HW you are exposing to the node is problematic? Try
> non-UEFI, for example.
>
>
>>
>> is there anyone who experienced the same issue
>>
>
> I'm not aware of many people trying node on VMware. It works flawlessly on
> KVM, nested.
> Y.
>
>
>>
>> ___
>> 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] Getting error when i try to assign logical networks to interfaces

2017-03-25 Thread martin chamambo
Good day @Dan

Thank you for the pointers , on my hypervisor there is this directory path
/usr/libexec/vdsm/hooks/before_network_setup   and in that folder there was
a file named 50_fcoe  ,i removed that and its working nowI dont know
how it got there but seems to have worked and thanx for your help

On Fri, Mar 24, 2017 at 4:36 PM, Dan Kenigsberg <dan...@redhat.com> wrote:

> On Fri, Mar 24, 2017 at 11:36 AM, martin chamambo <chamam...@gmail.com>
> wrote:
> > @ Dan i am not using FCOE , i am trying to set up logical networks , my
> > oVirt Engine Version: 4.0.6.3-1.el7.centos and my vdsm versions is
> > vdsm-4.18.4.1-0.el7.centos
>
> And what it the version of your vdsm-hook-fcoe?
>
> rpm -qa |grep vdsm
> rpm -qf /usr/libexec/vdsm/hooks/before_network_setup/50_fcoe
>
> I assumed that the 50_fcoe script is out of date. It looks like a 3.6
> piece of code.
>
> You can just remove 50_fcoe to squelch the problem for a while, but
> I'd like to understand why it is there.
>
> >
> > On Thu, Mar 23, 2017 at 11:26 PM, Dan Kenigsberg <dan...@redhat.com>
> wrote:
> >>
> >> On Thu, Mar 23, 2017 at 9:25 AM, martin chamambo <chamam...@gmail.com>
> >> wrote:
> >> > I havent set up any hooks and when i try to assign logical networks to
> >> > an
> >> > already existing interface on the host ,it gives me this error
> >> >
> >> > Hook error: Hook Error: ('Traceback (most recent call last):\n  File
> >> > "/usr/libexec/vdsm/hooks/before_network_setup/50_fcoe", line 18, in
> >> > \nfrom vdsm.netconfpersistence import
> >> > RunningConfig\nImportError: No module named netconfpersistence\n',)
> >> >
> >>
> >> vdsm-hook-fcoe is installed by default on ovirt-node.
> >> Which version of vdsm (and vdsm-hook-fcoe) are you using?
> >> This Traceback smells like a mismatch between the two.
> >
> >
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Getting error when i try to assign logical networks to interfaces

2017-03-24 Thread martin chamambo
@ Dan i am not using FCOE , i am trying to set up logical networks , my
oVirt Engine Version: 4.0.6.3-1.el7.centos and my vdsm versions is
vdsm-4.18.4.1-0.el7.centos

On Thu, Mar 23, 2017 at 11:26 PM, Dan Kenigsberg <dan...@redhat.com> wrote:

> On Thu, Mar 23, 2017 at 9:25 AM, martin chamambo <chamam...@gmail.com>
> wrote:
> > I havent set up any hooks and when i try to assign logical networks to an
> > already existing interface on the host ,it gives me this error
> >
> > Hook error: Hook Error: ('Traceback (most recent call last):\n  File
> > "/usr/libexec/vdsm/hooks/before_network_setup/50_fcoe", line 18, in
> > \nfrom vdsm.netconfpersistence import
> > RunningConfig\nImportError: No module named netconfpersistence\n',)
> >
>
> vdsm-hook-fcoe is installed by default on ovirt-node.
> Which version of vdsm (and vdsm-hook-fcoe) are you using?
> This Traceback smells like a mismatch between the two.
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Installation of ovirtNode3.6 on VMware workstation is failing

2017-03-24 Thread martin chamambo
Good day

I am using ovirtEngine 4.0 and ovirtnode 4.0  on the same engine i also
need to test ovirtNode 3.6 since its  supported.

Initially i struggled with installing ovirt engine 4.0 until i selected LVM
thin provisioning

the  same trick is not working with ovirtNode3.6 any type of partition
,standard partition ,LVM ,LVM thin provisioning is not working

is there anyone who experienced the same issue
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


Re: [ovirt-users] Getting error when i try to assign logical networks to interfaces

2017-03-23 Thread martin chamambo
Planning on using ISCSI  , and it seems like defining logical networks is a
pre-requisite  for your host to come online and that error is happening
when i try to assign the ovirtmngmnt logical network to an interface

On Thu, Mar 23, 2017 at 6:58 PM, Dominik Holler <dhol...@redhat.com> wrote:

> Are you using Fibre Channel over Ethernet?
>
> On Thu, 23 Mar 2017 09:25:04 +0200
> martin chamambo <chamam...@gmail.com> wrote:
>
> > I havent set up any hooks and when i try to assign logical networks
> > to an already existing interface on the host ,it gives me this error
> >
> > Hook error: Hook Error: ('Traceback (most recent call last):\n  File
> > "/usr/libexec/vdsm/hooks/before_network_setup/50_fcoe", line 18, in
> > \nfrom vdsm.netconfpersistence import
> > RunningConfig\nImportError: No module named netconfpersistence\n',)
>
>
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users


[ovirt-users] Getting error when i try to assign logical networks to interfaces

2017-03-23 Thread martin chamambo
I havent set up any hooks and when i try to assign logical networks to an
already existing interface on the host ,it gives me this error

Hook error: Hook Error: ('Traceback (most recent call last):\n  File
"/usr/libexec/vdsm/hooks/before_network_setup/50_fcoe", line 18, in
\nfrom vdsm.netconfpersistence import
RunningConfig\nImportError: No module named netconfpersistence\n',)
___
Users mailing list
Users@ovirt.org
http://lists.ovirt.org/mailman/listinfo/users