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

Full Registration, causing rogue snapins to apply

Scheduled Pinned Locked Moved Solved
FOG Problems
3
20
3.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.
  • A
    adukes40
    last edited by Sep 23, 2016, 6:09 PM

    Server
    • FOG Version: Pull version 57
    • OS: Ubuntu 14.04
    Client
    • Service Version: 11.2
    • OS: Win 7
    Description

    Registering hosts through the PXE menu is causing the same snapins to apply even though they are not the ones being told to associate. Here is what I mean

    I go to Full Reg a machine. Image ID, location ID, Hostname, stick and work. When it comes time for snapins, we apply 3 for every machine. Those 3 get applied, but then about another 4-5 snapins get applied as well in the background. When we go to deploy this image it will not complete due to the confusion I suppose. Now if w go into the GUI, and remove the extra ones, and update, it sticks and go through fine. But for some reason if Reg thru PXE, more than the set snapins are getting assigned. Here is a SS of one I Registered today:

    0_1474654028045_upload-b99b4c4e-ea20-45ae-aef4-5fef5095644f

    This only ones that should be showing are 1-TS-140, 2-InstallScript1, and 2-InstallScript3 The other appear as associated as well.

    As a side note, those extra ones, were machines imaged when my earlier snapin issue were occurring within the past week.

    1 Reply Last reply Reply Quote 0
    • T
      Tom Elliott
      last edited by Sep 24, 2016, 8:43 PM

      The issue it think was a problem with the object not being truly deleted. It would create the item in the db and any prior associations but would fail to link the Mac. This left the hostname in the system as well as any other associations that were created, even accidentally.

      Im pretty sure this is fixed now though

      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

      A 1 Reply Last reply Sep 26, 2016, 7:48 PM Reply Quote 0
      • A
        adukes40 @Tom Elliott
        last edited by adukes40 Sep 26, 2016, 1:50 PM Sep 26, 2016, 7:48 PM

        @Tom-Elliott Registered new machine today. The stuck associations still happen, and a couple more have made their way into the list now on top of the ones from last time.

        ON RC-11

        1 Reply Last reply Reply Quote 0
        • T
          Tom Elliott
          last edited by Sep 27, 2016, 10:42 AM

          I cannot replicate.

          My steps to try to replicate were to make some “rogue” snapins that had no real definitions.

          You might try:

          DELETE FROM snapinAssoc WHERE saHostID NOT IN (SELECT hostID FROM hosts);

          in a mysql cli shell.

          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

          A 1 Reply Last reply Sep 27, 2016, 11:36 AM Reply Quote 0
          • A
            adukes40 @Tom Elliott
            last edited by Sep 27, 2016, 11:36 AM

            @Tom-Elliott Here is the Process that we are doing that seems to be causing it to happen (haven’t done the cli command yet)

            1. Image random machine with snapin A, B, and C
            2. image completes
            3. Go to register new machine with snapin D, B and C
              (B and C are on every host)
            4. New machine now has snapins A, B, C, and D

            Now here is what I do not know, and can try to test today

            I am unsure if the snapins being added are also machines that have been registered thru PXE, and those are the ones get stuck in this oddity. If I add snapins manually, thru the GUI, it seems to work fine.

            T 1 Reply Last reply Sep 27, 2016, 11:40 AM Reply Quote 0
            • T
              Tom Elliott @adukes40
              last edited by Sep 27, 2016, 11:40 AM

              @adukes40 I believe the issue was the same as before I figured out the issue with the random disassociations/associations.

              The working-RC-11 side of things had a bug in how it was interpreting code. Basically it wasn’t cleaning up for the next loop cycle. This caused random pieces of data to get inserted/removed unexpectedly.

              I suspect you had more random associations due to this which are only showing up as you register new hosts.

              If you run the mysql statement before, my guess is you’ll see quite a few items being cleaned 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! 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

              A 1 Reply Last reply Sep 27, 2016, 11:43 AM Reply Quote 0
              • A
                adukes40 @Tom Elliott
                last edited by Sep 27, 2016, 11:43 AM

                @Tom-Elliott You mean the DELETE mysql statement?

                And the (SELECT hostID FROM hosts) sections is part I just run in the command correct? Im not actually getting hostID from the hosts table?

                T 1 Reply Last reply Sep 27, 2016, 11:48 AM Reply Quote 0
                • T
                  Tom Elliott @adukes40
                  last edited by Sep 27, 2016, 11:48 AM

                  @adukes40 It’s a single statement.

                  DELETE FROM snapinAssoc WHERE saHostID NOT IN (SELECT hostID FROM hosts);

                  You can also try:
                  DELETE FROM snapinAssoc WHERE saSnapinID NOT IN (SELECT sID FROM snapins);

                  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

                  A 1 Reply Last reply Sep 27, 2016, 11:53 AM Reply Quote 0
                  • A
                    adukes40 @Tom Elliott
                    last edited by adukes40 Sep 27, 2016, 5:53 AM Sep 27, 2016, 11:53 AM

                    @Tom-Elliott

                    Database changed
                    mysql> DELETE FROM snapinAssoc WHERE saHostID NOT IN (SELECT hostID FROM hosts);
                    Query OK, 0 rows affected (0.02 sec)

                    mysql> DELETE FROM snapinAssoc WHERE saSnapinID NOT IN (SELECT sID FROM snapins);
                    Query OK, 1 row affected (0.01 sec)

                    mysql>

                    T 1 Reply Last reply Sep 27, 2016, 11:57 AM Reply Quote 0
                    • T
                      Tom Elliott @adukes40
                      last edited by Sep 27, 2016, 11:57 AM

                      @adukes40 So I’m just guessing, that Snapin D in your case was probably that one item?

                      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

                      A 2 Replies Last reply Sep 27, 2016, 11:58 AM Reply Quote 0
                      • A
                        adukes40 @Tom Elliott
                        last edited by Sep 27, 2016, 11:58 AM

                        @Tom-Elliott I will test some registrations today and see what happens. Getting bombed with early morning emails at the moment.

                        1 Reply Last reply Reply Quote 0
                        • A
                          adukes40 @Tom Elliott
                          last edited by Sep 27, 2016, 1:03 PM

                          @Tom-Elliott Just had a Tech register a machine today. Same outcome all the previous snapins, plus a new one from the room they were in this morning.

                          Havent had time ti test anything else yet.

                          1 Reply Last reply Reply Quote 0
                          • A
                            adukes40
                            last edited by Sep 27, 2016, 1:37 PM

                            Ok, just tested this myself.

                            Soo… went to a machine. Registered it with snapin that wasn’t currently in the “rogue” list. When I check the snapins, the new snapin shows, along with the like 8 others, plus the 2 every machine gets. Which mean the next time a machines Regs thru PXE, it will be getting that snapin plus the other stuck in the loop.

                            W 1 Reply Last reply Sep 27, 2016, 7:13 PM Reply Quote 0
                            • W
                              Wayne Workman @adukes40
                              last edited by Sep 27, 2016, 7:13 PM

                              @adukes40 This is probably because your DB is still dirty. we need to figure out some queries that will clean it 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/

                              T 1 Reply Last reply Sep 27, 2016, 7:23 PM Reply Quote 0
                              • T
                                Tom Elliott @Wayne Workman
                                last edited by Tom Elliott Sep 27, 2016, 1:24 PM Sep 27, 2016, 7:23 PM

                                @Wayne-Workman I say simplest would be to truncate snapinAssoc snapinJobs and snapinTasks then rrapply

                                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
                                • A
                                  adukes40
                                  last edited by Sep 27, 2016, 7:27 PM

                                  There other I am seeing is sometimes the 1- snapins remove themselves from association after an image. I am looking at two hosts, where that just happened. 1- removes itself, but 2- and 3- always stay.

                                  1 Reply Last reply Reply Quote 0
                                  • T
                                    Tom Elliott
                                    last edited by Sep 27, 2016, 8:42 PM

                                    @adukes40 had me remote in. We found about 3200 + hosts that hadn’t been properly removed. The older db crud was still left over though which was why it seems to be “rogue” items. Removed the “bad” hosts and all seemed to correct itself.

                                    I’m going to resolve for now.

                                    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

                                    A 1 Reply Last reply Oct 3, 2016, 2:14 PM Reply Quote 1
                                    • A
                                      adukes40 @Tom Elliott
                                      last edited by Oct 3, 2016, 2:14 PM

                                      @Tom-Elliott Its doing it again.

                                      T 1 Reply Last reply Oct 3, 2016, 3:01 PM Reply Quote 0
                                      • T
                                        Tom Elliott @adukes40
                                        last edited by Oct 3, 2016, 3:01 PM

                                        @adukes40 What’s happening again? All nodes are at the same version?

                                        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

                                        A 1 Reply Last reply Oct 3, 2016, 3:05 PM Reply Quote 0
                                        • A
                                          adukes40 @Tom Elliott
                                          last edited by adukes40 Oct 3, 2016, 9:06 AM Oct 3, 2016, 3:05 PM

                                          @Tom-Elliott All nodes at RC-11, It back to assigning recently used snapin associations from recent image deployments

                                          0_1475507131758_upload-32d5e685-9979-44a5-844e-e07b3c6cd59b

                                          Nothing has changed here. Just going about day-to-day operation. Tried with same host name, and never before used host name, same result.

                                          1 Reply Last reply Reply Quote 0
                                          • 1 / 1
                                          1 / 1
                                          • First post
                                            13/20
                                            Last post

                                          190

                                          Online

                                          12.0k

                                          Users

                                          17.3k

                                          Topics

                                          155.2k

                                          Posts
                                          Copyright © 2012-2024 FOG Project