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

System Hangs - Boot from SAN device

Scheduled Pinned Locked Moved Solved
FOG Problems
3
24
5.3k
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.
  • D
    dholtz-docbox
    last edited by dholtz-docbox Oct 6, 2016, 9:36 AM Oct 6, 2016, 2:33 PM

    Server
    • FOG Version: 1.3.0-RC11
    • OS: Ubuntu 14.04
    Description

    When this system boots into PXE and has no tasks, it hangs after prompting, “Boot from SAN device 0X80.” I have read several articles related to resolving this, and they have not been very successful.

    For starts, here is the output of: fog/service/ipxe/boot.php?mac=…&arch=x86_64…

    #!ipxe
    set fog-ip 10.1.10.42
    set fog-webroot fog
    set boot-url http://${fog-ip}/${fog-webroot}
    sanboot --no-describe --drive 0x80
    

    I have configured everything to boot with EXIT, so I am not sure why it is still trying to boot with SANBOOT either.

    I have…

    • Configured everything to boot with EXIT, but the host seems unaffected
    • Checked the SATA configuration - it is set to IDE
    • Checked the BIOS for SECURE BOOT - there is no option for SECURE BOOT

    Another item to note, the system has two drives. Would drive ordering matter? Only one drive has a bootable OS, and has no issue booting without going through PXE.

    This will probably be my next test, changing the drive boot order - we boot off the second drive, for this system.

    edit: The boot order is irrelevant. I am also currently reading through: https://forums.fogproject.org/topic/5607/stuck-uploading-image-booting-from-san-device0x80 - it has been the most relevant so far.

    -Dustin

    1 Reply Last reply Reply Quote 0
    • D
      dholtz-docbox
      last edited by Oct 6, 2016, 7:49 PM

      Okay… I may have solved this at the end of the day, finally.

      I believe it was a sequence of a few items not matching up once I tested certain phases. In the end, I had to switch the boot priority so that the drive with the OS had priority over the data drive. I tried this earlier, but it was after already moving past SANBOOT and when looking into EXIT as an option instead. Now that I have corrected the drive and changed the boot priority, SANBOOT is functioning as intended. I will do a few more tests before I officially resolve this, so I will post back by tomorrow morning on my results - time is limited today.

      -Dustin

      1 Reply Last reply Reply Quote 2
      • D
        dholtz-docbox
        last edited by Oct 6, 2016, 3:25 PM

        So I took a look at what service/ipxe/boot.php did, and had a question/concern looking at lib/fog/bootmenu.php. In the constructor, _exitTypes is defined as…

        self::$_exitTypes = array(
                    'sanboot' => $sanboot,
                    'grub' => $grub['basic'],
                    'grub_first_hdd' => $grub['basic'],
                    'grub_first_cdrom' => $grub['1cd'],
                    'grub_first_found_windows' => $grub['1fw'],
                    'refind_efi' => $refind,
        );
        

        Shouldn’t this also include the ‘exit’ type? I was trying to determine why it ignored my request for the ‘exit’ type in lieu of ‘sanboot’, and wasn’t sure if this was why just yet. I am still reading through the code to better understand the process though.

        -Dustin

        1 Reply Last reply Reply Quote 0
        • T
          Tom Elliott
          last edited by Oct 6, 2016, 3:36 PM

          Yes it should.

          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
          • D
            dholtz-docbox
            last edited by Oct 6, 2016, 3:43 PM

            Did it get removed at some point? Looking at the GIT trunk reflects this as well: https://github.com/FOGProject/fogproject/blob/2718a13d2bd11d4d9ccd4be7f2f005a67000da3e/packages/web/lib/fog/bootmenu.class.php. What should it be updated to reflect? Because exit is not present in the array, I believe it hits @ l.339 …

                    if (!$exit || !in_array($exit, array_keys(self::$_exitTypes))) {
                        $exit = 'sanboot';
                    }
            

            … and defaults to sanboot instead of the selected exit type.

            -Dustin

            D T 2 Replies Last reply Oct 6, 2016, 3:47 PM Reply Quote 0
            • D
              dholtz-docbox @dholtz-docbox
              last edited by dholtz-docbox Oct 6, 2016, 9:50 AM Oct 6, 2016, 3:47 PM

              I am going to perform a test, defaulting it to ‘exit’ in the event that the type is unknown. I will be right back.

              edit: Well, that certainly eliminated the hangup, but the system fails during chain-loading now and enters a reboot loop.

              -Dustin

              1 Reply Last reply Reply Quote 0
              • T
                Tom Elliott @dholtz-docbox
                last edited by Oct 6, 2016, 3:48 PM

                @dholtz-docbox I corrected this for the current “working-RC-12” branch in git.

                You should have this all fixed if you run:

                wget -O /var/www/fog/lib/fog/bootmenu.class.php https://raw.githubusercontent.com/FOGProject/fogproject/0c8cf54f35f694504af9af5e9fcd525d2521ae60/packages/web/lib/fog/bootmenu.class.php

                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 1
                • D
                  dholtz-docbox
                  last edited by Oct 6, 2016, 4:09 PM

                  Oh, awesome! Let me give it a whirl!

                  -Dustin

                  1 Reply Last reply Reply Quote 0
                  • D
                    dholtz-docbox
                    last edited by dholtz-docbox Oct 6, 2016, 10:22 AM Oct 6, 2016, 4:20 PM

                    First, we aren’t quite there yet. Second, things have progressed I believe.

                    boot.php now returns…

                    #!ipxe
                    set fog-ip 10.1.10.42
                    set fog-webroot fog
                    set boot-url http://${fog-ip}/${fog-webroot}
                    exit
                    

                    However, there is still a chain-loading issue. I am unsure if this is in the boot class or not - I assume it is, given its proximity. That said, I am not sure at what step it has a chain-loading issue yet.

                    edit: I am still using RC11, should I try pulling down the dev-RC12 branch in its entirety and applying it?

                    -Dustin

                    T 1 Reply Last reply Oct 6, 2016, 4:40 PM Reply Quote 0
                    • D
                      dholtz-docbox
                      last edited by dholtz-docbox Oct 6, 2016, 10:35 AM Oct 6, 2016, 4:33 PM

                      I see where it chains into boot.php in the /tftpboot directory, but am fumbling around determining what it is trying to chain into next still. I feel like this is the end of its chain, but it doesn’t realize it - when using exit.

                      edit: I stumbled across the following document and am trying it: https://wiki.fogproject.org/wiki/index.php?title=Boot_looping_and_Chainloading

                      -Dustin

                      1 Reply Last reply Reply Quote 0
                      • T
                        Tom Elliott @dholtz-docbox
                        last edited by Oct 6, 2016, 4:40 PM

                        @dholtz-docbox Based on what I can see, you’re running in “no-menu” mode?

                        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

                        D 1 Reply Last reply Oct 6, 2016, 4:40 PM Reply Quote 0
                        • D
                          dholtz-docbox @Tom Elliott
                          last edited by Oct 6, 2016, 4:40 PM

                          @Tom-Elliott : Correct.

                          -Dustin

                          T 1 Reply Last reply Oct 6, 2016, 4:41 PM Reply Quote 0
                          • T
                            Tom Elliott @dholtz-docbox
                            last edited by Oct 6, 2016, 4:41 PM

                            @dholtz-docbox So when is it getting the “chainload” error?

                            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

                            D 1 Reply Last reply Oct 6, 2016, 4:42 PM Reply Quote 0
                            • D
                              dholtz-docbox @Tom Elliott
                              last edited by Oct 6, 2016, 4:42 PM

                              @Tom-Elliott : After executing boot.php. Let me go take a picture of it with my phone.

                              -Dustin

                              1 Reply Last reply Reply Quote 0
                              • T
                                Tom Elliott
                                last edited by Oct 6, 2016, 4:42 PM

                                You might need to try:

                                http://fogserverIP/fog/service/ipxe/boot.php?mac=<macofhosttryingtoboot> (Of course replacing the <macofhosttryingtoboot> with the mac of the host trying to boot)

                                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
                                • D
                                  dholtz-docbox
                                  last edited by dholtz-docbox Oct 6, 2016, 11:15 AM Oct 6, 2016, 4:44 PM

                                  Yeah, that was what the output below was from, actually.

                                  #!ipxe
                                  set fog-ip 10.1.10.42
                                  set fog-webroot fog
                                  set boot-url http://${fog-ip}/${fog-webroot}
                                  exit
                                  

                                  edit: I hit ‘s’ to enter PXE before booting, otherwise it stated that chainloading failed…

                                  http://imgur.com/a/IiYP0

                                  -Dustin

                                  T 1 Reply Last reply Oct 6, 2016, 4:48 PM Reply Quote 0
                                  • T
                                    Tom Elliott @dholtz-docbox
                                    last edited by Oct 6, 2016, 4:48 PM

                                    @dholtz-docbox Can you check the apache error logs then? If the error is still “chainloading…s to continue” or whatever it is, likely there’s some error being displayed that’s “breaking” things right 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

                                    D 1 Reply Last reply Oct 6, 2016, 4:53 PM Reply Quote 0
                                    • D
                                      dholtz-docbox @Tom Elliott
                                      last edited by Oct 6, 2016, 4:53 PM

                                      @Tom-Elliott : Okay. Let me purge this log and get a clean log for you.

                                      -Dustin

                                      1 Reply Last reply Reply Quote 0
                                      • D
                                        dholtz-docbox
                                        last edited by dholtz-docbox Oct 6, 2016, 11:05 AM Oct 6, 2016, 5:05 PM

                                        @Tom-Elliott : I unfortunately have no errors in my /var/log/apache2/error.log file after cleaning it and running through the process again. Would they be generated somewhere else?

                                        -Dustin

                                        1 Reply Last reply Reply Quote 0
                                        • D
                                          dholtz-docbox
                                          last edited by Oct 6, 2016, 6:59 PM

                                          I tried playing around with other types, and none appear to work. The machine uses GRUB boot loader, so I thought I would try to boot into GRUB, but it leaves me in the GRUB interface where I appear to be able to do nothing. I am not quite sure how to configure this so that it boots into the drive directly when no tasks are present.

                                          -Dustin

                                          1 Reply Last reply Reply Quote 0
                                          • D
                                            dholtz-docbox
                                            last edited by Oct 6, 2016, 7:21 PM

                                            I have new errors after reformatting the machine in question and starting over. To iterate, the machine has two drives, is running Ubuntu Server 14.04, and is a LVM installation. The first drive is ignored, so I am using Single Disk - Resizable, setting its Primary Disk to /dev/sdb. Last, the host is set to exit its BIOS w/ type SANBOOT.

                                            If there is a task to capture an image, there is no issue from what I can tell. The machine boots into Partimage and begins cloning /dev/sdb without issues. However, when I go to boot into the system w/o tasks, the system NEVER boots properly.

                                            So… the new error. Upon reformatting, I switched the BIOS exit type back to SANDISK - after exhausting the initial selections prior. This time when I boot into the system, I am prompted with the following messages…

                                            Booting from SAN device 0x80
                                            Boot from SAN device 0x80 failed: Exec format error (http://ipxe.org/2e852001)
                                            Could not boot: Exec format error (http://ipxe.org/2e852001)
                                            Could not boot: Exec format error (http://ipxe.org/2e852001)
                                            

                                            Looking into what this error means, so far I am reading that it regards the kernel. This doesn’t make sense to me. I am not sure why the system can’t just resume its boot process, I guess; or what the impediment is - when using BIOS exit type = ‘EXIT’ - if that is the standard course of action.

                                            -Dustin

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

                                            141

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project