ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Install NextCloud 11 on Fedora 25 with SaltStack

    IT Discussion
    nextcloud nextcloud 11 fedora linux fedora 25 redis mariadb salt saltstack devops scott alan miller sam salt administration
    14
    201
    41.5k
    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.
    • FATeknollogeeF
      FATeknollogee @stacksofplates
      last edited by FATeknollogee

      @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

      The default zone for firewalld is public. If you change open a service or port in a different zone you have to tell firewalld to use that zone instead.

      How do I do that?
      Remember, this was a "copy/paste" operation of @scottalanmiller files.
      "FedoraServer" is the zone used in the original files.

      1 Reply Last reply Reply Quote 0
      • Reid CooperR
        Reid Cooper @stacksofplates
        last edited by

        @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

        @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

        @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

        @scottalanmiller
        0_1507416268476_Selection_005.png

        Changing the name: from "FedoraServer" to "public"...like so:
        0_1507424585849_Selection_007.png

        results in this:

        0_1507424618944_Selection_006.png

        Now, I can log in.

        What am I doing wrong?

        The default zone for firewalld is public. If you change open a service or port in a different zone you have to tell firewalld to use that zone instead.

        That is for CentOS. Default on Fedora is not public.

        stacksofplatesS 1 Reply Last reply Reply Quote 0
        • Reid CooperR
          Reid Cooper @FATeknollogee
          last edited by

          @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

          @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

          @scottalanmiller
          0_1507416268476_Selection_005.png

          Changing the name: from "FedoraServer" to "public"...like so:
          0_1507424585849_Selection_007.png

          results in this:

          0_1507424618944_Selection_006.png

          Now, I can log in.

          What am I doing wrong?

          This is on Fedora, you said?

          FATeknollogeeF 1 Reply Last reply Reply Quote 0
          • FATeknollogeeF
            FATeknollogee @Reid Cooper
            last edited by

            @reid-cooper Yes, this is on Fedora

            1 Reply Last reply Reply Quote 0
            • FATeknollogeeF
              FATeknollogee
              last edited by

              Why is firewalld not using the "FedoraServer" zone as specified in the salt config ?

              1 Reply Last reply Reply Quote 0
              • stacksofplatesS
                stacksofplates @Reid Cooper
                last edited by

                @reid-cooper said in Install NextCloud 11 on Fedora 25 with SaltStack:

                @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                @scottalanmiller
                0_1507416268476_Selection_005.png

                Changing the name: from "FedoraServer" to "public"...like so:
                0_1507424585849_Selection_007.png

                results in this:

                0_1507424618944_Selection_006.png

                Now, I can log in.

                What am I doing wrong?

                The default zone for firewalld is public. If you change open a service or port in a different zone you have to tell firewalld to use that zone instead.

                That is for CentOS. Default on Fedora is not public.

                On the server default is public. On the workstation it's FedoraWorkstation.

                These are default and haven't been modified:

                0_1507494079075_firewall.png

                stacksofplatesS 1 Reply Last reply Reply Quote 0
                • stacksofplatesS
                  stacksofplates @stacksofplates
                  last edited by

                  @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                  @reid-cooper said in Install NextCloud 11 on Fedora 25 with SaltStack:

                  @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                  @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                  @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                  @scottalanmiller
                  0_1507416268476_Selection_005.png

                  Changing the name: from "FedoraServer" to "public"...like so:
                  0_1507424585849_Selection_007.png

                  results in this:

                  0_1507424618944_Selection_006.png

                  Now, I can log in.

                  What am I doing wrong?

                  The default zone for firewalld is public. If you change open a service or port in a different zone you have to tell firewalld to use that zone instead.

                  That is for CentOS. Default on Fedora is not public.

                  On the server default is public. On the workstation it's FedoraWorkstation.

                  These are default and haven't been modified:

                  0_1507494079075_firewall.png

                  I'm building one from the ISO to check. 99% of my stuff is built with virt-builder so it is possible they changed the default zone in the image. The normal cloud image doesn't have firewalld installed so I can't check on my OpenStack images.

                  1 Reply Last reply Reply Quote 0
                  • stacksofplatesS
                    stacksofplates
                    last edited by stacksofplates

                    So looks like ISO has it as FedoraServer, some other images (like virt-builder) are public. It would be best to get the default zone and use that when you set the services. I have no idea how to do that with Salt. Here's how you would with Ansible in case anyone cares:

                      tasks:
                        - name: get default zone
                          shell: "firewall-cmd --get-default-zone"
                          register: zone
                        
                        - name: set firewall services
                          firewalld:
                            service: https
                            permanent: true
                            state: enabled
                            zone: "{{ zone.stdout }}"
                    
                    1 Reply Last reply Reply Quote 0
                    • FATeknollogeeF
                      FATeknollogee
                      last edited by

                      The default zone on my Fedora server install is "public"

                      stacksofplatesS 1 Reply Last reply Reply Quote 0
                      • stacksofplatesS
                        stacksofplates @FATeknollogee
                        last edited by

                        @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                        The default zone on my Fedora server install is "public"

                        Where did you install from?

                        FATeknollogeeF 1 Reply Last reply Reply Quote 0
                        • FATeknollogeeF
                          FATeknollogee @stacksofplates
                          last edited by FATeknollogee

                          @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                          @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                          The default zone on my Fedora server install is "public"

                          Where did you install from?

                          Netinstall ISO off the Fedora website: https://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/iso/Fedora-Server-netinst-x86_64-26-1.5.iso

                          stacksofplatesS 1 Reply Last reply Reply Quote 0
                          • stacksofplatesS
                            stacksofplates @FATeknollogee
                            last edited by

                            @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                            @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                            @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                            The default zone on my Fedora server install is "public"

                            Where did you install from?

                            Netinstall ISO off the Fedora website: https://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/iso/Fedora-Server-netinst-x86_64-26-1.5.iso

                            Ah ok. So the net install uses public. The ISO with defaults sets it to FedoraServer.

                            FATeknollogeeF Reid CooperR 2 Replies Last reply Reply Quote 1
                            • FATeknollogeeF
                              FATeknollogee @stacksofplates
                              last edited by

                              @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                              ..The ISO with defaults sets it to FedoraServer.

                              Which ISO is that, this one? https://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/iso/Fedora-Server-dvd-x86_64-26-1.5.iso

                              1 Reply Last reply Reply Quote 0
                              • Reid CooperR
                                Reid Cooper @stacksofplates
                                last edited by

                                @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                The default zone on my Fedora server install is "public"

                                Where did you install from?

                                Netinstall ISO off the Fedora website: https://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/iso/Fedora-Server-netinst-x86_64-26-1.5.iso

                                Ah ok. So the net install uses public. The ISO with defaults sets it to FedoraServer.

                                That's an odd difference for them to have introduced.

                                JaredBuschJ 1 Reply Last reply Reply Quote 0
                                • JaredBuschJ
                                  JaredBusch @Reid Cooper
                                  last edited by

                                  @reid-cooper said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                  @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                  @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                  @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                  @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                  The default zone on my Fedora server install is "public"

                                  Where did you install from?

                                  Netinstall ISO off the Fedora website: https://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/iso/Fedora-Server-netinst-x86_64-26-1.5.iso

                                  Ah ok. So the net install uses public. The ISO with defaults sets it to FedoraServer.

                                  That's an odd difference for them to have introduced.

                                  CentOS has had similar issues in the past. this is not really a surprise to me.

                                  1 Reply Last reply Reply Quote 1
                                  • FATeknollogeeF
                                    FATeknollogee
                                    last edited by

                                    Any ideas??

                                    stacksofplatesS 1 Reply Last reply Reply Quote 0
                                    • stacksofplatesS
                                      stacksofplates @FATeknollogee
                                      last edited by

                                      @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                      Any ideas??

                                      What do you mean? Either change the Salt file to match public or change your default zone on the server.

                                      FATeknollogeeF 1 Reply Last reply Reply Quote 0
                                      • FATeknollogeeF
                                        FATeknollogee @stacksofplates
                                        last edited by

                                        @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                        @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                        Any ideas??

                                        What do you mean? Either change the Salt file to match public or change your default zone on the server.

                                        I know I can do that, I'm trying to figure out why the salt file isn't working for me (just the firewall portion) since it worked for everyone else

                                        stacksofplatesS 1 Reply Last reply Reply Quote 0
                                        • stacksofplatesS
                                          stacksofplates @FATeknollogee
                                          last edited by

                                          @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                          @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                          @fateknollogee said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                          Any ideas??

                                          What do you mean? Either change the Salt file to match public or change your default zone on the server.

                                          I know I can do that, I'm trying to figure out why the salt file isn't working for me (just the firewall portion) since it worked for everyone else

                                          I thought we figured out that it was the incorrect zone? If you change the zone in the salt file to public does it work?

                                          FATeknollogeeF 1 Reply Last reply Reply Quote 1
                                          • FATeknollogeeF
                                            FATeknollogee @stacksofplates
                                            last edited by

                                            @stacksofplates said in Install NextCloud 11 on Fedora 25 with SaltStack:

                                            I thought we figured out that it was the incorrect zone? If you change the zone in the salt file to public does it work?

                                            Yes that does work.
                                            I'm just trying to understand @scottalanmiller intent in creating the "FedoraServer" zone?

                                            @stacksofplates What ISO did you say used "FedoraServer" as it's default zone?
                                            I should grab a copy of that & try the install!

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