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.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.
    • scottalanmillerS
      scottalanmiller @CrimsonKidA
      last edited by

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

      @scottalanmiller Sorry, I don't follow. I only have one VM and it's the Fedora 25 Server. It's running everything.

      That's no problem. You just have to configure both sides on one machine. That's standard actually.

      Look at /etc/salt/minion

      add the line:

      master: localhost

      C 1 Reply Last reply Reply Quote 0
      • C
        CrimsonKidA @scottalanmiller
        last edited by

        @scottalanmiller Thanks, I just appended it on to the end of /etc/salt/minion via Nano and restarted salt-minion service. No change though...?

        scottalanmillerS 1 Reply Last reply Reply Quote 0
        • scottalanmillerS
          scottalanmiller @CrimsonKidA
          last edited by

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

          @scottalanmiller Thanks, I just appended it on to the end of /etc/salt/minion via Nano and restarted salt-minion service. No change though...?

          The salt-key --list-all didn't list it?

          C 1 Reply Last reply Reply Quote 0
          • C
            CrimsonKidA @scottalanmiller
            last edited by

            @scottalanmiller Afraid not. I did find where to change the salt master in the /etc/salt/minion file (line 16), so I un-commented it out and changed that to master:localhost and restarted the salt-minion service again, but no change. Also tried restarting salt-master service.

            scottalanmillerS 1 Reply Last reply Reply Quote 0
            • scottalanmillerS
              scottalanmiller @CrimsonKidA
              last edited by

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

              @scottalanmiller Afraid not. I did find where to change the salt master in the /etc/salt/minion file (line 16), so I un-commented it out and changed that to master:localhost and restarted the salt-minion service again, but no change. Also tried restarting salt-master service.

              Make sure that there is a space after the colon.

              You can go in /var/log and look in the salt minion logs to see what it is complaining about.

              C 1 Reply Last reply Reply Quote 0
              • C
                CrimsonKidA @scottalanmiller
                last edited by

                @scottalanmiller Thanks, I have DNS lookup failures for 'salt' and master hostname 'salt' not found as a result.

                scottalanmillerS 1 Reply Last reply Reply Quote 0
                • scottalanmillerS
                  scottalanmiller @CrimsonKidA
                  last edited by

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

                  @scottalanmiller Thanks, I have DNS lookup failures for 'salt' and master hostname 'salt' not found as a result.

                  Something is wrong with your minion file. That means that the minion is looking for a machine named salt rather than for localhost.

                  In /etc/hosts you can just name the local machine "salt" to resolve that, too.

                  1 Reply Last reply Reply Quote 0
                  • scottalanmillerS
                    scottalanmiller
                    last edited by

                    "salt" is the default. so that's why that specific one shows up.

                    C 1 Reply Last reply Reply Quote 0
                    • C
                      CrimsonKidA @scottalanmiller
                      last edited by

                      @scottalanmiller Perfect, thanks. I just added '127.0.0.0 salt' to my /etc/hosts file and that got the DNS issue cleared up. But then the key was still not accepted. Got that sorted by running:
                      salt-key -A
                      from directory /etc/salt

                      1 Reply Last reply Reply Quote 1
                      • C
                        CrimsonKidA
                        last edited by

                        ...just CD'd back to /srv/salt and your scripts are working now!! 😄

                        C 1 Reply Last reply Reply Quote 1
                        • C
                          CrimsonKidA @CrimsonKidA
                          last edited by

                          The script seemed run fine, but I still have no NextCloud installation. 😞 I thought it was just the firewall getting enabled in Fedora, but I turned it off and still nothing is there on 443 at the IP (other than Cockpit at 9090 of course).

                          scottalanmillerS 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @CrimsonKidA
                            last edited by

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

                            The script seemed run fine, but I still have no NextCloud installation. 😞 I thought it was just the firewall getting enabled in Fedora, but I turned it off and still nothing is there on 443 at the IP (other than Cockpit at 9090 of course).

                            What was the feedback from the state.apply? Any errors should be there.

                            C 1 Reply Last reply Reply Quote 0
                            • C
                              CrimsonKidA @scottalanmiller
                              last edited by CrimsonKidA

                              @scottalanmiller Thanks, Scott. I ran the your final command again and it worked this time: Succeeded: 19 (changed=5)! The firewall seems to be too aggressive, so I just turned it off since this will be LAN-use only (at least for now).

                              scottalanmillerS 1 Reply Last reply Reply Quote 0
                              • scottalanmillerS
                                scottalanmiller @CrimsonKidA
                                last edited by

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

                                @scottalanmiller Thanks, Scott. I ran the your final command again and it worked this time: Succeeded: 19 (changed=5)! The firewall seems to be too aggressive, so I just turned it off since this will be LAN-use only (at least for now).

                                Should be "just aggressive enough"... shutting off Cockpit and SSH. 🙂

                                1 Reply Last reply Reply Quote 0
                                • scottalanmillerS
                                  scottalanmiller
                                  last edited by

                                  One of the great things about a state machine system like this is that running it over and over again isn't a problem. You can run this on a live system safely.

                                  1 Reply Last reply Reply Quote 2
                                  • C
                                    CrimsonKidA
                                    last edited by

                                    Thanks again, Scott! Just one last question: how do I get this to "stick" after a reboot? It seems to be reverting back to having nothing installed after I reboot the Fedora Svr VM...

                                    scottalanmillerS 1 Reply Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @CrimsonKidA
                                      last edited by

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

                                      Thanks again, Scott! Just one last question: how do I get this to "stick" after a reboot? It seems to be reverting back to having nothing installed after I reboot the Fedora Svr VM...

                                      What? The packages VANISH? Or just the configuration?

                                      C 1 Reply Last reply Reply Quote 0
                                      • C
                                        CrimsonKidA @scottalanmiller
                                        last edited by

                                        @scottalanmiller Well, it doesn't lose my NextCloud config (I changed the admin PW) but Apache2.4, Salt (master and minion) and NextCloud are just not auto starting up. I've set the salt services to auto-start up, so I'll see if that's all it needs...

                                        scottalanmillerS 1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @CrimsonKidA
                                          last edited by

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

                                          @scottalanmiller Well, it doesn't lose my NextCloud config (I changed the admin PW) but Apache2.4, Salt (master and minion) and NextCloud are just not auto starting up. I've set the salt services to auto-start up, so I'll see if that's all it needs...

                                          Ah okay, at one point I had that issue but I thought that I fixed it in the state file. They were set to start when it runs, but not to start on their own. Which is actually a legitimate way to use a system like this, but not how I intended this one. If you set it that way, then you want the state file to run on start up. That's not uncommon, to have the state file determine what to run when the system files up. But I didn't intend it here. In a pinch, though, you can just re-run it and it will take care of that for you.

                                          C 1 Reply Last reply Reply Quote 1
                                          • C
                                            CrimsonKidA @scottalanmiller
                                            last edited by

                                            @scottalanmiller Thanks, I'll look at making a cron job for it to run at boot. I'm having to manually disable the firewall at each boot too, so that will need to be added. Salt master and minion are starting up on their own now, so that's good.

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