I did the 2.8 update, but the only response from the server is a 500 error, with the page “This page is not correct” which has the error gif and " We’re sorry, but something went wrong on our end."
How do I see what the exact error is on my server?
journalctl -xf -u mastodon-*
Is not showing me any errors, just times when the services started up.
So went through the install steps again one by one, and got it to work using these commands exactly: (the major part was restarting the services one by one instead of using restart with a wildcard)
su - mastodon
cd ~/live
git fetch --tags
git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
bundle install --deployment --without development test
RAILS_ENV=production bundle exec rails db:migrate
exit
systemctl stop mastodon-*
su - mastodon
cd ~/live
RAILS_ENV=production bundle exec rails assets:precompile
exit
systemctl start mastodon-web && systemctl start mastodon-streaming && systemctl start mastodon-sidekiq