建ててあるMastodonインスタンスのVer,Upをしてみました。
手順はQiita – Conoha の Mastodon テンプレート 1.2 -> 1.4.3 にバージョンアップ(non Docker)の通りにやっただけ。
記事が消えると困るので以下にもメモしておきます。
mastodonユーザへ切り替え
su mastodon
mastodonをアップデートするためのフォルダへ移動
cd /home/mastodon/live
githubから情報を引っ張ってくる
git fetch
git checkout v1.4.3
bundle install
yarn install
アップデート実施
RAILS_ENV=production bundle exec rails mastodon:maintenance:prepare_for_foreign_keys
RAILS_ENV=production bundle exec rails assets:precompile
RAILS_ENV=production bundle exec rails db:migrate
RAILS_ENV=production bundle exec rails r Rails.cache.clear
mastodonユーザからrootユーザへ切り替える
exit
サービスを再起動する
systemctl restart mastodon-sidekiq
systemctl restart mastodon-streaming
systemctl restart mastodon-web
以上。