Older hardware deployment
by Chas Ecomm
This is a multipart message in MIME format.
------=_NextPart_000_00D6_01D0F555.6C3D0CF0
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
I've searched on this issue all over the place and not found a full answer.
I've got a lab with older Dell PE860 servers with Pentium D processors. We
are attempting to prove out that we can move from VMware to KVM and oVirt,
but with 3.5 we can't get these servers to enter into a cluster due to the
age of the processors.
I've seen it referenced in a few list entries to modify 'the database' to
put CPUInfo entries in for the processor capabilities of this processor, but
it is unclear to me and I've been unable to find any documentation that
speaks to what database and how to modify it safely.
I know we could update these servers and get better power consumption, heat
generation, etc., but it's not in the cards and I can't move my newer
servers until we prove it out with these older ones, which ran ESXi 5.5 with
absolutely no issue. This cluster will be a functional test and small tools
cluster ultimately, so I don't really care about their lower end specs,
either.
Would installing something older than 3.5 help me here? Or is there some
doc somewhere I've just not found that describes this process of updating
the DB with these CPU parameters.
TIA!!
------=_NextPart_000_00D6_01D0F555.6C3D0CF0
Content-Type: text/html;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
<html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" =
xmlns=3D"http://www.w3.org/TR/REC-html40"><head><META =
HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii"><meta name=3DGenerator content=3D"Microsoft Word 15 =
(filtered medium)"><style><!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:#0563C1;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-priority:99;
color:#954F72;
text-decoration:underline;}
span.EmailStyle17
{mso-style-type:personal-compose;
font-family:"Calibri",sans-serif;
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-family:"Calibri",sans-serif;}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext=3D"edit">
<o:idmap v:ext=3D"edit" data=3D"1" />
</o:shapelayout></xml><![endif]--></head><body lang=3DEN-US =
link=3D"#0563C1" vlink=3D"#954F72"><div class=3DWordSection1><p =
class=3DMsoNormal>I’ve searched on this issue all over the place =
and not found a full answer.<o:p></o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p class=3DMsoNormal>I’ve =
got a lab with older Dell PE860 servers with Pentium D processors. =
We are attempting to prove out that we can move from VMware to KVM and =
oVirt, but with 3.5 we can’t get these servers to enter into a =
cluster due to the age of the processors.<o:p></o:p></p><p =
class=3DMsoNormal><o:p> </o:p></p><p class=3DMsoNormal>I’ve =
seen it referenced in a few list entries to modify ‘the =
database’ to put CPUInfo entries in for the processor capabilities =
of this processor, but it is unclear to me and I’ve been unable to =
find any documentation that speaks to what database and how to modify it =
safely.<o:p></o:p></p><p class=3DMsoNormal><o:p> </o:p></p><p =
class=3DMsoNormal>I know we could update these servers and get better =
power consumption, heat generation, etc., but it’s not in the =
cards and I can’t move my newer servers until we prove it out with =
these older ones, which ran ESXi 5.5 with absolutely no issue. =
This cluster will be a functional test and small tools cluster =
ultimately, so I don’t really care about their lower end specs, =
either.<o:p></o:p></p><p class=3DMsoNormal><o:p> </o:p></p><p =
class=3DMsoNormal>Would installing something older than 3.5 help me =
here? Or is there some doc somewhere I’ve just not found =
that describes this process of updating the DB with these CPU =
parameters.<o:p></o:p></p><p class=3DMsoNormal><o:p> </o:p></p><p =
class=3DMsoNormal>TIA!!<o:p></o:p></p></div></body></html>
------=_NextPart_000_00D6_01D0F555.6C3D0CF0--
9 years, 2 months
Systemd-Script to put the node in "maintenance" on shutdown
by Luca Bertoncello
Hi again,
I'm trying to write a systemd-script (for CentOS7) in order to automatically put the host in "maintenance" on shutdown and to activate it after boot.
I wrote a python-script that to that and it works so that I can start it and see the host in "maintenance" and having all VMs migrated.
Unfortunately I can't call this script on shutdown/reboot and wait until all VMs are migrated and the host is in maintenance.
Here my script:
[Unit]
Description=oVirt interface for managing host
After=remote-fs.target vdsmd.service multipathd.service libvirtd.service time-sync.target iscsid.service rpcbind.service supervdsmd.service sanlock.service vdsm-network.service
Wants=remote-fs.target vdsmd.service multipathd.service libvirtd.service time-sync.target iscsid.service rpcbind.service supervdsmd.service sanlock.service vdsm-network.service
[Service]
Type=simple
RemainAfterExit=yes
ExecStart=/usr/local/bin/ovirt-maintenance.sh active
ExecStop=/usr/local/bin/ovirt-maintenance.sh maintenance
KillMode=none
[Install]
WantedBy=multi-user.target
Could someone help me and say what I'm doing wrong?
Thanks a lot
Mit freundlichen Grüßen
Luca Bertoncello
--
Besuchen Sie unsere Webauftritte:
www.queo.biz Agentur für Markenführung und Kommunikation
www.queoflow.com IT-Consulting und Individualsoftwareentwicklung
Luca Bertoncello
Administrator
Telefon: +49 351 21 30 38 0
Fax: +49 351 21 30 38 99
E-Mail: l.bertoncello(a)queo-group.com
queo GmbH
Tharandter Str. 13
01159 Dresden
Sitz der Gesellschaft: Dresden
Handelsregistereintrag: Amtsgericht Dresden HRB 22352
Geschäftsführer: Rüdiger Henke, André Pinkert
USt-IdNr.: DE234220077
9 years, 2 months
Virtual appliance import question/problem
by Maurice James
------=_Part_674_1103437547.1442854627811
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
I have a virtual mail security appliance that I am trying to import into oVirt 3.5.4. The appliance was built for kvm. it has a total of 5 scsi disks. I can convert and copy the OS disk only because it expands its self to full size.
The first problem that I have is that the disks expand to their full size when I convert the to an oVirt format
OS Disk
mail.qcow2 (74M) converts to main.img (294M)
Storage disks
250.qcow2 (256K) converts to 250.img (250GB)
1024.qcow2 (256K) converts to 1024.img (1TB)
2048.qcow2 (256K) converts to 2048.img (2TB)
4096.qvow2 (256K) converts to 4096.img (4TB)
8192.qcow2 (256K) converts to 8192.img (8TB)
The second problem is that these disks are scsi and ti does not seem to work using the virtio-scsi selection. I tried selecting the IDE option, but there is a limit to the number of IDE disks that I can use.
Virtualbox has no issues running the appliance that was distributed in the ova format. Any help would be appreciated
------=_Part_674_1103437547.1442854627811
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
<html><body><div style=3D"font-family: times new roman, new york, times, se=
rif; font-size: 12pt; color: #000000"><div>I have a virtual mail security a=
ppliance that I am trying to import into oVirt 3.5.4. The appliance was bui=
lt for kvm. it has a total of 5 scsi disks. I can convert and copy the OS d=
isk only because it expands its self to full size. <br></div><div><br></div=
><div>The first problem that I have is that the disks expand to their full =
size when I convert the to an oVirt format<br></div><div><br></div><div>OS =
Disk<br></div><div>mail.qcow2 (74M) converts to main.img (294M)<br></div><d=
iv><br></div><div><br></div><div>Storage disks<br></div><div>250.qcow2 (256=
K) converts to 250.img (250GB)<br></div><div>1024.qcow2 (256K) conver=
ts to 1024.img (1TB)<br></div><div>2048.qcow2 (256K) converts to 2048.img (=
2TB)<br></div><div>4096.qvow2 (256K) converts to 4096.img (4TB)<br></div><d=
iv>8192.qcow2 (256K) converts to 8192.img (8TB)<br></div><div><span name=3D=
"x"></span><br style=3D"font-family: 'trebuchet ms', sans-serif;" data-mce-=
style=3D"font-family: 'trebuchet ms', sans-serif;"></div><div><span name=3D=
"x"><br></span></div><div><span name=3D"x"><br></span></div><div><span name=
=3D"x">The second problem is that these disks are scsi and ti does not seem=
to work using the virtio-scsi selection. I tried selecting the IDE option,=
but there is a limit to the number of IDE disks that I can use.<br></span>=
</div><div><span name=3D"x"><br></span></div><div><span name=3D"x">Virtualb=
ox has no issues running the appliance that was distributed in the ova form=
at. Any help would be appreciated<br></span></div><div><span name=3D"x"><br=
></span></div></div></body></html>
------=_Part_674_1103437547.1442854627811--
9 years, 2 months
Re: [ovirt-users] vmware import hangs after click load button on 3.5 rc5
by Nir Soffer
On Wed, Sep 23, 2015 at 12:40 PM, Ian Fraser <Ian.Fraser(a)asm.org.uk> wrote:
> Hi Nir,
>
> I have changed the v2v.py file as per your request, it has now changed the
> behaviour. The popup window still hangs and I get the following two events:
>
> Failed to retrieve VMs information from external server
> vpx://username%40domain@vcenter.server
> /datacentre_name/hostname?no_verify=1
>
> VDSM ovirt-host-02 command failed: internal error: Invalid or not yet
> handled value 'emptyBackingString' for VMX entry 'ide1:0.fileName' for
> device type 'cdrom-image'
>
Fixing the first error, we see now the real error; libvirt cannot handle
this vm configuration. We will ask one of the libvirt guys to look into
this.
You may try to disable the cdrom device on that vm, which is probably
useless now.
>
> I have attached the vdsm.log to this email, should I also attach to the BZ
> I opened?
Yes, please attach it.
(Adding back users(a)ovirt.org, since this thread may help others with same
issue.)
>
> Many thanks
>
> Ian
>
> From: Nir Soffer [mailto:nsoffer@redhat.com]
> Sent: 23 September 2015 00:04
> To: Ian Fraser <Ian.Fraser(a)asm.org.uk>; Shahar Havivi <shavivi(a)redhat.com>
> Cc: users(a)ovirt.org
> Subject: Re: [ovirt-users] vmware import hangs after click load button on
> 3.5 rc5
>
> Hi Ian,
>
> Your import failed because looking up some disk failed. Unfortunately, we
> don't have enough information in the log abut this failure.
>
> Because of incorrect error handling, this error failed the entire request,
> failing your import.
>
> Patch [1] fixes the second problem. If is possible that with this patch
> listing the external vms will work and you will be able to import the vm,
> but it is also possible that the first error was significant and will fail
> the import later.
>
> It would be useful if you test this patch and report if it works for you.
>
> Would you open an ovirt bug for this issue, attaching the vdsm log?
>
> [1] https://gerrit.ovirt.org/46540
>
> Nir
>
> On Tue, Sep 22, 2015 at 9:09 AM, Ian Fraser <Ian.Fraser(a)asm.org.uk> wrote:
> Thanks Nir,
>
> File attached.
>
> From: Nir Soffer [mailto:nsoffer@redhat.com]
> Sent: 21 September 2015 23:16
> To: Ian Fraser <Ian.Fraser(a)asm.org.uk>
> Cc: users(a)ovirt.org
> Subject: Re: [ovirt-users] vmware import hangs after click load button on
> 3.5 rc5
>
> On Tue, Sep 22, 2015 at 12:14 AM, Ian Fraser <Ian.Fraser(a)asm.org.uk>
> wrote:
> I did get a “VDSM <hostname> command failed: local variable 'capacity'
> referenced before assignment” error in the events I have just noticed, does
> that shed any more light?
>
> This shed some light. Can you share the vdsm.log containing this error?
>
> Look in /var/log/vdsm/vdsm.log*
>
> ______________________________________________________________________
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> ______________________________________________________________________
>
> ________________________________________
>
> The information in this message and any attachment is intended for the
> addressee and is confidential. If you are not that addressee, no action
> should be taken in reliance on the information and you should please reply
> to this message immediately to inform us of incorrect receipt and destroy
> this message and any attachments.
>
> For the purposes of internet level email security incoming and outgoing
> emails may be read by personnel other than the named recipient or sender.
>
> Whilst all reasonable efforts are made, ASM (UK) Ltd cannot guarantee that
> emails and attachments are virus free or compatible with your systems. You
> should make your own checks and ASM (UK) Ltd does not accept liability in
> respect of viruses or computer problems experienced.
> Registered address: Agency Sector Management (UK) Ltd. Ashford House,
> 41-45 Church Road, Ashford, Middlesex, TW15 2TQ
> Registered in England No.2053849
>
> ______________________________________________________________________
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> ______________________________________________________________________
>
>
> ______________________________________________________________________
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> ______________________________________________________________________
>
> ________________________________
>
> The information in this message and any attachment is intended for the
> addressee and is confidential. If you are not that addressee, no action
> should be taken in reliance on the information and you should please reply
> to this message immediately to inform us of incorrect receipt and destroy
> this message and any attachments.
>
> For the purposes of internet level email security incoming and outgoing
> emails may be read by personnel other than the named recipient or sender.
>
> Whilst all reasonable efforts are made, ASM (UK) Ltd cannot guarantee that
> emails and attachments are virus free or compatible with your systems. You
> should make your own checks and ASM (UK) Ltd does not accept liability in
> respect of viruses or computer problems experienced.
> Registered address: Agency Sector Management (UK) Ltd. Ashford House,
> 41-45 Church Road, Ashford, Middlesex, TW15 2TQ
> Registered in England No.2053849
>
> ______________________________________________________________________
> This email has been scanned by the Symantec Email Security.cloud service.
> For more information please visit http://www.symanteccloud.com
> ______________________________________________________________________
>
9 years, 2 months
Cannot mount gluster storage data
by Jean-Michel FRANCOIS
This is a multi-part message in MIME format.
--------------020202090206090904010807
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Hi Ovirt users,
I'm running ovirt hosted 3.4 with gluster data storage.
When I add a new host (Centos 6.6) the data storage (as a glsuterfs)
cannot be mount.
I have the following errors in gluster client log file :
[2015-09-24 12:27:22.636221] I [MSGID: 101190]
[event-epoll.c:632:event_dispatch_epoll_worker] 0-epoll: Started thread
with index 1
[2015-09-24 12:27:22.636588] W [socket.c:588:__socket_rwv] 0-glusterfs:
readv on 172.16.0.5:24007 failed (No data available)
[2015-09-24 12:27:22.637307] E [rpc-clnt.c:362:saved_frames_unwind] (-->
/usr/lib64/libglusterfs.so.0(_gf_log_callingfn+0x1eb)[0x7f427fb3063b]
(--> /usr/lib64/libgfrpc.so.0(saved_frames_unwind+0x1e7)[0x7f427f8fc1d7]
(--> /usr/lib64/libgfrpc.so.0(saved_frames_destroy+0xe)[0x7f427f8fc2ee]
(-->
/usr/lib64/libgfrpc.so.0(rpc_clnt_connection_cleanup+0xab)[0x7f427f8fc3bb]
(--> /usr/lib64/libgfrpc.so.0(rpc_clnt_notify+0x1c2)[0x7f427f8fc9f2]
))))) 0-glusterfs: forced unwinding frame type(GlusterFS Handshake)
op(GETSPEC(2)) called at 2015-09-24 12:27:22.636344 (xid=0x1)
[2015-09-24 12:27:22.637333] E [glusterfsd-mgmt.c:1604:mgmt_getspec_cbk]
0-mgmt: failed to fetch volume file (key:/data)
[2015-09-24 12:27:22.637360] W [glusterfsd.c:1219:cleanup_and_exit]
(-->/usr/lib64/libgfrpc.so.0(saved_frames_unwind+0x20e) [0x7f427f8fc1fe]
-->/usr/sbin/glusterfs(mgmt_getspec_cbk+0x3f2) [0x40d5d2]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-: received
signum (0), shutting down
[2015-09-24 12:27:22.637375] I [fuse-bridge.c:5595:fini] 0-fuse:
Unmounting '/rhev/data-center/mnt/glusterSD/172.16.0.5:_data'.
[2015-09-24 12:27:22.646246] W [glusterfsd.c:1219:cleanup_and_exit]
(-->/lib64/libpthread.so.0(+0x7a51) [0x7f427ec18a51]
-->/usr/sbin/glusterfs(glusterfs_sigwaiter+0xcd) [0x405e4d]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-: received
signum (15), shutting down
[2015-09-24 12:27:22.646246] W [glusterfsd.c:1219:cleanup_and_exit]
(-->/lib64/libpthread.so.0(+0x7a51) [0x7f427ec18a51]
-->/usr/sbin/glusterfs(glusterfs_sigwaiter+0xcd) [0x405e4d]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-: received
signum (15), shutting down
And nothing server side.
I suppose it is a version issue since on server side I have
glusterfs-api-3.6.3-1.el6.x86_64
glusterfs-fuse-3.6.3-1.el6.x86_64
glusterfs-libs-3.6.3-1.el6.x86_64
glusterfs-3.6.3-1.el6.x86_64
glusterfs-cli-3.6.3-1.el6.x86_64
glusterfs-rdma-3.6.3-1.el6.x86_64
glusterfs-server-3.6.3-1.el6.x86_64
and on the new host :
glusterfs-3.7.4-2.el6.x86_64
glusterfs-api-3.7.4-2.el6.x86_64
glusterfs-libs-3.7.4-2.el6.x86_64
glusterfs-fuse-3.7.4-2.el6.x86_64
glusterfs-cli-3.7.4-2.el6.x86_64
glusterfs-server-3.7.4-2.el6.x86_64
glusterfs-client-xlators-3.7.4-2.el6.x86_64
glusterfs-rdma-3.7.4-2.el6.x86_64
But since it is a production system, i'm not sure about a performing
gluster server upgrade.
Mounting a gluster volume as NFS is possible (the engine data storage
has been mounted).
I'm asking here because glusterfs comes from the ovirt3.4 rpm repository.
If anyone have a hint to this problem
thanks
Jean-Michel
--------------020202090206090904010807
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 7bit
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="moz-text-flowed" style="font-family: -moz-fixed;
font-size: 12px;" lang="x-unicode">Hi Ovirt users,
<br>
<br>
I'm running ovirt hosted 3.4 with gluster data storage.
<br>
When I add a new host (Centos 6.6) the data storage (as a
glsuterfs) cannot be mount.
<br>
I have the following errors in gluster client log file :
<br>
[2015-09-24 12:27:22.636221] I [MSGID: 101190]
[event-epoll.c:632:event_dispatch_epoll_worker] 0-epoll: Started
thread with index 1
<br>
[2015-09-24 12:27:22.636588] W [socket.c:588:__socket_rwv]
0-glusterfs: readv on 172.16.0.5:24007 failed (No data available)
<br>
[2015-09-24 12:27:22.637307] E
[rpc-clnt.c:362:saved_frames_unwind] (-->
/usr/lib64/libglusterfs.so.0(_gf_log_callingfn+0x1eb)[0x7f427fb3063b]
(-->
/usr/lib64/libgfrpc.so.0(saved_frames_unwind+0x1e7)[0x7f427f8fc1d7]
(-->
/usr/lib64/libgfrpc.so.0(saved_frames_destroy+0xe)[0x7f427f8fc2ee]
(-->
/usr/lib64/libgfrpc.so.0(rpc_clnt_connection_cleanup+0xab)[0x7f427f8fc3bb]
(-->
/usr/lib64/libgfrpc.so.0(rpc_clnt_notify+0x1c2)[0x7f427f8fc9f2]
))))) 0-glusterfs: forced unwinding frame type(GlusterFS
Handshake) op(GETSPEC(2)) called at 2015-09-24 12:27:22.636344
(xid=0x1)
<br>
[2015-09-24 12:27:22.637333] E
[glusterfsd-mgmt.c:1604:mgmt_getspec_cbk] 0-mgmt: failed to fetch
volume file (key:/data)
<br>
[2015-09-24 12:27:22.637360] W
[glusterfsd.c:1219:cleanup_and_exit]
(-->/usr/lib64/libgfrpc.so.0(saved_frames_unwind+0x20e)
[0x7f427f8fc1fe] -->/usr/sbin/glusterfs(mgmt_getspec_cbk+0x3f2)
[0x40d5d2] -->/usr/sbin/glusterfs(cleanup_and_exit+0x65)
[0x4059b5] ) 0-: received signum (0), shutting down
<br>
[2015-09-24 12:27:22.637375] I [fuse-bridge.c:5595:fini] 0-fuse:
Unmounting '/rhev/data-center/mnt/glusterSD/172.16.0.5:_data'.
<br>
[2015-09-24 12:27:22.646246] W
[glusterfsd.c:1219:cleanup_and_exit]
(-->/lib64/libpthread.so.0(+0x7a51) [0x7f427ec18a51]
-->/usr/sbin/glusterfs(glusterfs_sigwaiter+0xcd) [0x405e4d]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-:
received signum (15), shutting down
<br>
[2015-09-24 12:27:22.646246] W
[glusterfsd.c:1219:cleanup_and_exit]
(-->/lib64/libpthread.so.0(+0x7a51) [0x7f427ec18a51]
-->/usr/sbin/glusterfs(glusterfs_sigwaiter+0xcd) [0x405e4d]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-:
received signum (15), shutting down
<br>
And nothing server side.
<br>
<br>
I suppose it is a version issue since on server side I have
<br>
glusterfs-api-3.6.3-1.el6.x86_64
<br>
glusterfs-fuse-3.6.3-1.el6.x86_64
<br>
glusterfs-libs-3.6.3-1.el6.x86_64
<br>
glusterfs-3.6.3-1.el6.x86_64
<br>
glusterfs-cli-3.6.3-1.el6.x86_64
<br>
glusterfs-rdma-3.6.3-1.el6.x86_64
<br>
glusterfs-server-3.6.3-1.el6.x86_64
<br>
<br>
and on the new host :
<br>
glusterfs-3.7.4-2.el6.x86_64
<br>
glusterfs-api-3.7.4-2.el6.x86_64
<br>
glusterfs-libs-3.7.4-2.el6.x86_64
<br>
glusterfs-fuse-3.7.4-2.el6.x86_64
<br>
glusterfs-cli-3.7.4-2.el6.x86_64
<br>
glusterfs-server-3.7.4-2.el6.x86_64
<br>
glusterfs-client-xlators-3.7.4-2.el6.x86_64
<br>
glusterfs-rdma-3.7.4-2.el6.x86_64
<br>
<br>
But since it is a production system, i'm not sure about a
performing gluster server upgrade.
<br>
Mounting a gluster volume as NFS is possible (the engine data
storage has been mounted).
<br>
<br>
I'm asking here because glusterfs comes from the ovirt3.4 rpm
repository.
<br>
<br>
If anyone have a hint to this problem
<br>
<br>
thanks
<br>
Jean-Michel
<br>
<br>
</div>
</body>
</html>
--------------020202090206090904010807--
9 years, 2 months
Cannot mount gluster storage data
by Jean-Michel FRANCOIS
Hi Ovirt users,
I'm running ovirt hosted 3.4 with gluster data storage.
When I add a new host (Centos 6.6) the data storage (as a glsuterfs)
cannot be mount.
I have the following errors in gluster client log file :
[2015-09-24 12:27:22.636221] I [MSGID: 101190]
[event-epoll.c:632:event_dispatch_epoll_worker] 0-epoll: Started thread
with index 1
[2015-09-24 12:27:22.636588] W [socket.c:588:__socket_rwv] 0-glusterfs:
readv on 172.16.0.5:24007 failed (No data available)
[2015-09-24 12:27:22.637307] E [rpc-clnt.c:362:saved_frames_unwind] (-->
/usr/lib64/libglusterfs.so.0(_gf_log_callingfn+0x1eb)[0x7f427fb3063b]
(--> /usr/lib64/libgfrpc.so.0(saved_frames_unwind+0x1e7)[0x7f427f8fc1d7]
(--> /usr/lib64/libgfrpc.so.0(saved_frames_destroy+0xe)[0x7f427f8fc2ee]
(-->
/usr/lib64/libgfrpc.so.0(rpc_clnt_connection_cleanup+0xab)[0x7f427f8fc3bb]
(--> /usr/lib64/libgfrpc.so.0(rpc_clnt_notify+0x1c2)[0x7f427f8fc9f2]
))))) 0-glusterfs: forced unwinding frame type(GlusterFS Handshake)
op(GETSPEC(2)) called at 2015-09-24 12:27:22.636344 (xid=0x1)
[2015-09-24 12:27:22.637333] E [glusterfsd-mgmt.c:1604:mgmt_getspec_cbk]
0-mgmt: failed to fetch volume file (key:/data)
[2015-09-24 12:27:22.637360] W [glusterfsd.c:1219:cleanup_and_exit]
(-->/usr/lib64/libgfrpc.so.0(saved_frames_unwind+0x20e) [0x7f427f8fc1fe]
-->/usr/sbin/glusterfs(mgmt_getspec_cbk+0x3f2) [0x40d5d2]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-: received
signum (0), shutting down
[2015-09-24 12:27:22.637375] I [fuse-bridge.c:5595:fini] 0-fuse:
Unmounting '/rhev/data-center/mnt/glusterSD/172.16.0.5:_data'.
[2015-09-24 12:27:22.646246] W [glusterfsd.c:1219:cleanup_and_exit]
(-->/lib64/libpthread.so.0(+0x7a51) [0x7f427ec18a51]
-->/usr/sbin/glusterfs(glusterfs_sigwaiter+0xcd) [0x405e4d]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-: received
signum (15), shutting down
[2015-09-24 12:27:22.646246] W [glusterfsd.c:1219:cleanup_and_exit]
(-->/lib64/libpthread.so.0(+0x7a51) [0x7f427ec18a51]
-->/usr/sbin/glusterfs(glusterfs_sigwaiter+0xcd) [0x405e4d]
-->/usr/sbin/glusterfs(cleanup_and_exit+0x65) [0x4059b5] ) 0-: received
signum (15), shutting down
And nothing server side.
I suppose it is a version issue since on server side I have
glusterfs-api-3.6.3-1.el6.x86_64
glusterfs-fuse-3.6.3-1.el6.x86_64
glusterfs-libs-3.6.3-1.el6.x86_64
glusterfs-3.6.3-1.el6.x86_64
glusterfs-cli-3.6.3-1.el6.x86_64
glusterfs-rdma-3.6.3-1.el6.x86_64
glusterfs-server-3.6.3-1.el6.x86_64
and on the new host :
glusterfs-3.7.4-2.el6.x86_64
glusterfs-api-3.7.4-2.el6.x86_64
glusterfs-libs-3.7.4-2.el6.x86_64
glusterfs-fuse-3.7.4-2.el6.x86_64
glusterfs-cli-3.7.4-2.el6.x86_64
glusterfs-server-3.7.4-2.el6.x86_64
glusterfs-client-xlators-3.7.4-2.el6.x86_64
glusterfs-rdma-3.7.4-2.el6.x86_64
But since it is a production system, i'm not sure about a performing
gluster server upgrade.
Mounting a gluster volume as NFS is possible (the engine data storage
has been mounted).
I'm asking here because glusterfs comes from the ovirt3.4 rpm repository.
If anyone have a hint to this problem
thanks
Jean-Michel
9 years, 2 months
Strange disk behaviour within VMs
by Morten A. Middelthon
Hi,
last Sunday I experienced a power outage with one of my two oVirt
hypervisors. After power was restored I experienced some weirdness:
- on one of the VMs running on this hypervisor the boot disk changed, so
it was no longer able to boot. Looking at the console the VM would hang
on "Booting from hard disk". After I noticed that the wrong virtual disk
was marked as OS/bootable I got it booting again after correcting it to
the proper boot disk. This was done from the oVirt management server.
- on another VM I tried today to add another virtual disk to expand a
LVM volume. In dmesg I can see the new device:
[17167560.005768] vdc: unknown partition table
However, when I tried to run pvcreate I got an error message saying that
this was already marked as an LVM disk, and then running pvs give me the
following error:
# pvs
Couldn't find device with uuid 7dDcyq-TZ6I-96Im-lfjL-cTUv-nff1-B11Mm7.
PV VG Fmt Attr PSize PFree
/dev/vda5 rit-kvm-ssweb02 lvm2 a-- 59.76g 0
/dev/vdb1 vg_syncshare lvm2 a-- 500.00g 0
/dev/vdc1 VG_SYNCSHARE01 lvm2 a-- 400.00g 0
unknown device VG_SYNCSHARE01 lvm2 a-m 1024.00g 0
As you can see there's already a PV called /dev/vdc1, as well another
one named "unknown device". These two PVs belong to a VG that does NOT
belong to this VM, VG_SYNCSHARE01. The uuids for these two PVs are:
--- Physical volume ---
PV Name unknown device
VG Name VG_SYNCSHARE01
PV Size 1024.00 GiB / not usable 3.00 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 262143
Free PE 0
Allocated PE 262143
PV UUID 7dDcyq-TZ6I-96Im-lfjL-cTUv-nff1-B11Mm7
--- Physical volume ---
PV Name /dev/vdc1
VG Name VG_SYNCSHARE01
PV Size 400.00 GiB / not usable 3.00 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 102399
Free PE 0
Allocated PE 102399
PV UUID oKSDoo-3pxU-0uue-zQ0H-kv1N-lyPa-P2M2FY
The two PVs which doesn't belong on this VM actually belongs to a
totally different VM.
On VM number two:
# pvdisplay
--- Physical volume ---
PV Name /dev/vdb1
VG Name VG_SYNCSHARE01
PV Size 1024.00 GiB / not usable 3.00 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 262143
Free PE 0
Allocated PE 262143
PV UUID 7dDcyq-TZ6I-96Im-lfjL-cTUv-nff1-B11Mm7
--- Physical volume ---
PV Name /dev/vdd1
VG Name VG_SYNCSHARE01
PV Size 400.00 GiB / not usable 3.00 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 102399
Free PE 0
Allocated PE 102399
PV UUID oKSDoo-3pxU-0uue-zQ0H-kv1N-lyPa-P2M2FY
As you can see, same uuid and VG name, but two different VMs.
My setup:
oVirt manager: oVirt 3.5 running on CentOS 6.7
oVirt hypervisors: two oVirt 3.5 servers running on CentOS 6.7
During the time of the power outage mentioned earlier I was running
oVirt 3.4, but I upgraded today and rebooted the manager and both
hypervisors, but NOT the VMs.
Virtual machines:
Debian wheezy 7.9 x86_64
Storage:
HP LeftHand iSCSI
I have tried to locate error messages in the logs which can be related
to this behaviour, but so far no luck :(
--
Morten A. Middelthon
Email: morten(a)flipp.net
9 years, 2 months
backup and restore the vm
by Budur Nagaraju
Hi
can you pls provide me the tools to backup and restore the vm images in
Ovirt?
Thanks,
Nagaraju
9 years, 2 months
Not able to resume a VM which was paused because of gluster quorum issue
by Ramesh Nachimuthu
This is a multi-part message in MIME format.
--------------050502080707090302020409
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Hi,
I am not able to resume a VM which was paused because of gluster
client quorum issue. Here is what happened in my setup.
1. Created a gluster storage domain which is backed by gluster volume
with replica 3.
2. Killed one brick process. So only two bricks are running in replica 3
setup.
3. Created two VMs
4. Started some IO using fio on both of the VMs
5. After some time got the following error in gluster mount and VMs
moved to paused state.
" server 10.70.45.17:49217 has not responded in the last 42
seconds, disconnecting."
"vmstore-replicate-0: e16d1e40-2b6e-4f19-977d-e099f465dfc6:
Failing WRITE as quorum is not met"
more gluster mount logs at http://pastebin.com/UmiUQq0F
6. After some time gluster quorum is active and I am able to write the
the gluster file system.
7. When I try to resume the VM it doesn't work and I got following error
in vdsm log.
http://pastebin.com/aXiamY15
Regards,
Ramesh
--------------050502080707090302020409
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 8bit
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
Hi,<br>
<br>
I am not able to resume a VM which was paused because of gluster
client quorum issue. Here is what happened in my setup. <br>
<br>
1. Created a gluster storage domain which is backed by gluster
volume with replica 3. <br>
2. Killed one brick process. So only two bricks are running in
replica 3 setup.<br>
3. Created two VMs<br>
4. Started some IO using fio on both of the VMs<br>
5. After some time got the following error in gluster mount and VMs
moved to paused state.<br>
"
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<span style="color: rgb(51, 51, 51); font-family: monospace;
font-size: 11px; font-style: normal; font-variant: normal;
font-weight: normal; letter-spacing: normal; line-height: 13.2px;
orphans: auto; text-align: left; text-indent: 0px; text-transform:
none; white-space: normal; widows: 1; word-spacing: 0px;
-webkit-text-stroke-width: 0px; display: inline !important; float:
none; background-color: rgb(255, 255, 255);">server
10.70.45.17:49217 has not responded in the last 42 seconds,
disconnecting."<br>
"</span><span style="color: rgb(51, 51, 51); font-family:
monospace; font-size: 11px; font-style: normal; font-variant:
normal; font-weight: normal; letter-spacing: normal; line-height:
13.2px; orphans: auto; text-align: left; text-indent: 0px;
text-transform: none; white-space: normal; widows: 1;
word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
!important; float: none; background-color: rgb(255, 255, 255);"><span
style="color: rgb(51, 51, 51); font-family: monospace;
font-size: 11px; font-style: normal; font-variant: normal;
font-weight: normal; letter-spacing: normal; line-height:
13.2px; orphans: auto; text-align: left; text-indent: 0px;
text-transform: none; white-space: normal; widows: 1;
word-spacing: 0px; -webkit-text-stroke-width: 0px; display:
inline !important; float: none; background-color: rgb(255, 255,
255);">vmstore-replicate-0:
e16d1e40-2b6e-4f19-977d-e099f465dfc6: Failing WRITE as quorum is
not met</span>"<br>
more gluster mount logs at <a class="moz-txt-link-freetext" href="http://pastebin.com/UmiUQq0F">http://pastebin.com/UmiUQq0F</a><br>
</span>6. After some time gluster quorum is active and I am able to
write the the gluster file system.<br>
7. When I try to resume the VM it doesn't work and I got following
error in vdsm log.<br>
<a class="moz-txt-link-freetext" href="http://pastebin.com/aXiamY15">http://pastebin.com/aXiamY15</a><br>
<br>
<br>
Regards,<br>
Ramesh<br>
<br>
</body>
</html>
--------------050502080707090302020409--
9 years, 2 months