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

CentOS 7/RHEL 7/Fedora 20 Support

Scheduled Pinned Locked Moved
Feature Request
9
51
29.6k
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
    madskillz23
    last edited by Aug 14, 2014, 6:52 PM

    [quote=“Jose Antonio Sanchez, post: 35283, member: 25349”]I had to also disable SELINUX:

    [COLOR=#000000][FONT=monospace]sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/’ /etc/sysconfig/selinux[/FONT][/COLOR]
    [COLOR=#000000][FONT=monospace]sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/’ /etc/selinux/config[/FONT][/COLOR]

    And clients were able to PXE boot after that.

    I can register hosts… but, on Upload task the client can’t mount NFS:

    [CODE]mounting x.x.x.x:/images/dev/ on /images failed: Operation not supported

    Fatal Error: Failed to mount NFS Volume[/CODE]

    Then I chown the /images forlder:

    [CODE]chown -R fog /images[/CODE]

    And rebooted and tried again, same error…[/quote]

    Have to disable SElinux on all distros. Rip off your firewall as well quick to test the NFS mount. systemctl stop firewalld.service && systemctl disable firewalld.service

    1 Reply Last reply Reply Quote 0
    • M
      madskillz23
      last edited by Aug 14, 2014, 6:56 PM

      Has anyone been able to get a succesful upload working? Mine is failing on FOGFTP_login() have tried a few quick fixes, will look into it some more this afternoon.

      1 Reply Last reply Reply Quote 0
      • J
        Jose Antonio Sanchez
        last edited by Aug 14, 2014, 7:32 PM

        [quote=“madskillz23, post: 35285, member: 8206”]Have to disable SElinux on all distros. Rip off your firewall as well quick to test the NFS mount. systemctl stop firewalld.service && systemctl disable firewalld.service[/quote]

        Yup… I forgot to add that I did have to stop and disable the firewall service…

        The problem I was having with mounting the NFS share for /images/dev in /images was due to the NFS service not running…

        I did, I think, systemctl restart nfs-server.service and also systemctl enable nfs-server.service just to be sure…

        1 Reply Last reply Reply Quote 0
        • M
          madskillz23
          last edited by Aug 14, 2014, 8:47 PM

          [quote=“Jose Antonio Sanchez, post: 35287, member: 25349”]Yup… I forgot to add that I did have to stop and disable the firewall service…

          The problem I was having with mounting the NFS share for /images/dev in /images was due to the NFS service not running…

          I did, I think, systemctl restart nfs-server.service and also systemctl enable nfs-server.service just to be sure…[/quote]

          Is it working now? I don’t think your error is centOS 7 specific. I am almost positive I had nfs mounting out of box in centOS 7.

          1 Reply Last reply Reply Quote 0
          • M
            madskillz23
            last edited by Aug 15, 2014, 6:45 PM

            I got upload working on my CentOS 7 machine. Might have been due to setting seccomp=No in /etc/vsftpd/vsftpd.conf or more likely due to stupid vlan issues being resolved. Testing Multicast now, it seems to hang on “starting to restore image”

            1 Reply Last reply Reply Quote 0
            • M
              madskillz23
              last edited by Aug 15, 2014, 7:03 PM

              Multicast still not working

              Output of Multicast.log:

              [08-15-14 1:16:20 pm] | StorageNode Not found on this system.
              [08-15-14 1:16:30 pm] | StorageNode Not found on this system.
              …
              This is a stand alone fog server, it is the master storage node. I’m kind of out ideas.

              Also I can use udp-sender and receiver to transmit the multicast log simultaneously between two clients as per these instructions. The third step is out of date. [url]http://fogproject.org/wiki/index.php?title=Troubleshooting_a_multicast[/url]

              1 Reply Last reply Reply Quote 0
              • J
                Jose Antonio Sanchez
                last edited by Aug 15, 2014, 9:21 PM

                madskillz23,

                Same here… can’t multicast even on a flat (unmanaged) switch…

                now… on a VM Server (different than the one with the problem for multicast) MariaDB fails to start on boot and I have to restart it every time with:

                [INDENT=1]systemctl restart mariadb.service[/INDENT]

                I tried adding the following two lines to the my.cnf

                [INDENT=1][mysql.service][/INDENT]
                [INDENT=1]–service-startup-timeout=9000[/INDENT]

                but it did not help…

                Again… I’m semi-new to linux… any help appreciated…

                1 Reply Last reply Reply Quote 0
                • M
                  madskillz23
                  last edited by Aug 15, 2014, 9:34 PM

                  [quote=“Jose Antonio Sanchez, post: 35345, member: 25349”]madskillz23,

                  Same here… can’t multicast even on a flat (unmanaged) switch…

                  now… on a VM Server (different than the one with the problem for multicast) MariaDB fails to start on boot and I have to restart it every time with:

                  [INDENT=1]systemctl restart mariadb.service[/INDENT]

                  I tried adding the following two lines to the my.cnf

                  [INDENT=1][mysql.service][/INDENT]
                  [INDENT=1]–service-startup-timeout=9000[/INDENT]

                  but it did not help…

                  Again… I’m semi-new to linux… any help appreciated…[/quote]

                  Not sure on multicast yet. Try systemctl enable mariadb.service. and on an unrelated note, I also had to start the nfs service on a new server I threw up, like you had happen to you earlier in the thread

                  1 Reply Last reply Reply Quote 0
                  • J
                    Jose Antonio Sanchez
                    last edited by Aug 15, 2014, 9:45 PM

                    madskillz23,

                    I fixed the mariadb problem by:
                    [INDENT=1]su[/INDENT]
                    [INDENT=1]gedit /etc/rc.d/rc.local[/INDENT]

                    Adding this line to the end of file “rc.local”
                    [INDENT=1]systemctl restart mariadb.service[/INDENT]

                    then as the comments at the beginning of “rc.local” indicated to make sure the file is executable, ran:
                    [INDENT=1]chmod +x /etc/rc.d/rc.local[/INDENT]
                    [INDENT=1] [/INDENT]
                    Now, on to figuring out about the multicast…

                    EDIT: I did run the command to enable the mariadb.service and it kept on crashing on boot…

                    1 Reply Last reply Reply Quote 0
                    • M
                      madskillz23
                      last edited by Aug 18, 2014, 2:57 PM

                      On CentOS 7 across multiple servers I repeatedly keep getting this same problem:

                      On original fresh fog install, does not ask to update database schema. But after a while (few hours to a weekend) it prompts for a database schema update which consistently fails. Have to rerun fog installer to bypass the issue so I can get to the web interface. Is there a way to manually reset that bit in the database without rerunning the fog installer?

                      Have not seen this issue on CentOS 6.

                      1 Reply Last reply Reply Quote 0
                      • J
                        Jose Antonio Sanchez
                        last edited by Aug 18, 2014, 3:25 PM

                        doesn’t the fog installer re-launch the database??? if so, would a cron job to restart it nightly or every other night be an OK workaround??

                        systemctl restart mariadb.service

                        1 Reply Last reply Reply Quote 0
                        • M
                          madskillz23
                          last edited by Aug 18, 2014, 3:25 PM

                          The correct command for nfs starting after a reboot is: [CODE]systemctl enable nfs-server.service[/CODE] Apparently just nfs instead of nfs-server didn’t work.

                          1 Reply Last reply Reply Quote 0
                          • M
                            madskillz23
                            last edited by Aug 18, 2014, 3:27 PM

                            [quote=“Jose Antonio Sanchez, post: 35418, member: 25349”]doesn’t the fog installer re-launch the database??? if so, would a cron job to restart it nightly or every other night be an OK workaround??

                            systemctl restart mariadb.service[/quote]

                            Nope restarting the system has no effect. Its a bit in the database or somewhere that is persistently set to upgrade.

                            1 Reply Last reply Reply Quote 0
                            • J
                              Jose Antonio Sanchez
                              last edited by Aug 18, 2014, 3:37 PM

                              Can FOG issue an error on the page that the database is NOT running rather than to say the schema is out of whack?? That would make troubleshooting a bit easier…

                              Something like, Can’t connect to database, please restart it or check on it?

                              1 Reply Last reply Reply Quote 0
                              • J
                                Jose Antonio Sanchez
                                last edited by Aug 18, 2014, 3:39 PM

                                [quote=“madskillz23, post: 35420, member: 8206”]Nope restarting the system has no effect. Its a bit in the database or somewhere that is persistently set to upgrade.[/quote]

                                The system??? Nope, the database only, I was restarting the PC where fog is and the problem persisted on every reboot, but whenever I restarted only the database, the problem would go away…

                                1 Reply Last reply Reply Quote 0
                                • M
                                  madskillz23
                                  last edited by Aug 18, 2014, 3:55 PM

                                  Yeah it was caused by MySQL not starting correctly. Same issue you had. Dumb error on my part.

                                  1 Reply Last reply Reply Quote 0
                                  • J
                                    Jose Antonio Sanchez
                                    last edited by Aug 18, 2014, 5:06 PM

                                    due to time limits for projects, I am also running another FOG Server but with Ubuntu 14.04 LTS and I am having the same issue of the Multicast not working even on a flat/unmanaged switch…

                                    So the problem with multicast does not seem to be isolated to CentOS 7… What is the name of the service that handles the multicast?? I need to see if it is running to try to restart it to see if that does it…

                                    1 Reply Last reply Reply Quote 0
                                    • J
                                      Jose Antonio Sanchez
                                      last edited by Aug 18, 2014, 5:09 PM

                                      Fount the answer on another thread…

                                      [FONT=Consolas]sudo service FOGMulticastManager stop
                                      sudo killall udp-sender
                                      sudo killall udp-sender
                                      sudo killall udp-sender
                                      sudo service FOGMulticastManager start[/FONT]

                                      1 Reply Last reply Reply Quote 0
                                      • M
                                        madskillz23
                                        last edited by Aug 18, 2014, 5:12 PM

                                        [quote=“Jose Antonio Sanchez, post: 35438, member: 25349”]Fount the answer on another thread…

                                        [FONT=Consolas]sudo service FOGMulticastManager stop[/FONT]
                                        [FONT=Consolas]sudo killall udp-sender[/FONT]
                                        [FONT=Consolas]sudo killall udp-sender[/FONT]
                                        [FONT=Consolas]sudo killall udp-sender[/FONT]
                                        [FONT=Consolas]sudo service FOGMulticastManager start[/FONT][/quote]

                                        Did that work on CentOS 7 too? Didn’t think it would work for me because it seems to be an issue of MulticastManager not thinking the node is a storage node.

                                        1 Reply Last reply Reply Quote 0
                                        • J
                                          Jose Antonio Sanchez
                                          last edited by Aug 18, 2014, 7:29 PM

                                          [quote=“madskillz23, post: 35439, member: 8206”]Did that work on CentOS 7 too? Didn’t think it would work for me because it seems to be an issue of MulticastManager not thinking the node is a storage node.[/quote]

                                          I have to report that stopping the FOGMulticastManager server and starting it again does not solve the multicast problem on CentOS 7…

                                          Any ideas??

                                          P.S. On my Ubuntu 14.04 LTS install of fog 1.2.0 the FOGMulticastManager.service along with the other two FOG services are not listed…

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 3
                                          • 1 / 3
                                          1 / 3
                                          • First post
                                            17/51
                                            Last post

                                          169

                                          Online

                                          12.0k

                                          Users

                                          17.3k

                                          Topics

                                          155.2k

                                          Posts
                                          Copyright © 2012-2024 FOG Project