<div dir="ltr"><div><div><div>Hi<br>
<br>
I just want to know if there is any way I can disable the yum looking for updates on the internet on the node?<br><br></div>Please help me out here. <br><br></div>Thanks<br><br></div>Shalabh Goel<br><div><div><div>
<br>
<br><br><div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Nov 29, 2016 at 5:59 PM,  <span dir="ltr">&lt;<a href="mailto:users-request@ovirt.org" target="_blank">users-request@ovirt.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Send Users mailing list submissions to<br>
        <a href="mailto:users@ovirt.org">users@ovirt.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:users-request@ovirt.org">users-request@ovirt.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:users-owner@ovirt.org">users-owner@ovirt.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Users digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re:  I wrote an oVirt thing (Yaniv Kaul)<br>
   2.  Ovirt node host installation failing in engine (Shalabh Goel)<br>
   3. Re:  How to migrate Self Hosted Engine (Gianluca Cecchi)<br>
   4. Re:  Need help with dashboard (????? ???????)<br>
<br>
<br>
------------------------------<wbr>------------------------------<wbr>----------<br>
<br>
Message: 1<br>
Date: Tue, 29 Nov 2016 14:06:22 +0200<br>
From: Yaniv Kaul &lt;<a href="mailto:ykaul@redhat.com">ykaul@redhat.com</a>&gt;<br>
To: Konstantin Shalygin &lt;<a href="mailto:k0ste@k0ste.ru">k0ste@k0ste.ru</a>&gt;<br>
Cc: Ovirt Users &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
Subject: Re: [ovirt-users] I wrote an oVirt thing<br>
Message-ID:<br>
        &lt;CAJgorsY_SksEnP2jQxBgdJyKW=4_<wbr>qZZGZ=<a href="mailto:DwHQ13MteEN5jG5w@mail.gmail.com">DwHQ13MteEN5jG5w@mail.<wbr>gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
On Tue, Nov 29, 2016 at 3:40 AM, Konstantin Shalygin &lt;<a href="mailto:k0ste@k0ste.ru">k0ste@k0ste.ru</a>&gt; wrote:<br>
<br>
&gt; ovirt-shell will be deprecated and not supported or some functions on<br>
&gt; ovirt-shell (or all package ovirt-engine-cli)?<br>
&gt;<br>
&gt; We use ovirt-shell on client desktops who connected to SPICE consoles and<br>
&gt; work (users provided by LDAP on ovirt-engine), like via RDP. For this I<br>
&gt; wrote very fast-hack patch for ovirt-shell and GUI for enter password (<br>
&gt; <a href="https://github.com/k0ste/ovirt-pygtk" rel="noreferrer" target="_blank">https://github.com/k0ste/<wbr>ovirt-pygtk</a>). Very simple, but via Internet<br>
&gt; people use SPICE without negative about packet loss and disconnects,<br>
&gt; instead RDP.<br>
<br>
<br>
Can you further explain the use case? I assume the user portal is not good<br>
enough for some reason?<br>
<br>
<br>
&gt;<br>
&gt;<br>
&gt; BTW, the ovirt-shell is something we deprecated. It is working on top of<br>
&gt;&gt; the v3 api, which we plan to remove in 4.2.<br>
&gt;&gt; So better not use it.<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; You can start maintain. For example I maintain packes for Arch Linux:<br>
&gt; ovirt-engine-cli (<a href="https://aur.archlinux.org/packages/ovirt-engine-cli" rel="noreferrer" target="_blank">https://aur.archlinux.org/<wbr>packages/ovirt-engine-cli</a>)<br>
&gt; and ovirt-engine-sdk-python (<a href="https://aur.archlinux.org/pac" rel="noreferrer" target="_blank">https://aur.archlinux.org/pac</a><br>
&gt; kages/ovirt-engine-sdk-python)<wbr>.<br>
<br>
<br>
Hi,<br>
<br>
It somehow looks like a fork of the CLI (due to the added patch[1]).<br>
I&#39;m not sure how happy I am about it, considering the patch is adding a<br>
feature with security issues (there is a reason we do not support password<br>
passed via the command line - it&#39;s somewhat less secure).<br>
Since you are already checking for the CLI rc file[2], just add the<br>
password to it and launch with it (in a temp file in the temp directory<br>
with the right permissions, etc...)<br>
<br>
BTW, note that the attempt to delete the password from memory[3] may or may<br>
not work. After all, it&#39;s a copy of what you got from entry.get_text() few<br>
lines before.<br>
And Python GC is not really to be relied upon to delete things ASAP anyway.<br>
There are some lovely discussions on the Internet about it. For example[4].<br>
Y.<br>
<br>
[1]<br>
<a href="https://github.com/k0ste/ovirt-pygtk/blob/master/add_password_option.patch" rel="noreferrer" target="_blank">https://github.com/k0ste/<wbr>ovirt-pygtk/blob/master/add_<wbr>password_option.patch</a><br>
[2] <a href="https://github.com/k0ste/ovirt-pygtk/blob/master/ovirt-pygtk.py#L81" rel="noreferrer" target="_blank">https://github.com/k0ste/<wbr>ovirt-pygtk/blob/master/ovirt-<wbr>pygtk.py#L81</a><br>
[3] <a href="https://github.com/k0ste/ovirt-pygtk/blob/master/ovirt-pygtk.py#L71" rel="noreferrer" target="_blank">https://github.com/k0ste/<wbr>ovirt-pygtk/blob/master/ovirt-<wbr>pygtk.py#L71</a><br>
[4]<br>
<a href="http://stackoverflow.com/questions/728164/securely-erasing-password-in-memory-python" rel="noreferrer" target="_blank">http://stackoverflow.com/<wbr>questions/728164/securely-<wbr>erasing-password-in-memory-<wbr>python</a><br>
<br>
&gt;<br>
&gt;<br>
&gt;   My workstation at work is running Ubuntu, and I do not believe that<br>
&gt;&gt; ovirt-shell is packaged for it.<br>
&gt;&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Best regards,<br>
&gt; Konstantin Shalygin<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; Users mailing list<br>
&gt; <a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
&gt; <a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://lists.ovirt.org/pipermail/users/attachments/20161129/4c62f1cf/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>pipermail/users/attachments/<wbr>20161129/4c62f1cf/attachment-<wbr>0001.html</a>&gt;<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 28 Nov 2016 10:00:31 +0530<br>
From: Shalabh Goel &lt;<a href="mailto:shalabhgoel13@gmail.com">shalabhgoel13@gmail.com</a>&gt;<br>
To: <a href="mailto:users@ovirt.org">users@ovirt.org</a><br>
Subject: [ovirt-users] Ovirt node host installation failing in engine<br>
Message-ID:<br>
        &lt;<a href="mailto:CAEnn9my9QcGYqLsqAV%2BW9PiOajwQqTpvQdLiYtLOf3sc5TiB_Q@mail.gmail.com">CAEnn9my9QcGYqLsqAV+<wbr>W9PiOajwQqTpvQdLiYtLOf3sc5TiB_<wbr>Q@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
Hi<br>
<br>
I have installed ovirt engine (version 4) on Centos 7.2 in one server<br>
system and 1 ovirt node (version 4) using ovirt node iso in another system.<br>
But when am adding the node in the engine from web portal, the installation<br>
is failing on the node. There is no Internet connectivity to the node. When<br>
I checked the logs, I found that it is trying to connect to a repo using<br>
yum. My questions are:<br>
<br>
1. Is internet connectivity required on the node?<br>
<br>
2. If I cannot provide internet connectivity to the node. Please suggest a<br>
work around.<br>
<br>
<br>
Thank You<br>
<br>
Shalabh Goel<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://lists.ovirt.org/pipermail/users/attachments/20161128/6ee65704/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>pipermail/users/attachments/<wbr>20161128/6ee65704/attachment-<wbr>0001.html</a>&gt;<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Tue, 29 Nov 2016 13:27:06 +0100<br>
From: Gianluca Cecchi &lt;<a href="mailto:gianluca.cecchi@gmail.com">gianluca.cecchi@gmail.com</a>&gt;<br>
To: Yedidyah Bar David &lt;<a href="mailto:didi@redhat.com">didi@redhat.com</a>&gt;<br>
Cc: users &lt;<a href="mailto:users@ovirt.org">users@ovirt.org</a>&gt;<br>
Subject: Re: [ovirt-users] How to migrate Self Hosted Engine<br>
Message-ID:<br>
        &lt;CAG2kNCz=2Gz1CJtLLT2mtT3E+<wbr>wzH0=<a href="mailto:vtugmOBS_Fd7e1cXicBQ@mail.gmail.com">vtugmOBS_Fd7e1cXicBQ@<wbr>mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
On Mon, Nov 21, 2016 at 8:54 AM, Yedidyah Bar David &lt;<a href="mailto:didi@redhat.com">didi@redhat.com</a>&gt; wrote:<br>
<br>
&gt; On Mon, Nov 21, 2016 at 1:09 AM, Gianluca Cecchi<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; Two notes:<br>
&gt; &gt; 1) it would be nice to pre-filter the drop down box when you have to<br>
&gt; choose<br>
&gt; &gt; the host where migrate the hosted engine...<br>
&gt; &gt; So that if there are no hosts available you will be given a related<br>
&gt; message<br>
&gt; &gt; without choice at all and if there is a subset of eligible hosts inside<br>
&gt; the<br>
&gt; &gt; cluster, you will be proposed only to choose one of them and not all the<br>
&gt; &gt; hosts inside the cluster.<br>
&gt;<br>
&gt; Makes sense, please open an RFE to track this. Thanks.<br>
&gt;<br>
<br>
Been busy these latest days...<br>
Opened now:<br>
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=1399609" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/<wbr>show_bug.cgi?id=1399609</a><br>
<br>
<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; 2) If the gui option becomes the default and preferred way to deploy<br>
&gt; hosts<br>
&gt; &gt; in self hosted engine environments I think it should be put in clearer<br>
&gt; shape<br>
&gt; &gt; that if you follow the default action you would not have high<br>
&gt; availability<br>
&gt; &gt; for the hosted engine vm.<br>
&gt; &gt; Or changing the default action to &quot;Deploy&quot;, or showing a popup if the<br>
&gt; hosted<br>
&gt; &gt; engine vm has only one host configured for it but there are other hosts<br>
&gt; in<br>
&gt; &gt; the cluster.<br>
&gt; &gt; Just my opinion.<br>
&gt;<br>
&gt; Makes sense too, but I wonder if people will then be annoyed by forgetting<br>
&gt; to uncheck it even after having enough HA hosts, which does have its cost<br>
&gt; (both actual resource use and also reservations, IIUC). Perhaps we should<br>
&gt; enable by default and/or remind only until you have enough HA hosts, which<br>
&gt; can be a configurable number (and default e.g. to 3).<br>
&gt;<br>
&gt;<br>
&gt;<br>
and here:<br>
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=1399613" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/<wbr>show_bug.cgi?id=1399613</a><br>
<br>
Cheers,<br>
Gianluca<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://lists.ovirt.org/pipermail/users/attachments/20161129/3eccc506/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>pipermail/users/attachments/<wbr>20161129/3eccc506/attachment-<wbr>0001.html</a>&gt;<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Tue, 29 Nov 2016 12:28:55 +0000<br>
From: ????? ??????? &lt;<a href="mailto:mishanindv@gmail.com">mishanindv@gmail.com</a>&gt;<br>
To: Shirly Radco &lt;<a href="mailto:sradco@redhat.com">sradco@redhat.com</a>&gt;<br>
Cc: &quot;<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&quot; &lt;<a href="mailto:Users@ovirt.org">Users@ovirt.org</a>&gt;<br>
Subject: Re: [ovirt-users] Need help with dashboard<br>
Message-ID:<br>
        &lt;<a href="mailto:CADYaN2fiQAD9abUJrLbx2R175X1VcgGyJ-aQq9WHZ7g8%2B7eKtQ@mail.gmail.com">CADYaN2fiQAD9abUJrLbx2R175X1V<wbr>cgGyJ-aQq9WHZ7g8+7eKtQ@mail.<wbr>gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
Thank you, I have created a bug.<br>
<br>
<a href="https://bugzilla.redhat.com/show_bug.cgi?id=1399597" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/<wbr>show_bug.cgi?id=1399597</a><br>
<br>
<br>
??, 29 ????. 2016 ?. ? 13:54, Shirly Radco &lt;<a href="mailto:sradco@redhat.com">sradco@redhat.com</a>&gt;:<br>
<br>
&gt; # su - postgres<br>
&gt; $ pg_dump --file ovirt_engine_history.dump ovirt_engine_history<br>
&gt;<br>
&gt; Best regards,<br>
&gt;<br>
&gt; Shirly Radco<br>
&gt;<br>
&gt; BI Software Engineer<br>
&gt; Red Hat Israel Ltd.<br>
&gt; 34 Jerusalem Road<br>
&gt; Building A, 4th floor<br>
&gt; Ra&#39;anana, Israel 4350109<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Nov 28, 2016 at 9:25 AM, ????? ??????? &lt;<a href="mailto:mishanindv@gmail.com">mishanindv@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt; Hi, sorry for the delay, I do not know how to create &quot;ovirt_engine_history db dump&quot;?<br>
&gt;<br>
&gt;<br>
&gt; ??, 22 ????. 2016 ?. ? 10:52, Shirly Radco &lt;<a href="mailto:sradco@redhat.com">sradco@redhat.com</a>&gt;:<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; Can you please open a bug?<br>
&gt; Please attach to the bug these files+ the screenshots +<br>
&gt; ovirt_engine_history db dump.<br>
&gt;<br>
&gt; Thank you,<br>
&gt;<br>
&gt; Shirly Radco<br>
&gt;<br>
&gt; BI Software Engineer<br>
&gt; Red Hat Israel Ltd.<br>
&gt; 34 Jerusalem Road<br>
&gt; Building A, 4th floor<br>
&gt; Ra&#39;anana, Israel 4350109<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Nov 21, 2016 at 4:56 PM, ????? ??????? &lt;<a href="mailto:mishanindv@gmail.com">mishanindv@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt; Thank you that you have answered me. I mean, the data is not displayed at the bottom of Dashboard. Log files and the status of the services I attached to the letter.<br>
&gt;<br>
&gt;<br>
&gt; ??, 20 ????. 2016 ?. ? 11:13, Shirly Radco &lt;<a href="mailto:sradco@redhat.com">sradco@redhat.com</a>&gt;:<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; You attached twice the same screenshot...<br>
&gt; Please attach the screenshot with the missing data.<br>
&gt;<br>
&gt; Also, the data for the graphs is collected by the ovirt-engine-dwhd<br>
&gt; service.<br>
&gt; Please see if the service is running, also check logs for errors.<br>
&gt; Please attach the log.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Best regards,<br>
&gt;<br>
&gt; Shirly Radco<br>
&gt;<br>
&gt; BI Software Engineer<br>
&gt; Red Hat Israel Ltd.<br>
&gt; 34 Jerusalem Road<br>
&gt; Building A, 4th floor<br>
&gt; Ra&#39;anana, Israel 4350109<br>
&gt;<br>
&gt;<br>
&gt; On Sun, Nov 20, 2016 at 9:31 AM, ????? ??????? &lt;<a href="mailto:mishanindv@gmail.com">mishanindv@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Hi, I need help to load Dasboard, he is incorrectly displayed graphics<br>
&gt; processor is not displayed data, memory, disk volume. I installed 3 hosts<br>
&gt; with glusterfs. After installation everything worked fine and the data is<br>
&gt; displayed correctly, but then everything was as follows. What could be a<br>
&gt; problem?<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; oVirt Engine Version: 4.0.5.5-1.el7.centos<br>
&gt;<br>
&gt;<br>
&gt; [image: pasted1]<br>
&gt;<br>
&gt; [image: pasted3]<br>
&gt;<br>
&gt; [image: pasted2]<br>
&gt;<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; Users mailing list<br>
&gt; <a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
&gt; <a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://lists.ovirt.org/pipermail/users/attachments/20161129/06bfe244/attachment.html" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>pipermail/users/attachments/<wbr>20161129/06bfe244/attachment.<wbr>html</a>&gt;<br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: pasted2<br>
Type: image/png<br>
Size: 108864 bytes<br>
Desc: not available<br>
URL: &lt;<a href="http://lists.ovirt.org/pipermail/users/attachments/20161129/06bfe244/attachment.png" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>pipermail/users/attachments/<wbr>20161129/06bfe244/attachment.<wbr>png</a>&gt;<br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: pasted3<br>
Type: image/png<br>
Size: 135899 bytes<br>
Desc: not available<br>
URL: &lt;<a href="http://lists.ovirt.org/pipermail/users/attachments/20161129/06bfe244/attachment-0001.png" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>pipermail/users/attachments/<wbr>20161129/06bfe244/attachment-<wbr>0001.png</a>&gt;<br>
<br>
------------------------------<br>
<br>
______________________________<wbr>_________________<br>
Users mailing list<br>
<a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
<br>
<br>
End of Users Digest, Vol 62, Issue 197<br>
******************************<wbr>********<br>
</blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature">Shalabh Goel</div>
</div></div></div></div></div></div>