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:

      @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
            • DonahueD
              Donahue
              last edited by

              I still have the block text that I pasted in that has the password that was set initially, its not a bad password

              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:

                I still have the block text that I pasted in that has the password that was set initially, its not a bad password

                Want to bet?

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

                  @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                  @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                  I still have the block text that I pasted in that has the password that was set initially, its not a bad password

                  Want to bet?

                  This is what I pasted in. Maybe I made a mistake somewhere?

                  #Create a database for nextcloud and a user to access it.
                  mysql -e "CREATE DATABASE nextcloud;"
                  mysql -e "CREATE USER 'ncadmin'@'localhost' IDENTIFIED BY 'N@2$#sx67UkIZ^$xsInW0&7Z';"
                  mysql -e "GRANT ALL ON nextcloud.* TO 'ncadmin'@'localhost';"
                  mysql -e "FLUSH PRIVILEGES;"
                  
                  #Secure mariadb. These commands do what mysql_secure_installation does interactively
                  mysql -e "UPDATE mysql.user SET Password=PASSWORD('vX41YtG&Z*^!I*DWVdv$D2k!') WHERE User='root';"
                  mysql -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');"
                  mysql -e "DELETE FROM mysql.user WHERE User='';"
                  mysql -e "DROP DATABASE test;"
                  mysql -e "FLUSH PRIVILEGES;"
                  
                  JaredBuschJ 3 Replies Last reply Reply Quote 0
                  • JaredBuschJ
                    JaredBusch @Donahue
                    last edited by

                    @Donahue Yup. bad password. Hell you are lucky your root password took.

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

                      @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                      @Donahue Yup. bad password. Hell you are lucky your root password took.

                      I am not sure I actually changed the root on mysql, I might just have the root on fedora

                      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:

                        @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                        @Donahue Yup. bad password. Hell you are lucky your root password took.

                        I am not sure I actually changed the root on mysql, I might just have the root on fedora

                        ....................

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

                          what did I do wrong? I still dont see the issue?

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

                            @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                            @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                            @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                            @Donahue Yup. bad password. Hell you are lucky your root password took.

                            I am not sure I actually changed the root on mysql, I might just have the root on fedora

                            ....................

                            The one password that matters wasn't changed.

                            🤦

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

                              @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                              @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                              mysql -e "UPDATE mysql.user SET Password=PASSWORD('vX41YtG&Z*^!I*DWVdv$D2k!') WHERE User='root';"
                              

                              That is you changing the mysql root password. Well setting actually.

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

                                @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                @Donahue Yup. bad password. Hell you are lucky your root password took.

                                I am not sure I actually changed the root on mysql, I might just have the root on fedora

                                ....................

                                The one password that matters wasn't changed.

                                🤦

                                care to elaborate?

                                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:

                                  @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                  @Donahue Yup. bad password. Hell you are lucky your root password took.

                                  I am not sure I actually changed the root on mysql, I might just have the root on fedora

                                  ....................

                                  The one password that matters wasn't changed.

                                  🤦

                                  care to elaborate?

                                  It didn't take the password.

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

                                    @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                    @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                    mysql -e "CREATE USER 'ncadmin'@'localhost' IDENTIFIED BY 'N@2$#sx67UkIZ^$xsInW0&7Z';"
                                    

                                    This is you using an invalid character in a mysql password.

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

                                      @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                      @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                      mysql -e "CREATE USER 'ncadmin'@'localhost' IDENTIFIED BY 'N@2$#sx67UkIZ^$xsInW0&7Z';"
                                      

                                      This is you using an invalid character in a mysql password.

                                      what is the invalid character?

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

                                        @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                        @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                        @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                        @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                        mysql -e "CREATE USER 'ncadmin'@'localhost' IDENTIFIED BY 'N@2$#sx67UkIZ^$xsInW0&7Z';"
                                        

                                        This is you using an invalid character in a mysql password.

                                        what is the invalid character?

                                        The $ in a bash command with double quotes

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

                                          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                          @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                          mysql -e "CREATE USER 'ncadmin'@'localhost' IDENTIFIED BY 'N@2$#sx67UkIZ^$xsInW0&7Z';"
                                          

                                          This is you using an invalid character in a mysql password.

                                          what is the invalid character?

                                          @JaredBusch is probably looking it up, but only numbers and letters are allowed here from what I can find.

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

                                            @DustinB3403 said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @Donahue said in Install Nextcloud 13.0.0 on Fedora 27:

                                            @JaredBusch said in Install Nextcloud 13.0.0 on Fedora 27:

                                            mysql -e "CREATE USER 'ncadmin'@'localhost' IDENTIFIED BY 'N@2$#sx67UkIZ^$xsInW0&7Z';"
                                            

                                            This is you using an invalid character in a mysql password.

                                            what is the invalid character?

                                            @JaredBusch is probably looking it up, but only numbers and letters are allowed here from what I can find.

                                            They can be complex, but you have risks of them being misinterpreted. Like bash reading it as a variable.

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