Difference between revisions of "Troubleshoot Downloading - Multicast"
m |
|||
Line 1: | Line 1: | ||
− | Article under construction. Below, you will find notes / | + | Article under construction. Below, you will find notes / gibberish that I'm collecting to make into an article. |
------------------------------------------------------------------ | ------------------------------------------------------------------ | ||
Line 10: | Line 10: | ||
use fog | use fog | ||
DELETE FROM `multicastSessions` WHERE 1; | DELETE FROM `multicastSessions` WHERE 1; | ||
− | DELETE FROM `multicastSessionsAssoc` WHERE 1 | + | DELETE FROM `multicastSessionsAssoc` WHERE 1; |
DELETE FROM `tasks` WHERE `taskTypeID` = 8; | DELETE FROM `tasks` WHERE `taskTypeID` = 8; | ||
quit</pre> | quit</pre> |
Revision as of 02:18, 16 June 2015
Article under construction. Below, you will find notes / gibberish that I'm collecting to make into an article.
Inside the FOG DB, there are two multicast association tables. You can delete all the rows in those tables, re-install FOG, and try again.
mysql use fog DELETE FROM `multicastSessions` WHERE 1; DELETE FROM `multicastSessionsAssoc` WHERE 1; DELETE FROM `tasks` WHERE `taskTypeID` = 8; quit
Check the status of FOGMulticastManager and restart:
Fedora:
systemctl status FOGMulticastManager systemctl restart FOGMulticastManager
Ubuntu:
sudo service FOGMulticastManager status sudo service FOGMulticastManager restart