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

    no default.ipxe

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    4
    18
    4.7k
    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.
    • J
      jdmg94 @Sebastian Roth
      last edited by jdmg94

      @Sebastian-Roth Hey Sebastian, Thank you for your reply, I tried setting the ip addresses as you said but dhcp keeps giving me a “Failed!” message even though when I check the service status its running and no default.ipxe yet, is there a way for me to write it by myself?

      I tried uninstalling dhcp as well with the same results

      0_1459374213425_Capturef4.PNG

      PS: I’m a developer as well and I really like this project

      1 Reply Last reply Reply Quote 0
      • S
        Sebastian Roth Moderator
        last edited by Sebastian Roth

        @jdmg94 said:

        I’m a developer as well and I really like this project

        You are more than welcome to join the team! There is no obligation. Start with helping to answer questions in the forums and feel free to work on the code as well if you like. Just let us know.

        Regarding your DHCP server setup problem… check the error logs. Should be in the directory you called the installer from (current working dir when running installfog.sh)!

        default.ipxe looks like this (change to match your IP!):

        #!ipxe
        cpuid --ext 29 && set arch x86_64 || set arch i386
        params
        param mac0 ${net0/mac}
        param arch ${arch}
        param platform ${platform}
        param product ${product}
        param manufacturer ${product}
        param ipxever ${version}
        param filename ${filename}
        isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
        isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
        :bootme
        chain http://192.168.1.1/fog/service/ipxe/boot.php##params
        

        But I am sure you will see other issues as the installer is not finishing properly (still missing after the DHCP stuff: configureTFTPandPXE, configureFTP, configureSnapins, configureUDPCast, installInitScript, installFOGServices, configureFOGService, configureNFS - you don’t wanna do this all by hand…)

        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 @Sebastian Roth
          last edited by Wayne Workman

          @Sebastian-Roth said:

          @jdmg94 From the screenshot we see that the installer did not finish properly. It failed on setting up DHCP.

          Wow how’d I miss that? lol. Today has been a very looong day.

          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/

          J 1 Reply Last reply Reply Quote 0
          • J
            jdmg94 @Wayne Workman
            last edited by

            @Wayne-Workman

            no worries I checked the error log, and it may have been a typo the error is the following:

            
            
            Starting dhcpd: ^[[60G[^[[0;32m  OK  ^[[0;39m]
            status: unrecognized service
            
            

            so I’m assumming someone typed

            sudo service **dhcp** status
            

            instead of

            sudo service **dhcpd** status
            
            

            I’ll check the install script and get back to you guys.

            1 Reply Last reply Reply Quote 0
            • S
              Sebastian Roth Moderator
              last edited by

              @jdmg94 Should be dhcpd for CentOS, see in lib/redhat/config.sh (second line from last).

              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
              • S
                Sebastian Roth Moderator
                last edited by

                @jdmg94 I think you found a bug which nobody has noticed for quite some time… see my patch - I guess you can add this yourself and let the installer run again!

                @Tom-Elliott (untested) patch proposal:

                diff --git a/lib/common/functions.sh b/lib/common/functions.sh
                index 7f9347f..2aaea23 100755
                --- a/lib/common/functions.sh
                +++ b/lib/common/functions.sh
                @@ -1878,7 +1878,7 @@ configureDHCP() {
                                             sleep 2
                                             service $dhcpd start >>$workingdir/error_logs/fog_error_${version}.log 2>&1
                                             sleep 2
                -                            service status $dhcpd >>$workingdir/error_logs/fog_error_${version}.log 2>&1
                +                            service $dhcpd status >>$workingdir/error_logs/fog_error_${version}.log 2>&1
                                             ;;
                                         2)
                                             sysv-rc-conf $dhcpd on >>$workingdir/error_logs/fog_error_${version}.log 2>&1
                

                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

                Tom ElliottT J 2 Replies Last reply Reply Quote 0
                • Tom ElliottT
                  Tom Elliott @Sebastian Roth
                  last edited by

                  @Sebastian-Roth derp guessing I was in systemctl mode thinking lol.

                  Fix coming shortly.

                  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
                  • J
                    jdmg94 @Sebastian Roth
                    last edited by

                    @Sebastian-Roth yay contributing! Thanks guys! It’s working now

                    1 Reply Last reply Reply Quote 0
                    • S
                      Sebastian Roth Moderator
                      last edited by Sebastian Roth

                      @Tom-Elliott said:

                      derp guessing I was in systemctl mode thinking lol.

                      I guess so… 🙂 Funny thing is that this was wrong for months and no one noticed. In earlier versions (before NYE) we even had sysvinit and systemctl mixed up…

                                  chkconfig $dhcpd on >/dev/null 2>&1
                                  service $dhcpd restart >/dev/null 2>&1
                                  sleep 2
                                  systemctl status $dhcpd >/dev/null 2>&1
                      

                      😄

                      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
                        last edited by

                        It only shows we need a lot more testing. I plan on hopping onto the Ubuntu/Debian wagon soon to bang out some tutorials and videos, but I’m busy getting a fog-dhcp plugin / service / interface put together.

                        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
                        • 1 / 1
                        • First post
                          Last post

                        142

                        Online

                        12.1k

                        Users

                        17.3k

                        Topics

                        155.3k

                        Posts
                        Copyright © 2012-2024 FOG Project