• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. vinyard
    V
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    vinyard

    @vinyard

    0
    Reputation
    249
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    vinyard Unfollow Follow

    Latest posts made by vinyard

    • RE: CentOS 7/RHEL 7/Fedora 20 Support

      Is the nfs-server running? What is the output of the following?

      [CODE]systemctl status nfs-server[/CODE]

      If it is not running, run the following:
      [CODE]systemctl enable nfs-server
      systemctl start nfs-server[/CODE]

      You should test this with iptables and selinux disabled first to make sure everything works as expected.

      posted in Feature Request
      V
      vinyard
    • RE: CentOS 7/RHEL 7/Fedora 20 Support

      To get multicast working on CentOS7 you’ll need to modify the following line in function getIPAddress in /var/www/html/fog/lib/fog/FOGCore.class.php

      from:
      [CODE]exec(“/sbin/ifconfig | grep ‘[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}’| cut -d’:’ -f 2 | cut -d’ ’ -f1”, $arR, $retVal);[/CODE]

      to:
      [CODE]exec(“/sbin/ip addr | grep -o ‘[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}/[0-9]{1,2}’ | cut -d/ -f1”, $arR, $retVal);[/CODE]

      If you have multiple interfaces with IP addresses you might need to use the following in the first portion of that line

      [CODE]/sbin/ip addr list eth0[/CODE]

      Replace eth0 with the interface you use for fog.

      I haven’t tested this with Ubuntu but if the system has iproute2 package installed it should work.

      posted in Feature Request
      V
      vinyard