@Tom-Elliott Thank you very much!!! Now it works great!
Latest posts made by Christian
-
RE: Multicast Fedora24
-
RE: Multicast Fedora24
@Wayne-Workman its a new, fresh installation . i work with a VM with Fedora 21 and FOG 1.2 and everything works fine. Now i try a new installation on a seperate vm with Fedora 24 and Fog 1.3. So at the moment FOG 1.2 is for work and 1.3 is for testing. I hope i can use 1.3 soon.
-
RE: Multicast Fedora24
@Tom-Elliott i have done it, but the problem still exists. I think the FogMulticastService is ok, but the creation of an mutlicast-task fails
-
Multicast Fedora24
Server
- FOG Version: 1.3.0-RC19 SVN 6003
- OS: Fedora 24 Server
Client
- Service Version: -
- OS: Windows7
For testing , i try a multicast-deploy to a group with one host. It seems to me, that FOG don´t start the multicast.
Is the green window ok? Under FOG 1.2 were in this window a lists of hosts.
On the client side:
Regards Christian
-
RE: Group deploy/multi-cast problem
@Wayne-Workman i am sorry, i was wrong. Thank you ! In the image-menu there is a new option called “replicate”.
i marked this option and now my problem ist solved! Thank you very much for your quickly response. -
RE: Group deploy/multi-cast problem
@Tom-Elliott Yes, i assigned one Image to the whole Group. so i can deplay each single host without Problems. but if i try mutlicast to the Group, Fog Displays:
Theres no image definitions available on any node for the hosts in this group -
RE: Group deploy/multi-cast problem
@Tom-Elliott ok, i will try. it seems to be the same as described by davido38
Server
•FOG Version: 1.3 RC19
•OS: Fedora 24 ServerClient
•OS: Windows 7Description
I cannot deploy or multi-cast in a group, I have this message :
Theres no image definitions available on any node for the hosts in this Group
cannot deploy or multi-cast in a group, I have this message :
Theres no image definitions available on any node for the hosts in this group
but Image definitions is ok for all hosts.
I can deploy a single computer with no problemThis is a new VM for FOG 1.3. On Another VM with Fog 1.2 everthing is fine
-
RE: Group deploy/multi-cast problem
the problem still exists in
Running Version 1.3.0-RC-19
SVN Revision: 6003Deploy an single host ist fine, but multicast to an Group doesn´t work. (with Fedora 24)
-
RE: Web Interface Running slow
maybe this helps 8a copy fron the old forum):
The disk pie chart (along with the server stats page) time out and returns Unable to pull server information
The issue: the Fetch function uses the proxy settings provided in the fog settings (otherInfo>Fogsettings) but the storage node is most likely to be on the same LAN (or even the same server) and does not require a proxy sever.
FIX1: configure the proxy server to deal with internal requests.
OR
FIX2: at the very end of /var/www/fog/commons/functions.include.phpreplace these 2 lines
<code>
//Proxy
if($Proxy)
</code>
with:
<code>
//Proxy
$url1 = explode(“/”, $URL);
$noproxyfor = array(“192.168.”, “10.”);
foreach($noproxyfor as $ip) {
if(substr($url1[2], 0, strlen($ip)) == $ip) $Proxy = false;
}
if ($Proxy)
</code>the array is of the IPs of the servers/ranges that you do not wish to proxy. it looks at the start of the hostname for the strings in the array
eg. any host starting with “192.168.” and “10.” so this would include “192.168.1.2” and “10.2.5.7”
feel free to add and edit the values in teh array for your lan/server