Difference between revisions of "Troubleshoot Downloading - Multicast"

From FOG Project
Jump to: navigation, search
Line 6: Line 6:
 
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.
 
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.
  
Via MySQL cli
 
  
<pre>TRUNCATE TABLE multicastSessions;  
+
<pre>mysql
TRUNCATE TABLE multicastSessionsAssoc;
+
use fog
DELETE FROM tasks WHERE taskTypeId=8;</pre>
+
DELETE FROM `multicastSessions` WHERE 1;
 +
DELETE FROM `multicastSessionsAssoc` WHERE 1
 +
DELETE FROM `tasks` WHERE `taskTypeID` = 8;
 +
quit</pre>

Revision as of 02:08, 16 June 2015

Article under construction. Below, you will find notes / jibberish 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