• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    FOG Registration Error. Hostname with that name already exists

    Scheduled Pinned Locked Moved Solved
    Bug Reports
    3
    61
    23.9k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Wayne WorkmanW
      Wayne Workman @cojohnson
      last edited by

      @cojohnson and @Tom-Elliott, that hostname that was inputted is only 12 characters long, not 15.

      Also, I’ve got this thing I wrote a while back that monitors hosts in FOG, we can modify it to keep an eye on the hosts with 0 as an ID and figure out exactly when it’s happening. I’d just need some time with you via Join.me. Also, do try RC-11 as Tom suggested. If you message me via the forums chat, I can give you steps on how to do that.

      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
      Daily Clean Installation Results:
      https://fogtesting.fogproject.us/
      FOG Reporting:
      https://fog-external-reporting-results.fogproject.us/

      1 Reply Last reply Reply Quote 0
      • Wayne WorkmanW
        Wayne Workman
        last edited by Wayne Workman

        Cross-linking threads with the same problem and moved to bugs.
        https://forums.fogproject.org/topic/8628/registering-clients-same-mac-shows-up

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
        Daily Clean Installation Results:
        https://fogtesting.fogproject.us/
        FOG Reporting:
        https://fog-external-reporting-results.fogproject.us/

        1 Reply Last reply Reply Quote 0
        • Wayne WorkmanW
          Wayne Workman
          last edited by Wayne Workman

          @cojohnson Can you run these SQL queries in MySQL please, and give us the results?

          mysql -D fog
          SELECT `hostID`, `hostName` FROM `hosts` WHERE `hostID` = '0';
          SELECT * FROM `hostMAC` WHERE hmID = '0' OR `hmHostID` = '0';
          SELECT * FROM `groupMembers` WHERE `gmID` = '0' OR `gmHostID` = '0' OR `gmGroupID` = '0';
          SELECT * FROM `snapinGroupAssoc` WHERE `sgaID` = '0' OR `sgaSnapinID` = '0' OR `sgaStorageGroupID` = '0';
          SELECT * from `snapinAssoc` WHERE `saID` = '0' OR `saHostID` = '0' OR `saSnapinID` = '0'; 
          quit
          

          Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
          Daily Clean Installation Results:
          https://fogtesting.fogproject.us/
          FOG Reporting:
          https://fog-external-reporting-results.fogproject.us/

          C 1 Reply Last reply Reply Quote 0
          • C
            cojohnson @Wayne Workman
            last edited by cojohnson

            @Wayne-Workman Thanks, I am available today whenever you get a chance to have a conversation. Here are the results of the queries you wanted me run. I deleted these entries and will update the thread if the issue arises again

            0_1474632538378_Results_Wayne.png

            0_1474634721723_upload-c49d878f-d7aa-4e64-b298-fa0c18c4c9c3

            Tom ElliottT 1 Reply Last reply Reply Quote 0
            • Tom ElliottT
              Tom Elliott @cojohnson
              last edited by

              @cojohnson can you please try working RC 11 after cleaning up the db? I’m pretty sure that it will address the random 0 entries too.

              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

              Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

              Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

              C 3 Replies Last reply Reply Quote 0
              • C
                cojohnson @Tom Elliott
                last edited by

                @Tom-Elliott I will do the upgrade! Thanks for all of your hard work!

                1 Reply Last reply Reply Quote 0
                • C
                  cojohnson @Tom Elliott
                  last edited by

                  @Tom-Elliott
                  The issue just started happening again! On RC11.
                  0_1475849472256_upload-4ab700e0-28dd-47ac-a57f-e68f4d6b53b4

                  1 Reply Last reply Reply Quote 0
                  • C
                    cojohnson @Tom Elliott
                    last edited by

                    @Tom-Elliott
                    I deleted the Hosts from the table and delete a unused Storage Group. So i am functional right now and will update the thread if i have any more problems.

                    Do you have any ideas?

                    Tom ElliottT Wayne WorkmanW 2 Replies Last reply Reply Quote 0
                    • Tom ElliottT
                      Tom Elliott @cojohnson
                      last edited by

                      @cojohnson Nope. Working RC 12 has some improvements though. If you want to try that.

                      I’ve not been able to replicate the issue myself. Then again, I wasn’t able to replicate it in RC-10, though I did find what was causing it.

                      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                      1 Reply Last reply Reply Quote 0
                      • Wayne WorkmanW
                        Wayne Workman @cojohnson
                        last edited by Wayne Workman

                        @cojohnson Can you try these commands? This is just out of pure curiosity on my part, but could potentially reveal an issue.

                        SELECT * FROM `hosts` WHERE `hostID` NOT IN (SELECT `hmhostID` FROM `hostMAC`);
                        SELECT * FROM `hostMAC` WHERE `hmhostID` NOT IN (SELECT `hostID` FROM `hosts`);
                        SELECT * FROM `snapinAssoc` WHERE `saHostID` NOT IN (SELECT `hostID` FROM `hosts`);
                        SELECT * FROM `groupMembers` WHERE `gmHostID` NOT IN (SELECT `hostID` FROM `hosts`);
                        

                        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                        Daily Clean Installation Results:
                        https://fogtesting.fogproject.us/
                        FOG Reporting:
                        https://fog-external-reporting-results.fogproject.us/

                        C 1 Reply Last reply Reply Quote 0
                        • C
                          cojohnson @Wayne Workman
                          last edited by

                          @Wayne-Workman

                          
                          mysql> SELECT * FROM `hosts` WHERE `hostID` NOT IN (SELECT `hmhostID` FROM `hostMAC`);
                          +--------+-----------------+---------------------------------------------+--------+-----------+--------------+---------------------+---------------------+--------------+-----------+---------------------+----------------------------------------------------------------+-------------------+------------+----------------------------------+----------------+------------------+----------------+------------+------------+----------+-------------+------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+---------------------+--------------+--------------+-------------+-------------+
                          | hostID | hostName        | hostDesc                                    | hostIP | hostImage | hostBuilding | hostCreateDate      | hostLastDeploy      | hostCreateBy | hostUseAD | hostADDomain        | hostADOU                                                       | hostADUser        | hostADPass | hostADPassLegacy                 | hostProductKey | hostPrinterLevel | hostKernelArgs | hostKernel | hostDevice | hostInit | hostPending | hostPubKey                                                       | hostSecToken                                                                                                                     | hostSecTime         | hostPingCode | hostExitBios | hostExitEfi | hostEnforce |
                          +--------+-----------------+---------------------------------------------+--------+-----------+--------------+---------------------+---------------------+--------------+-----------+---------------------+----------------------------------------------------------------+-------------------+------------+----------------------------------+----------------+------------------+----------------+------------+------------+----------+-------------+------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+---------------------+--------------+--------------+-------------+-------------+
                          |     10 | TRC-011         | Created by FOG Reg on May 6, 2016, 5:56 pm  |        |        10 |            0 | 2016-05-06 17:56:09 | 2016-06-06 15:33:24 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            | NULL     |             | 1c92669f6ee5518342c2c99ae17ffd71387bef6520fd68f87441bdce73be4f21 | 66636139626233313635306138343462323233366635613330636463633163313565656465303036643537643731323438316231656636386335363565343835 | 2016-06-06 16:05:13 | 6            |              |             | 0           |
                          |     11 | TRC-010         | Created by FOG Reg on May 9, 2016, 12:01 pm |        |        10 |            0 | 2016-05-09 12:01:11 | 2016-06-06 15:33:38 | fog          | 1         | wayne-jvs.k12.oh.us | OU=Fogadd,OU=Computers,OU=user,DC=wayne-jvs,DC=k12,DC=oh,DC=us | WCSCC1\\\\xpsetup |            | 4a7f1e682d32441e2745bf19541efa66 |                |                  |                |            |            | NULL     |             | 5c4bb0de933a85e8706cdc79d7276ed89b784469b2f70c60fac1097043c6a256 | 61376537316633306532303161333466346466643837326630636263626534333038613261366664663032623664303061323264616164373834306431376361 | 2016-06-06 16:05:32 | 6            |              |             | 1           |
                          |      8 | SEASHELL-3225   | Created by FOG Reg on May 5, 2016, 4:10 pm  |        |         9 |            0 | 2016-05-05 16:10:01 | 2016-05-05 16:15:01 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            | NULL     |             |                                                                  |                                                                                                                                  | 0000-00-00 00:00:00 | 6            |              |             |             |
                          |      9 | SEASHELL-PC3202 | Created by FOG Reg on May 6, 2016, 11:25 am |        |         9 |            0 | 2016-05-06 11:25:24 | 2016-05-06 12:00:59 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            | NULL     |             |                                                                  |                                                                                                                                  | 0000-00-00 00:00:00 | 6            |              |             |             |
                          |     27 | HP4530S-6916    | Created by FOG Reg on May 31, 2016, 4:13 pm |        |         6 |            0 | 2016-05-31 16:13:30 | 2016-05-31 16:20:59 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            | NULL     |             |                                                                  |                                                                                                                                  | 0000-00-00 00:00:00 | 6            |              |             | 0           |
                          |     28 | HP4530S-6915    | Created by FOG Reg on May 31, 2016, 5:42 pm |        |         6 |            0 | 2016-05-31 17:42:15 | 2016-05-31 17:51:42 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            | NULL     |             |                                                                  |                                                                                                                                  | 0000-00-00 00:00:00 | 6            |              |             | 0           |
                          |     36 | TRCA-028        | Created by FOG Reg on June 6, 2016, 3:11 pm |        |        10 |            0 | 2016-06-06 15:11:32 | 2016-06-06 15:15:20 | fog          | 1         | wayne-jvs.k12.oh.us | OU=Fogadd,OU=Computers,OU=user,DC=wayne-jvs,DC=k12,DC=oh,DC=us | WCSCC1\\xpsetup   |            | 4a7f1e682d32441e2745bf19541efa66 |                |                  |                |            |            | NULL     |             |                                                                  | 31613533643338353865623230346565376334363734353962326462333830313863383335323061323861363933393139623862613935323034306432323832 | 2016-06-06 15:47:18 | 6            |              |             | 1           |
                          |     57 | DESKTOP-66NAPUK | Pending Registration created by FOG_CLIENT  |        |         0 |            0 | 2016-06-08 14:02:50 | 0000-00-00 00:00:00 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            | NULL     | 1           |                                                                  |                                                                                                                                  | 0000-00-00 00:00:00 | 6            |              |             | 1           |
                          |      0 |                 |                                             |        |         0 |            0 | 2016-10-07 17:00:55 | 0000-00-00 00:00:00 | fog          |           |                     |                                                                |                   |            |                                  |                |                  |                |            |            |          |             | f73a03be725c1f08c98edd0eeeca43a625e4e4502bceb4f52b3186383333620c | 34626166356238383862613364316664623333343365616231316638643863376430623431346266346137383533663638303137383030303164393937623337 | 2016-10-07 17:30:55 |              |              |             |             |
                          +--------+-----------------+---------------------------------------------+--------+-----------+--------------+---------------------+---------------------+--------------+-----------+---------------------+----------------------------------------------------------------+-------------------+------------+----------------------------------+----------------+------------------+----------------+------------+------------+----------+-------------+------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+---------------------+--------------+--------------+-------------+-------------+
                          9 rows in set (0.00 sec)
                          
                          mysql> SELECT * FROM `hostMAC` WHERE `hmhostID` NOT IN (SELECT `hostID` FROM `hosts`);
                          +------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                          | hmID | hmHostID | hmMAC             | hmDesc | hmPrimary | hmPending | hmIgnoreClient | hmIgnoreImaging |
                          +------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                          |    4 |        3 | a4:17:31:a5:05:23 |        | 0         | 0         | 0              | 0               |
                          |    7 |        5 | a4:17:31:a5:05:7d |        | 0         | 0         | 0              | 0               |
                          |   23 |       18 | a4:17:31:82:b6:5d |        | 0         | 0         | 0              | 0               |
                          |   26 |       21 | a4:17:31:5c:71:0f |        | 0         | 0         | 0              | 0               |
                          |   27 |       22 | a4:17:31:a5:14:ed |        | 0         | 0         | 0              | 0               |
                          |  184 |       59 | e8:9a:8f:60:7a:37 |        | 0         | 0         | 0              | 0               |
                          |  928 |      648 | 18:5e:0f:f0:3a:f6 |        | 0         | 0         | 0              | 0               |
                          |  144 |      128 | 76:df:bf:f3:76:68 |        | 0         | 0         | 0              | 0               |
                          |  178 |       59 |                   |        | 0         | 1         | 0              | 0               |
                          |  335 |      172 | d0:67:e5:31:a5:32 |        | 0         | 0         | 0              | 0               |
                          |  337 |      173 | d0:67:e5:52:a8:c0 |        | 0         | 0         | 0              | 0               |
                          |  339 |      174 | d0:67:e5:52:a9:ea |        | 0         | 0         | 0              | 0               |
                          |  341 |      175 | d0:67:e5:52:aa:3f |        | 0         | 0         | 0              | 0               |
                          |  343 |      176 | d0:67:e5:52:b1:5b |        | 0         | 0         | 0              | 0               |
                          |  345 |      177 | d0:67:e5:52:a8:c7 |        | 0         | 0         | 0              | 0               |
                          |  347 |      178 | d0:67:e5:52:b1:6c |        | 0         | 0         | 0              | 0               |
                          |  351 |      181 | d0:67:e5:30:a7:b5 |        | 0         | 0         | 0              | 0               |
                          |  353 |      182 | d0:67:e5:30:c7:ff |        | 0         | 0         | 0              | 0               |
                          |  355 |      183 | d0:67:e5:31:a4:2b |        | 0         | 0         | 0              | 0               |
                          |  357 |      184 | d0:67:e5:3f:74:24 |        | 0         | 0         | 0              | 0               |
                          | 2808 |     1899 | 20:10:7a:42:5f:df |        | 1         |           |                |                 |
                          | 1788 |     1258 | 64:31:50:12:a6:23 |        | 1         |           |                |                 |
                          | 1789 |     1259 | b4:b5:2f:84:9b:20 |        | 1         |           |                |                 |
                          | 1790 |     1260 | b4:b5:2f:84:9c:ff |        | 1         |           |                |                 |
                          | 1792 |     1260 | a4:17:31:a5:18:dd |        | 0         | 1         | 0              | 0               |
                          | 1793 |     1259 | a4:17:31:5c:6d:e3 |        | 0         | 1         | 0              | 0               |
                          | 1794 |     1262 | e4:11:5b:51:3a:aa |        | 1         |           |                |                 |
                          | 1795 |     1263 | e4:11:5b:51:a1:42 |        | 1         |           |                |                 |
                          +------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                          28 rows in set (0.00 sec)
                          
                          mysql> SELECT * FROM `snapinAssoc` WHERE `saHostID` NOT IN (SELECT `hostID` FROM `hosts`);
                          Empty set (0.00 sec)
                          
                          mysql> SELECT * FROM `groupMembers` WHERE `gmHostID` NOT IN (SELECT `hostID` FROM `hosts`);
                          +------+----------+-----------+
                          | gmID | gmHostID | gmGroupID |
                          +------+----------+-----------+
                          |  357 |     1221 |         3 |
                          |  356 |     1220 |         3 |
                          |  355 |     1219 |         3 |
                          |  354 |     1218 |         3 |
                          |  353 |     1217 |         3 |
                          |  352 |     1216 |         3 |
                          |  351 |     1215 |         3 |
                          |  350 |     1214 |         3 |
                          |  323 |     1129 |         3 |
                          |  322 |     1128 |         3 |
                          |  321 |     1127 |         3 |
                          |  320 |     1126 |         3 |
                          |  319 |     1125 |         3 |
                          |  318 |     1124 |         3 |
                          |  317 |     1113 |         3 |
                          |  316 |     1112 |         3 |
                          |  315 |     1111 |         3 |
                          |  314 |     1110 |         3 |
                          |  313 |     1109 |         3 |
                          |  312 |     1108 |         3 |
                          |  311 |     1107 |         3 |
                          |  310 |     1106 |         3 |
                          |  309 |     1105 |         3 |
                          |  308 |     1104 |         3 |
                          |  307 |     1103 |         3 |
                          |  306 |     1102 |         3 |
                          |  305 |     1101 |         3 |
                          |  304 |     1100 |         3 |
                          |  303 |     1099 |         3 |
                          |  302 |     1098 |         3 |
                          |  301 |     1097 |         3 |
                          |  300 |     1096 |         3 |
                          |  299 |     1095 |         3 |
                          |  298 |     1094 |         3 |
                          |  349 |     1213 |         3 |
                          |  348 |     1212 |         3 |
                          |  347 |     1211 |         3 |
                          |  346 |     1210 |         3 |
                          |  345 |     1209 |         3 |
                          |  344 |     1208 |         3 |
                          |  343 |     1207 |         3 |
                          |  342 |     1206 |         3 |
                          |  341 |     1205 |         3 |
                          |  340 |     1204 |         3 |
                          |  339 |     1203 |         3 |
                          |  338 |     1202 |         3 |
                          |  337 |     1201 |         3 |
                          |  336 |     1200 |         3 |
                          |  335 |     1199 |         3 |
                          |  334 |     1198 |         3 |
                          |  333 |     1197 |         3 |
                          |  332 |     1196 |         3 |
                          |  331 |     1195 |         3 |
                          |  330 |     1194 |         3 |
                          |  329 |     1193 |         3 |
                          |  328 |     1192 |         3 |
                          |  327 |     1191 |         3 |
                          |  326 |     1190 |         3 |
                          |  325 |     1189 |         3 |
                          |  324 |     1188 |         3 |
                          |  297 |     1093 |         3 |
                          |  296 |     1092 |         3 |
                          |  295 |     1091 |         3 |
                          |  294 |     1090 |         3 |
                          +------+----------+-----------+
                          64 rows in set (0.00 sec)
                          
                          mysql> 
                          
                          Wayne WorkmanW 1 Reply Last reply Reply Quote 0
                          • Wayne WorkmanW
                            Wayne Workman @cojohnson
                            last edited by Wayne Workman

                            @cojohnson All of those are dirty entries that are either hosts with no MAC, or MACs with no host, or associations with no host. They can all be deleted with the below commands. Do me a favor please, and in about a week from now, re-run the earlier commands I asked you to run ( the select ones) and see if there is any output again or not. Also pinging @Tom-Elliott so he’s aware of this.

                            DELETE FROM `hosts` WHERE `hostID` NOT IN (SELECT `hmhostID` FROM `hostMAC`);
                            DELETE FROM `hostMAC` WHERE `hmhostID` NOT IN (SELECT `hostID` FROM `hosts`);
                            DELETE FROM `snapinAssoc` WHERE `saHostID` NOT IN (SELECT `hostID` FROM `hosts`);
                            DELETE FROM `groupMembers` WHERE `gmHostID` NOT IN (SELECT `hostID` FROM `hosts`);
                            

                            Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                            Daily Clean Installation Results:
                            https://fogtesting.fogproject.us/
                            FOG Reporting:
                            https://fog-external-reporting-results.fogproject.us/

                            C 2 Replies Last reply Reply Quote 0
                            • C
                              cojohnson @Wayne Workman
                              last edited by

                              @Wayne-Workman

                              I ran those commands again today after troubleshooting why all computers of one model “HP Stream 11” are not getting their hostnames changed by the FOG Client.

                              Note I still get the “Hostname with that name already exists” error when there are entries for the command:
                              SELECT * FROM hostMAC WHERE hmID = ‘0’ OR hmHostID = ‘0’;

                              Here are the results of the commands

                              mysql> 
                              mysql> SELECT `hostID`, `hostName` FROM `hosts` WHERE `hostID` = '0';
                              +--------+----------+
                              | hostID | hostName |
                              +--------+----------+
                              |      0 |          |
                              +--------+----------+
                              1 row in set (0.00 sec)
                              
                              mysql> SELECT * FROM `hostMAC` WHERE hmID = '0' OR `hmHostID` = '0';
                              +------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                              | hmID | hmHostID | hmMAC             | hmDesc | hmPrimary | hmPending | hmIgnoreClient | hmIgnoreImaging |
                              +------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                              | 2903 |        0 | 18:5e:0f:f0:8d:64 |        | 1         |           |                |                 |
                              | 2904 |        0 | 18:5e:0f:f0:8d:67 |        | 0         | 0         | 0              | 0               |
                              +------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                              2 rows in set (0.00 sec)
                              
                              mysql> SELECT * FROM `groupMembers` WHERE `gmID` = '0' OR `gmHostID` = '0' OR `gmGroupID` = '0';
                              +------+----------+-----------+
                              | gmID | gmHostID | gmGroupID |
                              +------+----------+-----------+
                              |  424 |     1936 |         0 |
                              +------+----------+-----------+
                              1 row in set (0.00 sec)
                              
                              mysql> SELECT * FROM `snapinGroupAssoc` WHERE `sgaID` = '0' OR `sgaSnapinID` = '0' OR `sgaStorageGroupID` = '0';
                              Empty set (0.00 sec)
                              mysql> SELECT * from `snapinAssoc` WHERE `saID` = '0' OR `saHostID` = '0' OR `saSnapinID` = '0'; 
                              +------+----------+------------+
                              | saID | saHostID | saSnapinID |
                              +------+----------+------------+
                              |   71 |     1936 |          0 |
                              +------+----------+------------+
                              1 row in set (0.00 sec)
                              
                              mysql> 
                              
                              
                              Wayne WorkmanW 1 Reply Last reply Reply Quote 0
                              • C
                                cojohnson @Wayne Workman
                                last edited by cojohnson

                                @Wayne-Workman

                                Here is the fog.txt file

                                NOTE At 8:10, I changed the “Ignore MAC on Client” option just to see what would happen.

                                0_1476715181516_Ignore FOG Client.PNG

                                 10/17/2016 8:02 AM Main Overriding exception handling
                                 10/17/2016 8:02 AM Main Bootstrapping Zazzles
                                 10/17/2016 8:02 AM Controller Initialize
                                 10/17/2016 8:02 AM Zazzles Creating main thread
                                 10/17/2016 8:02 AM Zazzles Service construction complete
                                 10/17/2016 8:02 AM Controller Start
                                
                                 10/17/2016 8:02 AM Service Starting service
                                 10/17/2016 8:02 AM Bus Became bus server
                                 10/17/2016 8:02 AM Bus {
                                  "self": true,
                                  "channel": "Status",
                                  "data": "{\r\n  \"action\": \"load\"\r\n}"
                                }
                                 10/17/2016 8:02 AM Bus Emmiting message on channel: Status
                                 10/17/2016 8:02 AM Service Invoking early JIT compilation on needed binaries
                                
                                ------------------------------------------------------------------------------
                                --------------------------------Authentication--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:02 AM Client-Info Version: 0.11.5
                                 10/17/2016 8:02 AM Client-Info OS:      Windows
                                 10/17/2016 8:02 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:02 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:02 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:02 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:02 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:02 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:02 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:02 AM Middleware::Response Invalid security token
                                
                                ------------------------------------------------------------------------------
                                --------------------------------Authentication--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:02 AM Client-Info Version: 0.11.5
                                 10/17/2016 8:02 AM Client-Info OS:      Windows
                                 10/17/2016 8:02 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:04 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:04 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:04 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:04 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:04 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:04 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:04 AM Middleware::Response Invalid security token
                                
                                ------------------------------------------------------------------------------
                                --------------------------------Authentication--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:04 AM Client-Info Version: 0.11.5
                                 10/17/2016 8:04 AM Client-Info OS:      Windows
                                 10/17/2016 8:04 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:06 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:06 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:06 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:06 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:06 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:06 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:06 AM Middleware::Response Invalid security token
                                
                                ------------------------------------------------------------------------------
                                --------------------------------Authentication--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:06 AM Client-Info Version: 0.11.5
                                 10/17/2016 8:06 AM Client-Info OS:      Windows
                                 10/17/2016 8:06 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:08 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:08 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:08 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:08 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:08 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:08 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:08 AM Middleware::Response Invalid security token
                                
                                ------------------------------------------------------------------------------
                                --------------------------------Authentication--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:08 AM Client-Info Version: 0.11.5
                                 10/17/2016 8:08 AM Client-Info OS:      Windows
                                 10/17/2016 8:08 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:10 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:10 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:10 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:10 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:10 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:10 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:10 AM Middleware::Response Invalid security token
                                
                                
                                 10/17/2016 8:10 AM Bus Registering ParseBus in channel Power
                                 10/17/2016 8:10 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                 10/17/2016 8:10 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:12 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:12 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:12 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:12 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:12 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:12 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:12 AM Middleware::Response Invalid security token
                                 10/17/2016 8:12 AM Middleware::Response Success
                                 10/17/2016 8:12 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?clientver&newService&json
                                 10/17/2016 8:12 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?newService&json
                                
                                 10/17/2016 8:12 AM Service Creating user agent cache
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:12 AM Service Initializing modules
                                
                                ------------------------------------------------------------------------------
                                ---------------------------------ClientUpdater--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response Success
                                ------------------------------------------------------------------------------
                                
                                
                                ------------------------------------------------------------------------------
                                ----------------------------------TaskReboot----------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------HostnameChanger-------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ---------------------------------SnapinClient---------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------PrinterManager--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------PowerManagement-------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ----------------------------------UserTracker---------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:12 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:12 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:12 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:12 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:12 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&configure&newService&json
                                 10/17/2016 8:12 AM Middleware::Response Success
                                 10/17/2016 8:12 AM Service Sleeping for 145 seconds
                                 10/17/2016 8:15 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                 10/17/2016 8:15 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:15 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:15 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:15 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:15 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:15 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:15 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:15 AM Middleware::Response Invalid security token
                                 10/17/2016 8:15 AM Middleware::Response Success
                                 10/17/2016 8:15 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?clientver&newService&json
                                 10/17/2016 8:15 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?newService&json
                                
                                 10/17/2016 8:15 AM Service Creating user agent cache
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ---------------------------------ClientUpdater--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response Success
                                ------------------------------------------------------------------------------
                                
                                
                                ------------------------------------------------------------------------------
                                ----------------------------------TaskReboot----------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------HostnameChanger-------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ---------------------------------SnapinClient---------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------PrinterManager--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------PowerManagement-------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ----------------------------------UserTracker---------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:15 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:15 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:15 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:15 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:15 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&configure&newService&json
                                 10/17/2016 8:15 AM Middleware::Response Success
                                 10/17/2016 8:15 AM Service Sleeping for 118 seconds
                                 10/17/2016 8:17 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                 10/17/2016 8:17 AM Middleware::Authentication Waiting for authentication timeout to pass
                                 10/17/2016 8:17 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                 10/17/2016 8:17 AM Data::RSA FOG Server CA cert found
                                 10/17/2016 8:17 AM Middleware::Authentication Cert OK
                                 10/17/2016 8:17 AM Middleware::Authentication ERROR: Could not get security token
                                 10/17/2016 8:17 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                 10/17/2016 8:17 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                 10/17/2016 8:17 AM Middleware::Response Invalid security token
                                 10/17/2016 8:17 AM Middleware::Response Success
                                 10/17/2016 8:17 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?clientver&newService&json
                                 10/17/2016 8:17 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?newService&json
                                
                                 10/17/2016 8:17 AM Service Creating user agent cache
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ---------------------------------ClientUpdater--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response Success
                                ------------------------------------------------------------------------------
                                
                                
                                ------------------------------------------------------------------------------
                                ----------------------------------TaskReboot----------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------HostnameChanger-------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ---------------------------------SnapinClient---------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------PrinterManager--------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                --------------------------------PowerManagement-------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                
                                ------------------------------------------------------------------------------
                                ----------------------------------UserTracker---------------------------------
                                ------------------------------------------------------------------------------
                                 10/17/2016 8:17 AM Client-Info Client Version: 0.11.5
                                 10/17/2016 8:17 AM Client-Info Client OS:      Windows
                                 10/17/2016 8:17 AM Client-Info Server Version: 1.3.0-RC-10
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Unable to get subsection
                                 10/17/2016 8:17 AM Middleware::Response ERROR: Object reference not set to an instance of an object.
                                 10/17/2016 8:17 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&configure&newService&json
                                 10/17/2016 8:17 AM Middleware::Response Success
                                 10/17/2016 8:17 AM Service Sleeping for 98 seconds
                                 10/17/2016 8:18 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                 10/17/2016 8:18 AM Middleware::Authentication Waiting for authentication timeout to pass
                                

                                I do not know where the “18:5E:0F:F0:8D:64” came from in the line

                                 10/17/2016 8:10 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                
                                C:\Users\WCSCC>getmac -v /fo list
                                
                                Connection Name:  Wi-Fi
                                Network Adapter:  Intel(R) Dual Band Wireless-AC 7265
                                Physical Address: 18-5E-0F-F0-8D-63
                                Transport Name:   \Device\Tcpip_{65B67789-0AFC-4AB3-BEDA-EBC5D4D3725D}
                                
                                Connection Name:  Bluetooth Network Connection
                                Network Adapter:  Bluetooth Device (Personal Area Network)
                                Physical Address: 18-5E-0F-F0-8D-67
                                Transport Name:   Media disconnected
                                
                                C:\Users\WCSCC>```
                                Wayne WorkmanW 2 Replies Last reply Reply Quote 0
                                • Wayne WorkmanW
                                  Wayne Workman @cojohnson
                                  last edited by

                                  @cojohnson Pinging @Tom-Elliott so he’s aware. For the time being, please update to RC-14 and see if it’s resolved or not. Tom considers RC-14 to be the most stable version of FOG since FOG 0.32.

                                  Also, again you can run the below delete commands to clean those entries up.

                                  Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                                  Daily Clean Installation Results:
                                  https://fogtesting.fogproject.us/
                                  FOG Reporting:
                                  https://fog-external-reporting-results.fogproject.us/

                                  C 1 Reply Last reply Reply Quote 0
                                  • Wayne WorkmanW
                                    Wayne Workman @cojohnson
                                    last edited by Wayne Workman

                                    @cojohnson said in FOG Registration Error. Hostname with that name already exists:

                                    10/17/2016 8:02 AM Middleware::Response Invalid security token

                                    This is why the FOG Client isn’t working, did you rebuild the FOG Server? Try clicking the “Reset Encryption Data” button for this host in the web gui.

                                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                                    Daily Clean Installation Results:
                                    https://fogtesting.fogproject.us/
                                    FOG Reporting:
                                    https://fog-external-reporting-results.fogproject.us/

                                    1 Reply Last reply Reply Quote 0
                                    • C
                                      cojohnson @Wayne Workman
                                      last edited by

                                      @Wayne-Workman said in FOG Registration Error. Hostname with that name already exists:

                                      Also, again you can run the below delete commands to clean those entries up.

                                      Thank You!!

                                      I cleaned up those entries and updated to the latest version RC-14.

                                      I am currently testing the “Reset Data Encyption” now and will post my results

                                      1 Reply Last reply Reply Quote 0
                                      • Wayne WorkmanW
                                        Wayne Workman @cojohnson
                                        last edited by

                                        @cojohnson said in FOG Registration Error. Hostname with that name already exists:

                                        I do not know where the “18:5E:0F:F0:8D:64” came from in the line

                                        Just wanted to answer that one statement. If you look at the results of the SQL statements you ran, just below, you’ll see that one of the results has that MAC with a host ID of 0, this would of course mess up a ton of stuff in fog.

                                        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
                                        Daily Clean Installation Results:
                                        https://fogtesting.fogproject.us/
                                        FOG Reporting:
                                        https://fog-external-reporting-results.fogproject.us/

                                        C 2 Replies Last reply Reply Quote 0
                                        • C
                                          cojohnson @Wayne Workman
                                          last edited by

                                          @Wayne-Workman

                                          I do not know where the “18:5E:0F:F0:8D:64” came from in the line

                                          Just wanted to answer that one statement. If you look at the results of the SQL statements you ran, just below, you’ll see that one of the results has that MAC with a host ID of 0, this would of course mess up a ton of stuff in fog.

                                          Yeah, that is interesting. I ran a “getmac -v” (included in yesterday’s post) to see a list of the mac addresses and 18-5E-0F-F0-8D-64 was not in the output. I was curious as to where that MAC addreess was coming from.

                                          1 Reply Last reply Reply Quote 0
                                          • C
                                            cojohnson @Wayne Workman
                                            last edited by

                                            @Wayne-Workman OK. I have played around with the “Reset Encryption Data” option. I reset the encryption data of the same computer “HPStream447” from the FOG Web GUI. Then i performed the following steps

                                            1:) i reimaged the computer and the fog client will tell me

                                            10/18/2016 10:49 AM Controller Initialize
                                             10/18/2016 10:49 AM Zazzles Creating main thread
                                             10/18/2016 10:49 AM Zazzles Service construction complete
                                             10/18/2016 10:49 AM Controller Start
                                            
                                             10/18/2016 10:49 AM Service Starting service
                                             10/18/2016 10:49 AM Bus Became bus server
                                             10/18/2016 10:49 AM Bus {
                                              "self": true,
                                              "channel": "Status",
                                              "data": "{\r\n  \"action\": \"load\"\r\n}"
                                            }
                                             10/18/2016 10:49 AM Bus Emmiting message on channel: Status
                                             10/18/2016 10:49 AM Service Invoking early JIT compilation on needed binaries
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------Authentication--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 10:49 AM Client-Info Version: 0.11.5
                                             10/18/2016 10:49 AM Client-Info OS:      Windows
                                             10/18/2016 10:49 AM Middleware::Authentication Waiting for authentication timeout to pass
                                             10/18/2016 10:49 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                             10/18/2016 10:49 AM Data::RSA FOG Server CA cert found
                                             10/18/2016 10:49 AM Middleware::Authentication Cert OK
                                             10/18/2016 10:49 AM Middleware::Authentication ERROR: Could not get security token
                                             10/18/2016 10:49 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                             10/18/2016 10:49 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                             10/18/2016 10:49 AM Middleware::Response #!ist
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------Authentication--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 10:49 AM Client-Info Version: 0.11.5
                                             10/18/2016 10:49 AM Client-Info OS:      Windows
                                             10/18/2016 10:49 AM Middleware::Authentication Waiting for authentication timeout to pass
                                             10/18/2016 10:50 AM Main Overriding exception handling
                                             10/18/2016 10:50 AM Main Bootstrapping Zazzles
                                             10/18/2016 10:50 AM Controller Initialize
                                             10/18/2016 10:50 AM Zazzles Creating main thread
                                             10/18/2016 10:50 AM Zazzles Service construction complete
                                             10/18/2016 10:50 AM Controller Start
                                            
                                             10/18/2016 10:50 AM Service Starting service
                                             10/18/2016 10:50 AM Bus Became bus server
                                             10/18/2016 10:50 AM Bus {
                                              "self": true,
                                              "channel": "Status",
                                              "data": "{\r\n  \"action\": \"load\"\r\n}"
                                            }
                                             10/18/2016 10:50 AM Bus Emmiting message on channel: Status
                                             10/18/2016 10:50 AM Service Invoking early JIT compilation on needed binaries
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------Authentication--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 10:50 AM Client-Info Version: 0.11.5
                                             10/18/2016 10:50 AM Client-Info OS:      Windows
                                             10/18/2016 10:50 AM Middleware::Authentication Waiting for authentication timeout to pass
                                             10/18/2016 10:50 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                             10/18/2016 10:50 AM Data::RSA FOG Server CA cert found
                                             10/18/2016 10:50 AM Middleware::Authentication Cert OK
                                             10/18/2016 10:50 AM Middleware::Authentication ERROR: Could not get security token
                                             10/18/2016 10:50 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                             10/18/2016 10:50 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                             10/18/2016 10:50 AM Middleware::Response #!ist
                                            
                                            ------------------------------------------------------------------------------
                                            

                                            What is Middleware::Response #!ist?

                                            Next, I reseted the data encryption again and the fog client worked Mostly with the exception of a forced reboot to change the hostname.

                                            10/18/2016 11:00 AM Controller Initialize
                                             10/18/2016 11:00 AM Zazzles Creating main thread
                                             10/18/2016 11:00 AM Zazzles Service construction complete
                                             10/18/2016 11:00 AM Controller Start
                                            
                                             10/18/2016 11:00 AM Service Starting service
                                             10/18/2016 11:00 AM Bus Became bus server
                                             10/18/2016 11:00 AM Bus {
                                              "self": true,
                                              "channel": "Status",
                                              "data": "{\r\n  \"action\": \"load\"\r\n}"
                                            }
                                             10/18/2016 11:00 AM Bus Emmiting message on channel: Status
                                             10/18/2016 11:00 AM Service Invoking early JIT compilation on needed binaries
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------Authentication--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info OS:      Windows
                                             10/18/2016 11:00 AM Middleware::Authentication Waiting for authentication timeout to pass
                                             10/18/2016 11:00 AM Middleware::Communication Download: http://10.21.0.105/fog/management/other/ssl/srvpublic.crt
                                             10/18/2016 11:00 AM Data::RSA FOG Server CA cert found
                                             10/18/2016 11:00 AM Middleware::Authentication Cert OK
                                             10/18/2016 11:00 AM Middleware::Authentication ERROR: Could not get security token
                                             10/18/2016 11:00 AM Middleware::Authentication ERROR: Could not find file 'C:\Program Files (x86)\FOG\token.dat'.
                                             10/18/2016 11:00 AM Middleware::Communication POST URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&authorize&newService
                                             10/18/2016 11:00 AM Middleware::Response Success
                                             10/18/2016 11:00 AM Middleware::Authentication Authenticated
                                            
                                            
                                             10/18/2016 11:00 AM Bus Registering ParseBus in channel Power
                                             10/18/2016 11:00 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                             10/18/2016 11:00 AM Middleware::Response Success
                                             10/18/2016 11:00 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?clientver&newService&json
                                             10/18/2016 11:00 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?newService&json
                                            
                                             10/18/2016 11:00 AM Service Creating user agent cache
                                             10/18/2016 11:00 AM Middleware::Response Invalid time
                                             10/18/2016 11:00 AM Middleware::Response No Printers
                                             10/18/2016 11:00 AM Middleware::Response Module is disabled globally on the FOG server
                                             10/18/2016 11:00 AM Service Initializing modules
                                            
                                            ------------------------------------------------------------------------------
                                            ---------------------------------ClientUpdater--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response Success
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            ----------------------------------TaskReboot----------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response Success
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------HostnameChanger-------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response Success
                                             10/18/2016 11:00 AM HostnameChanger Users still logged in and enforce is disabled, delaying any further actions
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            ---------------------------------SnapinClient---------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response No snapins
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------PrinterManager--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response No Printers
                                             10/18/2016 11:00 AM PrinterManager Getting installed printers
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------PowerManagement-------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response Success
                                             10/18/2016 11:00 AM PowerManagement Calculating tasks to unschedule
                                             10/18/2016 11:00 AM PowerManagement Calculating tasks to schedule
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            ----------------------------------UserTracker---------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:00 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:00 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:00 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:00 AM Middleware::Response Success
                                             10/18/2016 11:00 AM Middleware::Communication URL: http://10.21.0.105/fog/service/usertracking.report.php?action=login&user=GENERIC-PC\WCSCC&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                            ------------------------------------------------------------------------------
                                            
                                             10/18/2016 11:00 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&configure&newService&json
                                             10/18/2016 11:00 AM Middleware::Response Success
                                             10/18/2016 11:00 AM Service Sleeping for 98 seconds
                                             10/18/2016 11:02 AM Middleware::Communication URL: http://10.21.0.105/fog/management/index.php?sub=requestClientInfo&mac=18:5E:0F:F0:8D:64|18:5E:0F:F0:8D:63|18:5E:0F:F0:8D:67||00:00:00:00:00:00:00:E0&newService&json
                                             10/18/2016 11:02 AM Middleware::Response Success
                                             10/18/2016 11:02 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?clientver&newService&json
                                             10/18/2016 11:02 AM Middleware::Communication URL: http://10.21.0.105/fog/service/getversion.php?newService&json
                                            
                                             10/18/2016 11:02 AM Service Creating user agent cache
                                             10/18/2016 11:02 AM Middleware::Response Invalid time
                                             10/18/2016 11:02 AM Middleware::Response No Printers
                                             10/18/2016 11:02 AM Middleware::Response Module is disabled globally on the FOG server
                                            
                                            ------------------------------------------------------------------------------
                                            ---------------------------------ClientUpdater--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response Success
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            ----------------------------------TaskReboot----------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response Module is disabled globally on the FOG server
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------HostnameChanger-------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response Success
                                             10/18/2016 11:02 AM HostnameChanger Users still logged in and enforce is disabled, delaying any further actions
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            ---------------------------------SnapinClient---------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response No snapins
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------PrinterManager--------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response No Printers
                                             10/18/2016 11:02 AM PrinterManager Getting installed printers
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            --------------------------------PowerManagement-------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response Success
                                             10/18/2016 11:02 AM PowerManagement Calculating tasks to unschedule
                                             10/18/2016 11:02 AM PowerManagement Calculating tasks to schedule
                                            ------------------------------------------------------------------------------
                                            
                                            
                                            ------------------------------------------------------------------------------
                                            ----------------------------------UserTracker---------------------------------
                                            ------------------------------------------------------------------------------
                                             10/18/2016 11:02 AM Client-Info Client Version: 0.11.5
                                             10/18/2016 11:02 AM Client-Info Client OS:      Windows
                                             10/18/2016 11:02 AM Client-Info Server Version: 1.3.0-RC-14
                                             10/18/2016 11:02 AM Middleware::Response Success
                                            ------------------------------------------------------------------------------
                                            

                                            0_1476805503524_Force_Reboot.PNG

                                            Is there a way to “Reset Data Encryption” from my windows hosts for automation?

                                            Wayne WorkmanW 2 Replies Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 3 / 4
                                            • First post
                                              Last post

                                            178

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project