@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ā