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

    Fog wont install

    Scheduled Pinned Locked Moved
    FOG Problems
    4
    93
    61.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.
    • M
      mlb2009
      last edited by

      Fog is not installing still,but mysql is intsalled perfectly

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

        Okay,

        So now that we know mysql is installed and working (how btw?) what’s the error’s you’re getting with installing 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! 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
        • M
          mlb2009
          last edited by

          it says i dont have mysql installed and when it download and installs the packages it wont say Skipping:MySQL (Alrerdy installed) I tried 2 times,but with the same error

          1 Reply Last reply Reply Quote 0
          • M
            mlb2009
            last edited by

            By the way,Am i supposed to use my public ip? (unrelated)

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

              Your public IP is not what should be used. You would use the IP address your fog server is setup for within your internal network (the network you’re trying to image from).

              Can you do me a favor and check the install. I’ll download a copy of the tar file and see what it’s doing as well, but I’ve never seen any issues with it before. Maybe it’s forgetting a part for Fedora 19 which is RH Based.

              I’ll double check, but do you know how to edit the files?

              From the install folder, look within for a folder that contains redhat and which files do the install process. I will get back here with the info, but it’s going to be a little bit.

              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
              • Tom ElliottT
                Tom Elliott
                last edited by

                Okay, looking into this, I don’t think there’s an issue with the default installation files for redhat. Fedora 19 should use the yum install mysql mysql-server and the configuration is chkconfig mysqld on; service mysqld restart which, you stated, works fine for your system.

                However, it may have an issue because it’s trying to restart the service from your public IP address, which would cause a failure as it, theoretically, can’t access from that point.

                Try not using your public IP address and use your server’s internal IP address during the setup. Hopefully this helps out.

                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
                • M
                  mlb2009
                  last edited by

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • M
                    mlb2009
                    last edited by

                    I know how to edit them,but i don’t know where to edit them.Also,where do i find my servers internal ip

                    1 Reply Last reply Reply Quote 0
                    • M
                      mlb2009
                      last edited by

                      This post is deleted!
                      1 Reply Last reply Reply Quote 0
                      • Tom ElliottT
                        Tom Elliott
                        last edited by

                        Is your fog server connected directly to the internet? You understand linux and the command line?

                        The way to obtain your systems IP (which you should have setup statically) is to run:
                        ifconfig
                        If you have multiple interfaces, you’ll need to figure out which interface you’re trying to use and use the IP associated with that.

                        I assume your IP is going to be in the range of 192.168.1.2 thru 192.168.1.254 as you put your router and dns server as 192.168.1.1

                        Your files to be edited should be located in:
                        <locationOfFogInstallFolder>/lib/redhat

                        There are two files in there which I forget the names of.

                        However, if my memory serves me correctly, when you do the install, it should ask you what you want to set your IP up as, and it defaults to your systems IP, so unless your FOG server is directly connected to the Modem, it should have a private IP address assigned to it already. I’d recommend, until you understand what this software is doing, sticking with the defaults.

                        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
                        • M
                          mlb2009
                          last edited by

                          it doesn’t tell me the ip i should use.I found the ip,still not installing.And my isp wont allow me to have a static ip anyway.But i am ok with changing it all the time

                          1 Reply Last reply Reply Quote 0
                          • M
                            mlb2009
                            last edited by

                            it looks like the code to check the packges is this:

                            confirmPackageInstallation()
                            {
                            for x in $packages
                            do
                            echo -n " * Checking package: $x";
                            rpm -q $x >/dev/null 2>&1;
                            if [ “$?” != “0” ]
                            then
                            echo “…Failed!”
                            exit 1;

                                else
                                    echo "...OK";
                                fi
                            done;
                            

                            }

                            and the configue mySQL code is here:

                            configureMySql()
                            {
                            echo -n " * Setting up and starting MySql";
                            chkconfig mysqld on;
                            service mysqld restart >/dev/null 2>&1;
                            service mysqld status >/dev/null 2>&1;
                            if [ “$?” != “0” ]
                            then
                            echo “…Failed!”;
                            exit 1;
                            else
                            echo “…OK”;
                            fi
                            }
                            I do have some command line experence

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

                              Okay,

                              Is your FOG Server behind a router that then connects to a modem or directly connected to the modem?

                              If you’re connected directly to the modem, then how did you get the DHCP Server and the DNS Server IP Address?

                              You’re sure mysql is actually running on your system then?

                              Is selinux running or disabled?
                              To check:
                              cat /etc/sysconfig/selinux

                              Look for:
                              SELINUX=disabled
                              If it doesn’t say disabled change it and reboot your machine.
                              Then check that iptables is disabled <- DONT DO THIS IF YOU’RE CONNECTED DIRECTLY TO THE MODEM
                              service iptables stop; chkconfig iptables off
                              Once done, retry the install process.
                              Can you post a reading of:
                              /var/log/messages
                              Directly after you’ve tried installing fog.
                              Thank you,

                              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
                              • Tom ElliottT
                                Tom Elliott
                                last edited by

                                Also,

                                When giving information, please try to provide as much information as possible. It’s not easy to troubleshoot something when not being directly in front of it. It makes it much more difficult to help out when there isn’t any information to go off of.

                                Responses such as:
                                “didn’t work.”,“Didn’t help”

                                Doesn’t give us anything to work off. We don’t know what you’ve tried, or how you know certain things.

                                How do you know that mysql is working?
                                What have you tried beyond the help I’ve tried giving?
                                What kinds of error messages is the system telling you? Fog tells you information, but we don’t know your systems particular setup.

                                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
                                • M
                                  mlb2009
                                  last edited by

                                  sorry for the late reply. i connected to the router that connects me to the modem.i know that mysql is working because when enter mysql in the command line,it dosen’t give me any errors.
                                  I downloaded the rpms for mysql and that didn’t work. the command you gave me finally worked.
                                  i disabled iptables and selinux some time ago.

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

                                    Okay,

                                    Is there any way you’d be able to allow remote access that I could actually take a look at the file/install process?

                                    There shouldn’t be any problem with installing, so it seems there’s a borked command in the installer somewhere, I just don’t know where. I’m running on CentOS 6.4 and I haven’t run into any issues. I’m also running/testing 0.33 so I’m not a good example.

                                    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
                                    • M
                                      mlb2009
                                      last edited by

                                      0.33?How do you download that

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

                                        Are you trying to do this install from your home system?

                                        Give me a minute or two and I’ll post the latest and greatest that I’ve created.

                                        I don’t know if it will work, but it will contain many of the Fixes I’ve already implemented.

                                        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
                                        • Tom ElliottT
                                          Tom Elliott
                                          last edited by

                                          Ready for download:

                                          [url]https://mastacontrola.com/fog_0.33b.tar.bz2[/url]

                                          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
                                          • M
                                            mlb2009
                                            last edited by

                                            getting the same error.I will remove mysql and see what happens this time

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

                                            225

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project