• Multicast won't start

    Solved
    49
    0 Votes
    49 Posts
    28k Views
    Wayne WorkmanW

    @Towndrunk said in Multicast won't start:

    Is there any benefit to updating all the time if there is also the potential to have things not work?

    The benefit - getting a bug you report fixed. Getting bug fixes others report.

    Updating is totally up to you. Nobody is forcing your hand, and Release candidates are just that. Release candidates. If you want to sit on it, you can. If you want to update, you can.

    However - if you have issues and ask for help here, and the devs/mods/testers know your issue is fixed in a later RC, we will ask you to update and won’t offer much help with getting your older RC to work, when all you would need to do is update. Of course we’d help with the updating itself if you had problems. But it’s all still up to you.

  • Intermittent failure to expand ext4 filesystem to fill disk

    Unsolved
    8
    0 Votes
    8 Posts
    3k Views
    Wayne WorkmanW

    @Dommason01 said in Intermittent failure to expand ext4 filesystem to fill disk:

    I assume that I won’t lose all my registered hosts, and my images will still be valid?

    Correct.

    I’ll do a mysql backup anyway, first…

    Always a good idea, and I’d always recommend this. But also the installer makes a DB backup, and puts it into /home/fogDBbackups

  • FOG Nodes not handling imaging. Just updated to RC-10

    2
    0 Votes
    2 Posts
    822 Views
    Wayne WorkmanW

    From your picture of All Storage Nodes, there is no storage node in a group called “Green”. That may be related to your issue.

    What’s the host’s location setting set to?

    And, I see several storage nodes, but only two locations. Both locations are set to DefaultMember. This probably isn’t right.

    Can you just verbally describe what servers are where and maybe we can help get the locations sorted?

  • Problems with multicast task

    Solved
    34
    0 Votes
    34 Posts
    21k Views
    Tom ElliottT

    @habu what I’m saying is its copying data that should not be there. Modifying core files only works around the issue. What I’m suggest will fix the issue permanently for you.

  • Could not boot: Input/output error

    Solved
    13
    0 Votes
    13 Posts
    5k Views
    PsycholiquidP

    Works like a champ once again

  • Dual boot windows 7 & opensuse boot problem

    16
    0 Votes
    16 Posts
    6k Views
    ThiagoT

    @Sebastian-Roth
    Yes, My image is not resizable…
    I will try to reproduce my steps…
    1 - Erase disk data/delete partitions
    2 - Install Windows, reserving space for linux or shrink windows later (in disk management tool, or gparted if needed).
    3 - Install Linux, install grub on mbr or partition.
    4 - Configure grub if needed ( i had to make some minor changes only in Debian8/Windows10 because grub was listing windows 10 as 7)

    My preference to use grub is because i can make changes in boot order, one time boot order and so on… easily using ansible or other management tool. I don’t know how can i achieve the same in Windows side.

  • Adding NAS Synology like a node

    Solved
    27
    0 Votes
    27 Posts
    19k Views
    M

    @Miguel-Palacios
    I think fog 1.2 is not totally compatible with synology nas because synology use two different path to access data over NFS & FTP (/volume1/images & /images)
    and on fog storage node interface you can only set one path.
    (Fog does the rename job with the ftp account.)
    you need to go with a newer fog version to have the “ftp path” option.

  • Invalid Multicast Session after Update 1.2 to 1.3-RC9

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    LenainL

    @Lenain
    Solved now, I will open a new post for WOL problem. Thanks 😉

  • FOG checkin time

    Unsolved
    4
    0 Votes
    4 Posts
    2k Views
    Tom ElliottT

    Check in time cannot be changed. The checking time out can be but this is not what you’re looking for.

    It is highly doubtful checkins are causing issues as they are not spamming the server very often (one check every 5 seconds per machine.) If it were a server spamming issue it would most likely come from progress reporting as that checks in every 3 seconds. However the slowdown on images is the main issue as quazz and Wayne pointed out.

    While I suppose removing intermediary requests could help lessen the work stop/start, this would be primarily micro-optimizing as all the checkin does is update state, if needed, and decide if it is safe to start doing the tasking.

  • Host registration/ inventory problem after update to RC-9

    Solved
    6
    0 Votes
    6 Posts
    3k Views
    Tom ElliottT

    @THEMCV rc10 is pushed, albeit a couple days later than I wanted to.

  • Multicast not starting

    Solved
    39
    0 Votes
    39 Posts
    24k Views
    H

    @gerald.stachl

    I solved this question, i hope it may help someone.

    FOG 1.3-RC1 on CentOS 7.0. Unicast deploy working. Even multicast was working.

    After a system reboot, MulticastManager didn’t start again:

    Sep 4 06:01:28 clonacion FOGMulticastManager: PHP Fatal error: Call to undefined method MulticastManager::getBanner() in /opt/fog/service/FOGMulticastManager/FOGMulticastManager on line 13

    It didn’t matter if I added a multicast task: udp-sender process didn’t start because service didn’t start before (you’ll see only one FOGMulticastManager in process list --ps–, it’s the parent which forks periodically one child process (but this one will die at GetBanned method invocation).

    If I commented GetBanner() invocation out at /opt/fog/service/FOGMulticastManager/FOGMulticastManager, then it failed at next method call to object MulticastManager.

    I found TWO “MulticastManager” class, one of them extends FOGBase (at lib/fog directory) and the other one extends FOGService (at lib/service directory). Only the last one has defined methods like GetBanner(), etc. By any reason, it uses in some cases wrongly the first one (even when it used the second one after installation because it worked before).

    So, I renamed MulticastManager class that extends FOGService to MulticastManagerService, and I changed the code to use that. After that, service FOGMulticastService starts with no problems, it works. I did the same thing with rest of services: FOGScheduler,…

    I resume (for service MulticastManager: repeat it with other services in /opt/fog/services directory):

    Edit /opt/fog/service/FOGMulticastManager/FogMulticastManager file: modify line 8 from $ServiceClass = FOGCore::getClass(‘MulticastManage’); to $ServiceClass = FOGCore::getClass(‘MulticastManagerService’);

    Rename file /var/www/html/fog/lib/service/multicastmanager.class.php to /var/www/html/fog/lib/service/multicastmanagerservice.class.php (/var/www/html/fog is the path to fog web service)

    Edit /var/www/html/fog/lib/service/multicastmanagerservice.class.php and modify the name of this class (line 2) from “class MulticastManager extends FOGService” to “class MulticastManagerService extends FOGService”

  • [RC9] Unable to Locate image store (/bin/fog.download) Args Passed:

    Solved
    2
    0 Votes
    2 Posts
    2k Views
    Wayne WorkmanW

    In the video @ 9 seconds, did you reboot the machine? Why did it appear to reboot?

    Also - FOG does not use ISO files for imaging. You must first capture an image using FOG before you can deploy it.
    0_1473376357244_iso.png

  • Backing up database - Failed - Rev 5952

    Solved
    23
    0 Votes
    23 Posts
    11k Views
    G

    @Wayne-Workman @Tom-Elliott 127.0.0.1 worked! I did not test localhost with a reinstall since that worked.

    My load just went up a lot, but I’ll see if it drops after a few minutes.

    Thanks for the help!!!

  • Downloading a HDD image to PCIe SSD

    Solved
    10
    0 Votes
    10 Posts
    4k Views
    LenainL

    @george1421
    Ok thanks.
    My problem is solved now, i’v updated Fog.

  • Host Name the Same in FOG PXE

    10
    0 Votes
    10 Posts
    3k Views
    Wayne WorkmanW

    @Joe-Gill Honestly this is usually the case with the “love / hate” relationship that so many people on the internet have with FOG. I’m not saying you’re not good at this, you are and are a valued community member. But people will often simply do something wrong and blame fog, or they just don’t understand how things function and when it doesn’t work, they blame fog. I have the feeling that these people have these sorts of issues with non-fog things too.

    I do my best to keep the wiki updated, and clear. It’s kind of this huge monster with all these old pages that I have no idea what to do with besides to just make notes about them being old or what version they apply to. On one hand, I’d like to just wipe the slate clean, but on the other hand the older pages have value and do help in some capacity sometimes.

    But, the more people we have here on the forums that will help, the better. The more people that are willing to write good documentation, the better. The more people willing to make video tutorials, the better. We just need more willing people - to really push out tutorials and documentation and help. Because simple things like what you found you did today - that ruins some people’s attitudes towards fog, and that’s a shame. And if everyone that had issues asked here, we may not have enough time to answer them all. This summer was especially difficult on the forums, with upwards of 70 new posts daily. The forums is getting very close to one-million views a month… And that’s simply because FOG is growing in popularity because it’s a superior project and open-source. It’s time it also grew in community volunteers as well.

  • Create New Image links to a blank page

    4
  • Printer Config File

    2
    0 Votes
    2 Posts
    858 Views
    Wayne WorkmanW

    It’s not required, it’s optional.

    You will find the printer helper program that Joe made quite useful.
    Basically, manually install the printer, then fire up the helper program, it will give you the values to use in the FOG web UI.

    If you have issues getting the printer to deploy, you can plug these values into the helper’s Add Printer section and if somethings wrong it’ll give you an error about it. Download the latest version of it from here:
    https://github.com/FOGProject/fog-client/releases

    I want to make a video all about it, but I don’t have a network printer at home. 😞
    Anyone want to donate an old network printer?

  • Fog Client won't join Domain

    Unsolved
    9
    0 Votes
    9 Posts
    4k Views
    PsycholiquidP

    @Gary-Kulovics said in Fog Client won't join Domain:

    9560

    Invalid character in name.

  • Schema update issues RC-9

    Solved
    10
    0 Votes
    10 Posts
    3k Views
    K

    @Wayne-Workman
    I feel dumb now, should have tried that yesterday. Simply deleting those folders/doing another git clone and everything is working fine now. Thanks a lot for the help!

  • USB NIC PXE Boot?

    13
    0 Votes
    13 Posts
    7k Views
    Wayne WorkmanW

    @Sebastian-Roth said in USB NIC PXE Boot?:

    The PC/notebook/tablet/whatever device you are trying to PXE boot with this USB NIC needs to have specific drivers for this USB NIC chip in the BIOS!!

    I suppose now we must record the device that the adapter worked on, too. I didn’t think of this but it makes sense.

    #wiki

85

Online

12.7k

Users

17.6k

Topics

156.5k

Posts