Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Mastodon
  3. Change Cloudron user management to Mastodon (app) user management on existed app

Change Cloudron user management to Mastodon (app) user management on existed app

Scheduled Pinned Locked Moved Solved Mastodon
18 Posts 4 Posters 4.2k Views 4 Watching
  • 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.
  • itbeardI itbeard

    @nebulon I already migrated 🙂 In half an hour can describe manual of how I did it (if needed)

    nebulonN Offline
    nebulonN Offline
    nebulon
    Staff
    wrote on last edited by
    #8

    @itbeard ah very nice, yes this would be very helpful to share. We can then also put something in our docs for other users to benefit from.

    1 Reply Last reply
    1
    • itbeardI Offline
      itbeardI Offline
      itbeard
      wrote on last edited by itbeard
      #9

      So, how switch your currently existing Mastodon app from Cloudron user management to Mastodon user management?

      Short answer - it is impossible, but... You can save settings and create DB dump, then delete the old app, create a new one and apply old settings and dump of DB!
      This approach works only if your Mastodone app use external file storage for files (like S3 or else). If you store user files inside Cloudron - you need to download them to your computer before switching!

      Prerequisite:

      1. You need dump of app postgress DB. It can be done through app console and command
        PGPASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} pg_dump --no-owner --no-privileges --username=${CLOUDRON_POSTGRESQL_USERNAME} --host=${CLOUDRON_POSTGRESQL_HOST} ${CLOUDRON_POSTGRESQL_DATABASE} > /tmp/pgdump.sql
        Your dump will be waiting for you at tmp/pgdump.sql. Just upload it to your local machine by pressing "Upload" button in app terminal (PC, laptop, whatever)
      2. You need to save your custom settings from .env.production file. File placed in app/code folder - just type ls -a to see it and then use vim to copy file content.
      3. In app settings save to notes your notification email-address (if you change it after installation).

      Steps to switching:
      0. Turn on RecoveryMode of your old instance

      1. Save all settings and DB dump (see info above)
      2. Delete old app
      3. Install new Mastodon app from Cloudrone AppStore
        • !IMPORTANT: during the installation process choice "Leave user management to the app" option!
      4. After app installation you need just update .env.production, re-set email address for notification, and import DB (more info about importing process here https://docs.cloudron.io/guides/import-postgresql/)
        • IMPORTANT: Do all of the updates in RecoveryMode of app
      5. Upload old files (if you do not use an external file store like Amazon S3 etc.)

      That is it! After these short manipulations (it takes 20-30mins) Mastadon user management will be turned on and your users will be able to reset their passwords without any troubles.

      1 Reply Last reply
      3
      • itbeardI itbeard referenced this topic on
      • itbeardI itbeard referenced this topic on
      • nebulonN Offline
        nebulonN Offline
        nebulon
        Staff
        wrote on last edited by
        #10

        @itbeard awesome, thanks a lot for the writeup. I will try to play this through on my end to verify the process.

        itbeardI 1 Reply Last reply
        2
        • nebulonN nebulon

          @itbeard awesome, thanks a lot for the writeup. I will try to play this through on my end to verify the process.

          itbeardI Offline
          itbeardI Offline
          itbeard
          wrote on last edited by itbeard
          #11

          @nebulon IMPORTANT!
          After migration to Mastadon user management, we found the small (or not) issue: 2FA authentication keys based on one-time-password were broken for users who used them. Looks like those keys were related to the environment, but the environment was changed (because we create new Mastodon App while migrating the process).

          As a result we decided to disable 2FA for all our users who used it before migration.

          How it can be fixed:

          1. Find all users in DB who use 2FA (look into table public.users, column otp_required_for_login with value 't')
          2. Reset for those users next columns values to default: otp_required_for_login, otp_backup_codes, encrypted_otp_secret, encrypted_otp_secret_iv, encrypted_otp_secret_salt
          3. Send an email to those users asking them to re-setting-up 2FA.

          What the interesting - disable 2FA through admin panel does not works for users from old app, so we did it right through DB

          1 Reply Last reply
          3
          • R Offline
            R Offline
            redegelde
            wrote on last edited by
            #12

            sound good,
            okay what if i am transferring from VPS. Is this the same routine?
            or easier by setting up clean cloudron Mastodon app and then putting back the backup
            regards
            Eric

            itbeardI 1 Reply Last reply
            0
            • R redegelde

              sound good,
              okay what if i am transferring from VPS. Is this the same routine?
              or easier by setting up clean cloudron Mastodon app and then putting back the backup
              regards
              Eric

              itbeardI Offline
              itbeardI Offline
              itbeard
              wrote on last edited by
              #13

              @redegelde looks the same. You need to transfer only files, Mastodon config, and Postgre DB (Reddis DB also can be transferred but is not necessary). But be sure that your version of Mastodon exactly the same as on Cloudron (4.0.2 for now). There can be an incompatibility between DB schemes of two different versions of Mastodon.

              R 1 Reply Last reply
              1
              • R redegelde referenced this topic on
              • itbeardI itbeard

                @redegelde looks the same. You need to transfer only files, Mastodon config, and Postgre DB (Reddis DB also can be transferred but is not necessary). But be sure that your version of Mastodon exactly the same as on Cloudron (4.0.2 for now). There can be an incompatibility between DB schemes of two different versions of Mastodon.

                R Offline
                R Offline
                redegelde
                wrote on last edited by
                #14

                @itbeard pfff, hope for easy fix on running instance. It is lot of work, and with an instance with almost 800 users now tricky, dont wont to lose them

                girishG itbeardI 2 Replies Last reply
                0
                • R redegelde

                  @itbeard pfff, hope for easy fix on running instance. It is lot of work, and with an instance with almost 800 users now tricky, dont wont to lose them

                  girishG Offline
                  girishG Offline
                  girish
                  Staff
                  wrote on last edited by
                  #15

                  @redegelde an idea is to do a "dry run" first. Just clone the app and play around with the commands to see how well it works.

                  1 Reply Last reply
                  2
                  • girishG girish referenced this topic on
                  • R redegelde

                    @itbeard pfff, hope for easy fix on running instance. It is lot of work, and with an instance with almost 800 users now tricky, dont wont to lose them

                    itbeardI Offline
                    itbeardI Offline
                    itbeard
                    wrote on last edited by
                    #16

                    @redegelde I did it on the instance with 500+ users and all was fine. Just keep backup near)

                    1 Reply Last reply
                    1
                    • R Offline
                      R Offline
                      redegelde
                      wrote on last edited by
                      #17

                      Wow okay. Thank you

                      1 Reply Last reply
                      0
                      • nebulonN nebulon marked this topic as a question on
                      • nebulonN nebulon has marked this topic as solved on
                      • R Offline
                        R Offline
                        redegelde
                        wrote on last edited by
                        #18

                        been a while, and still on the Cloudron But more and more now not able to changer there email or password getting the the line "your are logged in external"
                        so i thing going to run your steps @itbeard or does Cloudron have the solution now
                        regards
                        Eric

                        1 Reply Last reply
                        1
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • Bookmarks
                        • Search