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

    Multicast-Unable to find image

    Scheduled Pinned Locked Moved
    FOG Problems
    4
    22
    2.8k
    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
      amartinez @Sebastian Roth
      last edited by

      @sebastian-roth
      This is the new log at the master node:Unable_to_find_image_path_edit.jpg

      Thanks you!!

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

        @amartinez I hate to sound like I’m stating the obvious here, but does the image path that you’re trying to deploy from that node actually exist?

        /images/<pathToImage>

        The message is pretty descript. Even the code that handles it is extremely simplistic:

        if (!file_exists($fullPath)) {
            self::outall(_(' | Unable to find image path'));
            continue;
        }
        

        Now there’s still the potential that the image path exists on the server, but that the permissions are setup incorrectly on that node which might give the same type of message. But this is extremely non-typical.

        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 Reply Quote 0
        • A
          amartinez @Tom Elliott
          last edited by

          @tom-elliott Yes, the image path exist…and when we send under unicast this image all is ok. Dont works with multicast.
          Thanks you!!

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

            @amartinez When you send it under unicast on this specific node?

            Can you edit the file /var/www/fog/lib/service/multicasttask.class.php at line 104 change

            From self::outall(_(' | Unable to find image path'));
            To self::outall(_(' | Unable to find image path ' . $fullPath));

            Then run: systemctl restart FOGMulticastManager.service and tail the /var/log/fog/multicast.log

            It should show the actual path. When you see the actual path, can you please run an ls -lart <path> replacing <path> with whatever is the $fullPath variable and place it here.

            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 Reply Quote 0
            • A
              amartinez @Tom Elliott
              last edited by

              @tom-elliott

              This is the output at the fog-server:

              ls-lart.JPG

              but the image is in the node not in the server:
              Imagenes_nodoM_editado.jpg

              I remember:
              -We have a Fog Server: A

              • And 2 nodes: B, C

              The images are in nodes: B,C. Not at fog-server A

              Thanks you in advance!!!

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

                @amartinez Multicast works by using the “Master” node. So the issue you’re seeing is exactly because that’s how it’s supposed to work.

                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 Reply Quote 0
                • A
                  amartinez @Tom Elliott
                  last edited by

                  @tom-elliott
                  I dont understand…Is all ok?

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

                    @amartinez What I’m saying is if you want to multicast an image, the server it’s being “multicast” from has to be a master node. The reason we do this is because if we didn’t, all storage nodes would blast each network the node resides on with Multicast traffic, causing major network issues.

                    So the fact that you’re seeing “Unable to find image path” is because the image doesn’t exist on the server that is doing the multicast task. (This is intended behavior.) You could break out your other storage nodes to different groups and make the other nodes masters of the group their own.

                    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 Reply Quote 0
                    • A
                      amartinez @Tom Elliott
                      last edited by

                      @tom-elliott
                      ok…but the multicast not start.
                      Node B IP: x.x.122.2
                      Node C IP: X.X.122.5
                      Master-Node IP: X.X.122.10
                      All in the same VLAN.
                      When we start unicast session all ok:
                      unicast_ok_modificado.jpg
                      When we try multicast not start:
                      multicast_no_arranca_modificado.jpg

                      Thanks you for your patient!!!

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

                        @amartinez based on what I can tell, this is a different issue. Can you output the multicast logs on this image? We should see the command being used or maybe not being started causing the issue you’re currently seeing 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 Reply Quote 0
                        • A
                          amartinez @Tom Elliott
                          last edited by

                          @tom-elliott
                          This is the multicast.log from Node where is the image:

                          Multicast_waiting_for_mysql_nodo_montes.JPG

                          And this is the multicast.log from Fog-server-Master:
                          multicast_unable_to_find_image_path.JPG

                          when we send the multicast task.

                          With unicast works fine.

                          Thanks you!!

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

                            @amartinez I understand unicast works fine. The two methods are different, there is no need to continually repeat it.

                            The log from the node that has the image is showing that it’s awaiting MySQL to become available.

                            From the storage node, please know that 1.5.9 (main server with image does not exist error) and 1.5.2 (node that’s trying to multicast with the image) are not very compatible with one another.
                            I believe in 1.5.7 we changed how nodes communicate to the database. As you have a central server with subordinate nodes, I would highly suggest updating the other nodes to the same version. Your main server is running.

                            This is what @Sebastian-Roth was trying to allude to earlier.

                            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 Reply Quote 0
                            • A
                              amartinez @Tom Elliott
                              last edited by

                              @tom-elliott I’m sorry for the repetitions…
                              So, we need update nodes with 1.5.2 to 1.5.9.
                              Thanks for your help!!.

                              .

                              A 1 Reply Last reply Reply Quote 0
                              • A
                                amartinez @amartinez
                                last edited by

                                @amartinez Hello, one year later…: We have updated nodes (B,C) to fog version 1.5.9. Now, all is in version 1.5.9. But…we can’t do work multicast!!.
                                This is the server configuration:
                                Multicast_setting_modificada.jpg
                                This is the master log:
                                Server_Fog_Multicast_no_funciona_2022.JPG
                                And this is the node log (where is the image):
                                multicat_No_funcionando_nodoMontes_2022_modificada2.jpg

                                Thanks for your help!!

                                A 1 Reply Last reply Reply Quote 0
                                • A
                                  amartinez @amartinez
                                  last edited by

                                  @amartinez Hello, I found this in this forum: “The storage nodes don’t have multicasting capabilities. So storage nodes are limited to unicast imaging.” It’s correct?

                                  george1421G 1 Reply Last reply Reply Quote 0
                                  • george1421G
                                    george1421 Moderator @amartinez
                                    last edited by

                                    @amartinez said in Multicast-Unable to find image:

                                    So storage nodes are limited to unicast imaging

                                    That is correct. Storage nodes are kind of like a network drive for remote locations. They are missing the active services bits that make them a full fog server.

                                    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!

                                    1 Reply Last reply Reply Quote 0
                                    • 1
                                    • 2
                                    • 1 / 2
                                    • First post
                                      Last post

                                    173

                                    Online

                                    12.0k

                                    Users

                                    17.3k

                                    Topics

                                    155.2k

                                    Posts
                                    Copyright © 2012-2024 FOG Project