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

Trunk install, fog.conf vhost file issue

Scheduled Pinned Locked Moved Solved
Bug Reports
5
22
8.1k
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.
  • W
    Wayne Workman @kurtblah
    last edited by Jun 21, 2016, 12:21 AM

    @kurtblah Ok, so what happens when that file is left alone, and you run systemctl restart httpd and then systemctl status httpd -l

    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
    • K
      kurtblah
      last edited by Jun 21, 2016, 12:27 AM

      [root@localhost bin]# systemctl restart httpd
      Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.
      
      [root@localhost bin]# systemctl status httpd -l
      ● httpd.service - The Apache HTTP Server
         Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
         Active: failed (Result: exit-code) since Mon 2016-06-20 19:23:42 CDT; 15s ago
        Process: 2975 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)
       Main PID: 2975 (code=exited, status=1/FAILURE)
      
      Jun 20 19:23:42 localhost.localdomain systemd[1]: Starting The Apache HTTP Server...
      Jun 20 19:23:42 localhost.localdomain httpd[2975]: AH00526: Syntax error on line 4 of /etc/httpd/conf.d/fog.conf:
      Jun 20 19:23:42 localhost.localdomain httpd[2975]: Invalid command '2601:243:200:d722::73a8', perhaps misspelled or defined by a module not included in the server configuration
      Jun 20 19:23:42 localhost.localdomain systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE
      Jun 20 19:23:42 localhost.localdomain systemd[1]: Failed to start The Apache HTTP Server.
      Jun 20 19:23:42 localhost.localdomain systemd[1]: httpd.service: Unit entered failed state.
      Jun 20 19:23:42 localhost.localdomain systemd[1]: httpd.service: Failed with result 'exit-code'.```
      

      -kurt

      W 1 Reply Last reply Jun 21, 2016, 12:36 AM Reply Quote 0
      • W
        Wayne Workman @kurtblah
        last edited by Jun 21, 2016, 12:36 AM

        @kurtblah Sorry for so many commands. I’m working through you like I would if I were there at the terminal.

        What is the output of this: ip addr show

        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
        • K
          kurtblah
          last edited by Jun 21, 2016, 12:39 AM

          no problem. here’s the ip addr:

          [root@localhost bin]# ip addr show
          1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1
              link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
              inet 127.0.0.1/8 scope host lo
                 valid_lft forever preferred_lft forever
              inet6 ::1/128 scope host
                 valid_lft forever preferred_lft forever
          2: enp1s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
              link/ether d4:85:64:01:6a:05 brd ff:ff:ff:ff:ff:ff
              inet 192.168.1.251/24 brd 192.168.1.255 scope global enp1s0
                 valid_lft forever preferred_lft forever
              inet6 2601:243:200:d722::73a8/128 scope global dynamic
                 valid_lft 592005sec preferred_lft 592005sec
              inet6 2601:243:200:d722:d685:64ff:fe01:6a05/64 scope global noprefixroute dynamic
                 valid_lft 226861sec preferred_lft 226861sec
              inet6 fe80::d685:64ff:fe01:6a05/64 scope link
                 valid_lft forever preferred_lft forever
          W 1 Reply Last reply Jun 21, 2016, 12:50 AM Reply Quote 0
          • W
            Wayne Workman @kurtblah
            last edited by Wayne Workman Jun 20, 2016, 6:51 PM Jun 21, 2016, 12:50 AM

            @kurtblah So, do you need IPv6 on this system for some reason?

            If not, here’s instructions to turn it off for you:

            backup interface config:
            cp /etc/sysconfig/network-scripts/ifcfg-enp1s0 /etc/sysconfig/network-scripts/ifcfg-enp1s0.old

            Edit the interface config:
            vi /etc/sysconfig/network-scripts/ifcfg-enp1s0

            Change these lines to off or zero or no:

            NETWORKING_IPV6=no
            IPV6INIT=no
            

            If the lines are not there, you can try to add them.

            Restart the interface - this command is sorta dangerous if the node is far away and the config is bad, the interface could fail to come back up, so keep that in mind:

            ifdown enp1s0;ifup enp1s0

            After doing this, try to re-run the fog installer and see what happens. Hopefully it works.

            To put the old config file back if you want:

            rm -f /etc/sysconfig/network-scripts/ifcfg-enp1s0
            cp /etc/sysconfig/network-scripts/ifcfg-enp1s0.old /etc/sysconfig/network-scripts/ifcfg-enp1s0
            ifdown enp1s0;ifup enp1s0
            

            Reference:
            http://linoxide.com/linux-how-to/disable-ipv6-centos-fedora-rhel/

            Noteworthy:
            http://tecadmin.net/disable-ipv6-on-linux/#
            https://www.g-loaded.eu/2008/05/12/how-to-disable-ipv6-in-fedora-and-centos/

            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 1
            • K
              kurtblah
              last edited by Jun 21, 2016, 1:05 AM

              Disabling IPv6 did the trick. I ran:

               sudo echo "1" > /proc/sys/net/ipv6/conf/all/disable_ipv6
              

              and the installer ran normally. I’ll need to shut it down permanently.

              Thank you for your help. Is this IPv6 issue consistent in all of the builds?

              -kurt

              W 1 Reply Last reply Jun 21, 2016, 2:03 AM Reply Quote 1
              • W
                Wayne Workman @kurtblah
                last edited by Jun 21, 2016, 2:03 AM

                @kurtblah probably. And there isn’t the man power to do an overhaul on that. IPV6 will have to wait for the 2.0 rewrite.

                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
                • S
                  Sebastian Roth Moderator
                  last edited by Jun 21, 2016, 6:43 PM

                  Not sure if we should still change the installer script to ignore those IPv6 addresses… @Developers ?

                  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

                  W 1 Reply Last reply Jun 21, 2016, 6:49 PM Reply Quote 0
                  • W
                    Wayne Workman @Sebastian Roth
                    last edited by Jun 21, 2016, 6:49 PM

                    @Sebastian-Roth I think the installer should ignore IPv6 addresses.

                    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
                    • Tom ElliottT
                      Tom Elliott
                      last edited by Jun 29, 2016, 10:05 AM

                      I’m pretty sure I’ve added the code buts to only worry about IPv4 but could use confirmation of this.

                      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

                      M 1 Reply Last reply Aug 28, 2016, 6:22 AM Reply Quote 0
                      • M
                        malkazoid @Tom Elliott
                        last edited by Aug 28, 2016, 6:22 AM

                        @Tom-Elliott Hi - I just ran into the same problem. I’ll go ahead disable ipv6 but thought I’d let you know the development installer grabbed from github still seems to try to include ipv6 in fog.conf

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

                        123

                        Online

                        12.1k

                        Users

                        17.3k

                        Topics

                        155.3k

                        Posts
                        Copyright © 2012-2024 FOG Project