title: Migrating to a new machine description: Copying your Mastodon installation to a new server without losing anything. menu: docs:
weight: 90
parent: admin
Sometimes, for various reasons, you may want to migrate your Mastodon instance from one server to another. Fortunately this is not too difficult of a process, although it may result in some downtime.
{{< hint style="info" >}} This guide was written with Ubuntu Server in mind; your mileage may vary for other setups. {{< /hint >}}
mastodon:setup
).systemctl stop 'mastodon-*.service'
).system/
files using the instructions below. (Note: if you’re using S3, you can skip this step.).env.production
file.RAILS_ENV=production bundle exec rails assets:precompile
to compile MastodonRAILS_ENV=production ./bin/tootctl feeds build
to rebuild the home timelines for each user.At a high level, you’ll need to copy over the following:
~/live/public/system
directory, which contains user-uploaded images and videos (if using S3, you don’t need this)~/live/.env.production
file, which contains server config and secretsLess crucially, you’ll probably also want to copy the following for convenience:
/etc/nginx/sites-available/default
)/etc/systemd/system/mastodon-*.service
), which may contain your server tweaks and customizations/etc/pgbouncer
(if you’re using it)Instead of running mastodon:setup
, we’re going to create an empty Postgres database using the template0
database (which is useful when restoring a Postgres dump, as described in the pg_dump documentation).
Run this as the mastodon
user on your old system:
pg_dump -Fc mastodon_production -f backup.dump
Copy the backup.dump
file over, using rsync
or scp
. Then on the new system, create an empty database as the mastodon
user:
createdb -T template0 mastodon_production
Then import it:
pg_restore -Fc -U mastodon -n public --no-owner --role=mastodon \
-d mastodon_production backup.dump
(Note that if the username is not mastodon
on the new server, you should change the -U
AND --role
values above. It’s okay if the username is different between the two servers.)
This will probably take some time, and you’ll want to avoid re-copying unnecessarily, so using rsync
is recommended. On your old machine, as the mastodon
user, run:
rsync -avz ~/live/public/system/ mastodon@example.com:~/live/public/system/
You’ll want to re-run this if any of the files on the old server change.
You should also copy over the .env.production
file, which contains secrets.
Optionally, you may copy over the nginx, systemd, and pgbouncer config files, or rewrite them from scratch.
You can edit the ~/live/public/500.html
page on the old machine if you want to show a nice error message to let existing users know that a migration is in progress.
You’ll probably also want to set the DNS TTL to something small (30-60 minutes) about a day in advance, so that DNS can propagate quickly once you point it to the new IP address.
You can check whatsmydns.net to see the progress of DNS propagation. To jumpstart the process, you can always edit your own /etc/hosts
file to point to your new server so you can start playing around with it early.