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

    Install Nextcloud 13.0.0 on Fedora 27

    IT Discussion
    how to nextcloud nextcloud 13 real instructions guide fedora 27
    21
    188
    29.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.
    • DustinB3403D
      DustinB3403 @Donahue
      last edited by

      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

      @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

      @scottalanmiller said in Install Nextcloud 13.0.0 on Fedora 27:

      Jared's example is with ncuser. But you are trying to use ncadmin. Did you change Jared's script, or is that a typo?

      I changed the script

      try the long-name as ncadmin@localhost

      that doesnt work as far as I can tell.

      Directly from the CLI to login to the database? If it doesn't work then your database permissions may be messed up.

      DonahueD 1 Reply Last reply Reply Quote 0
      • DonahueD
        Donahue @DustinB3403
        last edited by

        @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

        @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

        @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

        @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

        @scottalanmiller said in Install Nextcloud 13.0.0 on Fedora 27:

        Jared's example is with ncuser. But you are trying to use ncadmin. Did you change Jared's script, or is that a typo?

        I changed the script

        try the long-name as ncadmin@localhost

        that doesnt work as far as I can tell.

        Directly from the CLI to login to the database? If it doesn't work then your database permissions may be messed up.

        correct. How do I reset it?

        DustinB3403D 1 Reply Last reply Reply Quote 0
        • DustinB3403D
          DustinB3403 @Donahue
          last edited by

          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

          @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

          @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

          @scottalanmiller said in Install Nextcloud 13.0.0 on Fedora 27:

          Jared's example is with ncuser. But you are trying to use ncadmin. Did you change Jared's script, or is that a typo?

          I changed the script

          try the long-name as ncadmin@localhost

          that doesnt work as far as I can tell.

          Directly from the CLI to login to the database? If it doesn't work then your database permissions may be messed up.

          correct. How do I reset it?

          Paging @scottalanmiller would it be better to check (and write) the permissions on mysql here or to create a new DB?

          1 Reply Last reply Reply Quote 0
          • DustinB3403D
            DustinB3403
            last edited by

            @Donahue run

            mysql
            SHOW GRANTS FOR 'user'@'locahost';

            If your user isn't listed as having any access then you need to give that user access. If they have access, then something else is messed up.

            DonahueD 1 Reply Last reply Reply Quote 0
            • DonahueD
              Donahue @DustinB3403
              last edited by

              @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

              @Donahue run

              mysql
              SHOW GRANTS FOR 'user'@'locahost';

              If your user isn't listed as having any access then you need to give that user access. If they have access, then something else is messed up.

              that shows my user in there with all privileges.

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

                @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                no go. ncuser does not exist, I am just using here as a reference to that place in the script where I changed it (following the tutorial)

                Can you log in as the root user?

                DonahueD 1 Reply Last reply Reply Quote 0
                • DonahueD
                  Donahue @scottalanmiller
                  last edited by

                  @scottalanmiller said in Install Nextcloud 13.0.0 on Fedora 27:

                  @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                  no go. ncuser does not exist, I am just using here as a reference to that place in the script where I changed it (following the tutorial)

                  Can you log in as the root user?

                  yes

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

                    @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                    @scottalanmiller said in Install Nextcloud 13.0.0 on Fedora 27:

                    @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                    no go. ncuser does not exist, I am just using here as a reference to that place in the script where I changed it (following the tutorial)

                    Can you log in as the root user?

                    yes

                    Then reset the user's password.

                    1 Reply Last reply Reply Quote 0
                    • DustinB3403D
                      DustinB3403
                      last edited by

                      I think this is the correct syntax.

                      ALTER USER 'user'@'hostname' IDENTIFIED BY 'newPass';

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

                        Format...

                        UPDATE mysql.user SET Password=PASSWORD(‘text password’) WHERE user=”ncadmin” AND Host=”localhost”;
                        
                        1 Reply Last reply Reply Quote 0
                        • DustinB3403D
                          DustinB3403
                          last edited by

                          @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                          If you scripted it I don't see how you could be using the incorrect password.

                          DonahueD 1 Reply Last reply Reply Quote 0
                          • DonahueD
                            Donahue @DustinB3403
                            last edited by

                            @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                            @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                            If you scripted it I don't see how you could be using the incorrect password.

                            I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                            DustinB3403D 1 Reply Last reply Reply Quote 0
                            • DustinB3403D
                              DustinB3403 @Donahue
                              last edited by

                              @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                              @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                              @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                              If you scripted it I don't see how you could be using the incorrect password.

                              I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                              Print the history from the machine and see if you are actually using the correct password.

                              DonahueD JaredBuschJ 2 Replies Last reply Reply Quote 0
                              • DonahueD
                                Donahue @DustinB3403
                                last edited by

                                @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                If you scripted it I don't see how you could be using the incorrect password.

                                I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                Print the history from the machine and see if you are actually using the correct password.

                                how do I do that? I cant see back that far. I am using powershell to connect

                                DonahueD DustinB3403D 2 Replies Last reply Reply Quote 0
                                • DonahueD
                                  Donahue @Donahue
                                  last edited by

                                  @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                  If you scripted it I don't see how you could be using the incorrect password.

                                  I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                  Print the history from the machine and see if you are actually using the correct password.

                                  how do I do that? I cant see back that far. I am using powershell to connect

                                  could it be my password is too long, or uses special characters?

                                  DustinB3403D 1 Reply Last reply Reply Quote 0
                                  • DustinB3403D
                                    DustinB3403 @Donahue
                                    last edited by

                                    @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                    @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                    @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                    @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                    @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                    If you scripted it I don't see how you could be using the incorrect password.

                                    I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                    Print the history from the machine and see if you are actually using the correct password.

                                    how do I do that? I cant see back that far. I am using powershell to connect

                                    Have you disconnected? If not just type "history"

                                    DonahueD 1 Reply Last reply Reply Quote 0
                                    • DustinB3403D
                                      DustinB3403 @Donahue
                                      last edited by

                                      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                      If you scripted it I don't see how you could be using the incorrect password.

                                      I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                      Print the history from the machine and see if you are actually using the correct password.

                                      how do I do that? I cant see back that far. I am using powershell to connect

                                      could it be my password is too long, or uses special characters?

                                      Doubtful.

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

                                        @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                        @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                        @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                        @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                        If you scripted it I don't see how you could be using the incorrect password.

                                        I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                        Print the history from the machine and see if you are actually using the correct password.

                                        Yup, scroll back (up arrow) or ctrl+R to search your history and see what you actually did.

                                        My money is on bad character in password.

                                        1 Reply Last reply Reply Quote 0
                                        • DonahueD
                                          Donahue @DustinB3403
                                          last edited by

                                          @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                          If you scripted it I don't see how you could be using the incorrect password.

                                          I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                          Print the history from the machine and see if you are actually using the correct password.

                                          how do I do that? I cant see back that far. I am using powershell to connect

                                          Have you disconnected? If not just type "history"

                                          I already closed it, before you said it the first time.

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

                                            @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @Donahue did you just take what @JaredBusch wrote and keyed in each line one by one? If so human error could have gotten you.

                                            If you scripted it I don't see how you could be using the incorrect password.

                                            I just copied and pasted the whole blocks, only changing ncuser, ncuserpassword, and somesecurepassword

                                            Print the history from the machine and see if you are actually using the correct password.

                                            how do I do that? I cant see back that far. I am using powershell to connect

                                            Have you disconnected? If not just type "history"

                                            I already closed it, before you said it the first time.

                                            You can still hit up arrow and ctrl+r

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 9
                                            • 10
                                            • 6 / 10
                                            • First post
                                              Last post