How to Install Mastodon on Ubuntu 20.04 Server
This tutorial is going to show you how to install Mastodon on Ubuntu 20.04 server. Mastodon is an open-source decentralized social network. Itâs like Twitter, but decentralized. You can set up a Mastodon instance on your server and connect to other Mastodon instances.
Note: Ubuntu 22.04 ships with OpenSSL 3.0. Mastodon is currently not compatible with OpenSSL 3.0.
Mastodon Features
- Total data control. You can download all your posts and migrate to another instance.
- Never worry about account termination by a central organization.
- Each Mastodon instance can set its own rules.
- 500 character limit per post.
- Mobile-friendly, responsive web design. Users can read or post from laptop, tablet and phone.
- 100% free open source. No paid commercial version with better or more complete features.
- Official mobile apps for Mastodon are available for iOS and Android
- And many more.
Mastodon is written with React.js and Ruby on Rails, using PostgreSQL as the back-end database management system.
Prerequisites
Hereâs what you should prepare before setting up your own Mastodon instance.
1.A domain name. You need a domain name, so other people can access your Mastodon instance. I registered my domain name at NameCheap because the price is low and they give whois privacy protection free for life.
2. A server. To run Mastodon, you need a server with at least 2GB RAM. If you are looking for a virtual private server (VPS), I recommend Kamatera VPS, which features:
- 30 days free trial.
- Starts at $4/month (1GB RAM)
- High-performance KVM-based VPS
- 9 data centers around the world, including the United States, Canada, UK, Germany, The Netherlands, Hong Kong, and Isreal.
- CPU and RAM hot-add. You can temporarily upgrade the server CPU and RAM for free without a reboot.
Follow the tutorial linked below to create your Linux VPS server at Kamatera.
3. SMTP Service. You need to use an SMTP server to send emails for account registration and various other notifications. You can set up your own email server (which takes some time), or use a free SMTP relay service (easier)
Once the above requirements are met, follow the steps below to install Mastodon.
Step 1: Configure PostgreSQL Database Server
Log into your server via SSH. PostgreSQL is available in the default Ubuntu repository. However, the PostgreSQL team always strives to make performance improvements with every new version, so we will install the latest version of PostgreSQL from the upstream repository.
Add the upstream repository.
echo "deb [signed-by=/etc/apt/keyrings/postgresql.asc] http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
Import the PostgreSQL public key.
sudo mkdir -p /etc/apt/keyrings/ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo tee /etc/apt/keyrings/postgresql.asc
Update repository index and install PostgreSQL.
sudo apt update sudo apt install -y postgresql postgresql-contrib
PostgreSQL database server will automatically start and listens on 127.0.0.1:5432
, as can be seen with the following command.
sudo ss -lnpt | grep postgres
If you donât see any output from the above command, itâs probably because PostgreSQL server isnât running. You can start PostgreSQL server by issuing the following command.
sudo systemctl start postgresql
The postgres
user is created on the OS during the installation process. Itâs the super user for PostgreSQL database server. We can use sudo
to switch to the postgres
user and log into the PostgreSQL console.
sudo -u postgres -i psql
Create a database for Mastodon.
CREATE DATABASE mastodon;
Create a database user.
CREATE USER mastodon;
Set a password for this user.
ALTER USER mastodon WITH ENCRYPTED PASSWORD 'your_preferred_password';
Give this user permission to create database.
ALTER USER mastodon createdb;
Set this user as the owner of Mastodon database.
ALTER DATABASE mastodon OWNER TO mastodon;
Log out from the PostgreSQL console.
\q
Step 2: Install Ruby on Ubuntu 20.04
Mastodon requires Ruby 2.5+. Ubuntu 20.04 repository includes the ruby
package, so run the following command to install it.
sudo apt install ruby ruby-dev
To check your Ruby version number, run
ruby -v
Sample output:
ruby 2.7.4p191 (2021-07-07 revision a21a3b7d23) [x86_64-linux-gnu]
Step 3: Download and Configure Mastodon
Create the mastodon
user.
sudo adduser mastodon --system --group --disabled-login
Install the git tool.
sudo apt install git
Run the following command to clone the Mastodon code repository from Github.
git clone https://github.com/tootsuite/mastodon.git
Create the /var/www/
directory, if itâs not already created.
sudo mkdir -p /var/www/
Move the mastodon
directory to /var/www/
.
sudo mv mastodon/ /var/www/
Change the owner to mastodon
.
sudo chown mastodon:mastodon /var/www/mastodon/ -R
Change directory and check out the latest stable release of Mastodon. You can go to the Github releases page to see the latest stable version. Iâm now using v3.5.3.
cd /var/www/mastodon/ sudo -u mastodon git checkout v3.5.3
Install bundler
: the Ruby dependency manager.
sudo gem install bundler
Install Node.js.
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash - sudo apt install nodejs
Install Yarn, a Node.js package manager.
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - sudo apt update sudo apt -y install yarn
Install required packages to compile source code.
sudo apt install redis-server optipng pngquant jhead jpegoptim gifsicle nodejs imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file g++ libprotobuf-dev protobuf-compiler pkg-config gcc autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev libidn11-dev libicu-dev libjemalloc-dev
Then install dependency packages for Mastodon.
sudo -u mastodon bundle config deployment 'true' sudo -u mastodon bundle config without 'development test' sudo -u mastodon bundle install -j$(getconf _NPROCESSORS_ONLN)
Run the setup wizard.
sudo -u mastodon RAILS_ENV=production bundle exec rake mastodon:setup
First, it will ask you a series of questions.
- Domain name: Choose a domain name to use for your Mastodon instance. For example, I use
social.linuxbabe.com
. - Enable single user mode: If you want visitors to be able to register on your Mastodon instance, then donât enable single user mode.
- Are you using Docker to run Mastodon: No.
- PostgreSQL host: 127.0.0.1
- PostgreSQL port: 5432
- PostgreSQL database: mastodon
- PostgreSQL user: mastodon
- PostgreSQL user password: enter the password for the mastodon user which is created in step 1.
- Redis host: 127.0.0.1
- Redis port: 6379
- Redis password: Just press
Enter
, because thereâs no password for Redis. - Do you want to store uploaded files on the cloud? If you want to store user-uploaded files in S3 object storage, then you can choose
Yes
. I just want to store files on my own server, so I chooseNo
. - Do you want to send emails from localhost? If this is your mail server, or you have set up an SMTP relay, then you can choose
Yes
. If you chooseNo
, then you need to enter your SMTP server login credentials. - E-mail address to send e-mails âfromâ: You can press
Enter
to use the default sender email address. - Send a test e-mail with this configuration right now? Choose Yes to send a test email.
- Send test e-mail to: Enter the test email address.
- Save configuration? Choose
Yes
.
Next, Choose Yes to set up the database.
Now that configuration is saved, the database schema must be loaded. If the database already exists, this will erase its contents. Prepare the database now? y
Finally, choose Yes to compile CSS/JS assets.
The final step is compiling CSS/JS assets. This may take a while and consume a lot of RAM. Compile the assets now? (Y/n)y
Hint: If Mastodon fails to compile, you should upgrade the server to 2 CPU cores and 3G RAM. If you use Kamatera VPS, it allows you to temporarily upgrade the server CPU and RAM for free without a reboot (Hot Add). Then run the following command again to compile Mastodon CSS/JS assets. Make sure you change back to the original server specs, so Kamatera wonât charge extra dollars for CPU/RAM hot add.
sudo -u mastodon RAILS_ENV=production bundle exec rake mastodon:setup
Once thatâs done, you can create an admin user.
Do you want to create an admin user straight away? Yes Username: super_admin E-mail: [email protected] You can login with the password: 0b8c9359a98059aWg0yhPyVP3eeOn6715eeb
Step 4: Start Mastodon
Mastodon provides convenient systemd service templates. We can copy them to the /etc/sysetmd/system/
directory.
sudo cp /var/www/mastodon/dist/mastodon*.service /etc/systemd/system/
Then we need to make some changes to the .service
files. Change the working directory from /home/mastodon/live/
to /var/www/mastodon/
.
sudo sed -i 's/home\/mastodon\/live/var\/www\/mastodon/g' /etc/systemd/system/mastodon-*.service
Change /home/mastodon/.rbenv/shims/bundle
to /usr/local/bin/bundle
.
sudo sed -i 's/home\/mastodon\/.rbenv\/shims/usr\/local\/bin/g' /etc/systemd/system/mastodon-*.service
Reload systemd for the changes to take effect.
sudo systemctl daemon-reload
Start the 3 systemd services.
sudo systemctl enable --now mastodon-web mastodon-sidekiq mastodon-streaming
Check status. Make sure they are all in active (running)
state.
sudo systemctl status mastodon-web mastodon-sidekiq mastodon-streaming
Wait a few seconds, then run the following command to check if Mastodon is listing on port 3000.
sudo ss -lnpt | grep 3000
If Mastodon is running properly, it should output:
LISTEN 0 1024 127.0.0.1:3000 0.0.0.0:* users:(("ruby2.7",pid=43543,fd=5),("ruby2.7",pid=43535,fd=5),("ruby2.7",pid=43520,fd=5))
If port 3000 thousand is already taken by another process, you need to edit the /etc/systemd/system/mastodon-web.service
file.
sudo nano etc/systemd/system/mastodon-web.service
Find the following line.
Environment="PORT=3000"
Change the port number like 3001, so Mastodon will be listening on port 3001. Reload systemd and restart Mastodon.
sudo systemctl daemon-reload sudo systemctl restart mastodon-web
Step 5: Configure Nginx Reverse Proxy
Install Nginx web server from the default Ubuntu 20.04 software repository.
sudo apt install nginx
Copy the Nginx template configuration file.
sudo cp /var/www/mastodon/dist/nginx.conf /etc/nginx/conf.d/mastodon.conf
Edit the new file.
sudo nano /etc/nginx/conf.d/mastodon.conf
Find the following line in both the port 80 server block and port 443 server block.
server_name example.com;
Change the server name. Donât forget to add DNS A record for the domain name.
server_name social.example.com;
Find the following line in both the port 80 server block and port 443 server block.
root /home/mastodon/live/public;
Change it to:
root /var/www/mastodon/public;
Find the following two lines.
# ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; # ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
Change them to the following, so Nginx will tempoarily use a self-signed TLS certificate. We will obtain a valid Letâs Encrypt certificate later.
ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem; ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
Save and close the file. Create the cache directory.
sudo mkdir -p /var/nginx/cache/
Then test Nginx configuration.
sudo nginx -t
If the test is successful, reload Nginx for the changes to take effect.
sudo systemctl reload nginx
Now you should be able to see the Mastodon forum at http://social.example.com
.
Step 7: Enable HTTPS
To encrypt HTTP traffic, we can enable HTTPS by installing a free TLS certificate issued from Letâs Encrypt. Run the following command to install Letâs Encrypt client (certbot) on Ubuntu 20.04 server.
sudo apt install certbot python3-certbot-nginx
Next, run the following command to obtain and install TLS certificate.
sudo certbot --nginx --agree-tos --redirect --hsts --staple-ocsp --email [email protected] -d social.example.com
Where
--nginx
: Use the nginx plugin.--agree-tos
: Agree to terms of service.--redirect
: Force HTTPS by 301 redirect.--hsts
: Add the Strict-Transport-Security header to every HTTP response. Forcing browser to always use TLS for the domain. Defends against SSL/TLS Stripping.--staple-ocsp
: Enables OCSP Stapling. A valid OCSP response is stapled to the certificate that the server offers during TLS.--email
: an email address is required to receive important email notification for your TLS certificates.
The certificate should now be obtained and automatically installed.
And you can access Mastodon forum via HTTPS (https://social.example.com
).
And you can login using the admin account created in step 3. After login, you should change the password.
Canât Send Emails?
If Mastodon fails to send emails, you can find out what went wrong by going to the https://social.example.com/sidekiq/retries
URL, assuming you are logged in as the admin user.
How to Back Up and Restore Mastodon Database
Dump the database into a tar archive.
sudo -u postgres -i pg_dump -F t mastodon > mastodon_pgsql.tar
Restore the database.
sudo -u postgres -i pg_restore --clean --dbname=mastodon /path/to/the/mastodon_pgsql.tar
To back up the /var/www/mastodon/
folder, I recommend using Duplicati.
Troubleshooting Mastodon Runtime Error
If the Mastodon web page isnât working, you should check the sysetmd journals.
sudo journalctl -eu mastodon-web sudo journalctl -eu mastodon-sidekiq sudo journalctl -eu mastodon-streaming
Conclusion
I hope this article helped you install Mastodon forum software on Ubuntu 20.04. As always, if you found this post useful, then subscribe to our free newsletter to get more tips and tricks. Take care đ
Unfortunately I always receive an error while trying to install bundler
ERROR: Could not find a valid gem âbundlerâ (>= 0), here is why:
Unable to download data from https://rubygems.org/ â timed out (https://rubygems.org/specs.4.8.gz)
Please, where to find the .env file?
Hi Propper,
Some commands require you to be in the
/var/www/mastodon/
directory, which stores the.env
files.@Xiao
Thank you for your quick reply. My fingers were faster than my thoughts⊠sorry about that.
Could not find (see) the [.env] file because of the [.]
Very good post, Mastodon runs right away.
Thx
I cannot figure out how to fix
I presume i need a older version of openssl, but i dont know how to install it.
Are you using Ubuntu 22.04?
Yes, freshly installed server iso.
Please use Ubuntu 20.04
Oh wow, my bad. Thanks for help. <3