Mastodon bei Hostsharing: Unterschied zwischen den Versionen
(Hinweis Elasticsearch) |
(Ports vereinheitlicht) |
||
Zeile 8: | Zeile 8: | ||
# Einen Postgresql-User ''xyz00_mastuser'' mit Passwort ''meinPasswort'' | # Einen Postgresql-User ''xyz00_mastuser'' mit Passwort ''meinPasswort'' | ||
# Eine Postgresql-Datenbank ''xyz00_mastdb'' mit Datenbank-Owner ''xyz00_mastuser'' | # Eine Postgresql-Datenbank ''xyz00_mastdb'' mit Datenbank-Owner ''xyz00_mastuser'' | ||
Verwendete IP-Ports der Server-Dienste: | |||
# Monit: localhost:32001 | |||
# Redis: localhost:32002 | |||
# Mastodon-Web: localhost:32003 | |||
# Mastodon-Streming: localhost:32004 | |||
== Konfiguration des Redis Server == | == Konfiguration des Redis Server == | ||
Zeile 15: | Zeile 21: | ||
daemonize yes | daemonize yes | ||
pidfile /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid | pidfile /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid | ||
port | port 32002 | ||
tcp-backlog 128 | tcp-backlog 128 | ||
bind 127.0.0.1 | bind 127.0.0.1 | ||
Zeile 91: | Zeile 97: | ||
REDIS_HOST=localhost | REDIS_HOST=localhost | ||
REDIS_PORT= | REDIS_PORT=32002 | ||
DB_HOST=localhost | DB_HOST=localhost | ||
DB_USER=xyz00_mastuser | DB_USER=xyz00_mastuser | ||
Zeile 137: | Zeile 143: | ||
set mail-format { from: monit@beispiel.social } | set mail-format { from: monit@beispiel.social } | ||
set alert mastodon@beispiel.social | set alert mastodon@beispiel.social | ||
set httpd port | set httpd port 32001 address xyz00.hostsharing.net | ||
allow phormanns:monit | allow phormanns:monit | ||
check process redis with pidfile /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid | check process redis with pidfile /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid | ||
Zeile 144: | Zeile 150: | ||
check process mstdn_web with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/puma.pid | check process mstdn_web with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/puma.pid | ||
depends redis | depends redis | ||
start program "/bin/bash -c 'export HOME=/home/pacs/xyz00/users/mastodon && cd $HOME/mastodon/live && ( $HOME/.rbenv/shims/bundle exec puma -C config/puma.rb -e production -b tcp://127.0.0.1: | start program "/bin/bash -c 'export HOME=/home/pacs/xyz00/users/mastodon && cd $HOME/mastodon/live && ( $HOME/.rbenv/shims/bundle exec puma -C config/puma.rb -e production -b tcp://127.0.0.1:32003 >$HOME/mastodon/var/puma.log 2>&1 & echo $! > $HOME/mastodon/var/puma.pid )'" | ||
stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/puma.pid )'" | stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/puma.pid )'" | ||
check process mstdn_sidekiq with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/sidekiq.pid | check process mstdn_sidekiq with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/sidekiq.pid | ||
Zeile 152: | Zeile 158: | ||
check process mstdn_streaming with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/streaming.pid | check process mstdn_streaming with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/streaming.pid | ||
depends redis | depends redis | ||
start program "/bin/bash -c 'export HOME=/home/pacs/xyz00/users/mastodon && export NVM_DIR="$HOME/.nvm" && export NVM_BIN=/home/pacs/xyz00/users/mastodon/.nvm/versions/node/v6.14.3/bin && export NODE_ENV=production && export PORT= | start program "/bin/bash -c 'export HOME=/home/pacs/xyz00/users/mastodon && export NVM_DIR="$HOME/.nvm" && export NVM_BIN=/home/pacs/xyz00/users/mastodon/.nvm/versions/node/v6.14.3/bin && export NODE_ENV=production && export PORT=32004 && BIND=127.0.0.1 && cd $HOME/mastodon/live && ( $HOME/.nvm/versions/node/v6.14.3/bin/node streaming/index.js >$HOME/mastodon/var/streaming.log 2>&1 & echo $! > $HOME/mastodon/var/streaming.pid )'" | ||
stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/streaming.pid )'" | stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/streaming.pid )'" | ||
Zeile 169: | Zeile 175: | ||
RewriteBase / | RewriteBase / | ||
RewriteCond %{REQUEST_URI} ^/api/v1/streaming [NC] | RewriteCond %{REQUEST_URI} ^/api/v1/streaming [NC] | ||
RewriteRule .* ws://localhost: | RewriteRule .* ws://localhost:32004%{REQUEST_URI} [proxy] | ||
RequestHeader set X-Forwarded-Proto "https" | RequestHeader set X-Forwarded-Proto "https" | ||
RewriteCond %{REQUEST_FILENAME} !-f | RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-l | RewriteCond %{REQUEST_FILENAME} !-l | ||
RewriteRule .* http://localhost: | RewriteRule .* http://localhost:32003%{REQUEST_URI} [proxy] | ||
RequestHeader set X-Forwarded-Proto "https" | RequestHeader set X-Forwarded-Proto "https" | ||
== Cronjobs == | == Cronjobs == | ||
Zeile 203: | Zeile 207: | ||
* https://github.com/tootsuite/documentation/blob/master/Running-Mastodon/Production-guide.md | * https://github.com/tootsuite/documentation/blob/master/Running-Mastodon/Production-guide.md | ||
* https://krinetzki.de/2017/04/installation-von-mastodon-auf-debian-8-jessie/ | * https://krinetzki.de/2017/04/installation-von-mastodon-auf-debian-8-jessie/ | ||
[[Kategorie:Installationsanleitungen]] | [[Kategorie:Installationsanleitungen]] |
Version vom 10. August 2018, 16:16 Uhr
Für Managed Server
Ein funktionierender Mastodon-Server erfordert mehrere laufende Server-Dienste. Für den Betrieb ist ein Managed Server sinnvoll.
Vorbereitungen
Mit Hilfe von HSAdmin wird angelegt:
- Ein User als Service-User mit /bin/bash als Shell, zum Beispiel Beispiel: xyz00-mastodon
- Eine Domain mit xyz00-mastodon als Domain-Administrator, zum Beispiel beispiel.social
- Einen Postgresql-User xyz00_mastuser mit Passwort meinPasswort
- Eine Postgresql-Datenbank xyz00_mastdb mit Datenbank-Owner xyz00_mastuser
Verwendete IP-Ports der Server-Dienste:
- Monit: localhost:32001
- Redis: localhost:32002
- Mastodon-Web: localhost:32003
- Mastodon-Streming: localhost:32004
Konfiguration des Redis Server
Anlegen einer Datei /home/pacs/xyz00/users/mastodon/redis/etc/redis.conf mit folgendem Inhalt:
daemonize yes pidfile /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid port 32002 tcp-backlog 128 bind 127.0.0.1 timeout 300 loglevel notice logfile /home/pacs/xyz00/users/mastodon/redis/var/redis.log databases 16 save 900 1 save 300 10 save 60 10000 slave-serve-stale-data yes appendonly no dbfilename dump.rdb dir /home/pacs/xyz00/users/mastodon/redis/var
Installation von NodeJS
Als User 'xyz00-mastodon: Installation von nvm und nodejs (Version 6) nach der Anleitung NodeJS
Installation von yarn mit:
npm install -g yarn
Installation von Ruby
Als User xyz00-mastodon: Installation von Ruby mit rbenv mit folgenden Befehlen:
Zunächst rbenv and ruby-build:
git clone https://github.com/rbenv/rbenv.git ~/.rbenv cd ~/.rbenv && src/configure && make -C src echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.profile echo 'eval "$(rbenv init -)"' >> ~/.profile
starte neue Shell:
exec bash
Überprüfe rbenv-Installation
type rbenv
Installiere ruby-build als rbenv-Plugin
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
Nun kann die benötigte Ruby-Bersion installiert werden:
rbenv install 2.5.1
Installation der Mastodon Software
Weiterhin Als User xyz00-mastodon:
cd ~ git clone https://github.com/tootsuite/mastodon.git live cd ~/live
Die stabile Version auschecken:
git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
Ruby Pakete installieren:
gem install bundler bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test
Node.js Pakete installieren:
yarn install --pure-lockfile
Konfiguration der Mastodon Software
Anlegen einer Datei /home/pacs/xyz00/users/mastodon/mystodon/live/.env.production mit dem folgenden Inhalt:
REDIS_HOST=localhost REDIS_PORT=32002 DB_HOST=localhost DB_USER=xyz00_mastuser DB_NAME=xyz00_mastdb DB_PASS=meinPasswort DB_PORT=5432 LOCAL_DOMAIN=beispiel.social SECRET_KEY_BASE=12ab.. OTP_SECRET=34ef.. VAPID_PRIVATE_KEY=ABCD.. VAPID_PUBLIC_KEY=EFGH.. DEFAULT_LOCALE=de SMTP_SERVER=localhost SMTP_PORT=25 SMTP_FROM_ADDRESS=notifications@beispiel.social SMTP_AUTH_METHOD=none SMTP_OPENSSL_VERIFY_MODE=none STREAMING_CLUSTER_NUM=1
Die Zufallswerte für die Variablen SECRET_KEY_BASE und OTP_SECRET erzeugt man durch zwei Aufrufe des Kommandos
RAILS_ENV=production bundle exec rake secret
Die Werte für VAPID_PRIVATE_KEY und VAPID_PUBLIC_KEY erzeugt das Kommando
RAILS_ENV=production bundle exec rake mastodon:webpush:generate_vapid_key
Initialisieren der Datenbank:
export SAFETY_ASSURED=1 RAILS_ENV=production bundle exec rails db:schema:load RAILS_ENV=production bundle exec rails db:seed
Starten der Dienste
Zum Start aller notwendigen Dienste wird in dieser Anleitung monit benutzt. Hier ein Beispiel für eine Datei .monitrc (überlange Zeilen werden hier im Wiki umgebrochen)
set daemon 60 with start delay 120 set logfile /home/pacs/xyz00/users/mastodon/monit/var/monit.log set idfile /home/pacs/xyz00/users/mastodon/monit/var/monit.id set statefile /home/pacs/xyz00/users/mastodon/monit/var/monit.state set mailserver localhost set mail-format { from: monit@beispiel.social } set alert mastodon@beispiel.social set httpd port 32001 address xyz00.hostsharing.net allow phormanns:monit check process redis with pidfile /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid start program "/usr/bin/redis-server /home/pacs/xyz00/users/mastodon/redis/etc/redis.conf" stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/redis/var/redis-server.pid )'" check process mstdn_web with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/puma.pid depends redis start program "/bin/bash -c 'export HOME=/home/pacs/xyz00/users/mastodon && cd $HOME/mastodon/live && ( $HOME/.rbenv/shims/bundle exec puma -C config/puma.rb -e production -b tcp://127.0.0.1:32003 >$HOME/mastodon/var/puma.log 2>&1 & echo $! > $HOME/mastodon/var/puma.pid )'" stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/puma.pid )'" check process mstdn_sidekiq with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/sidekiq.pid depends redis start program "/bin/bash -c 'export RAILS_ENV=production && export DB_POOL=5 && export HOME=/home/pacs/xyz00/users/mastodon && cd $HOME/mastodon/live && ( $HOME/.rbenv/shims/bundle exec sidekiq -c 5 -q default -q mailers -q pull -q push >$HOME/mastodon/var/sidekiq.log 2>&1 & echo $! > $HOME/mastodon/var/sidekiq.pid )'" stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/sidekiq.pid )'" check process mstdn_streaming with pidfile /home/pacs/xyz00/users/mastodon/mastodon/var/streaming.pid depends redis start program "/bin/bash -c 'export HOME=/home/pacs/xyz00/users/mastodon && export NVM_DIR="$HOME/.nvm" && export NVM_BIN=/home/pacs/xyz00/users/mastodon/.nvm/versions/node/v6.14.3/bin && export NODE_ENV=production && export PORT=32004 && BIND=127.0.0.1 && cd $HOME/mastodon/live && ( $HOME/.nvm/versions/node/v6.14.3/bin/node streaming/index.js >$HOME/mastodon/var/streaming.log 2>&1 & echo $! > $HOME/mastodon/var/streaming.pid )'" stop program "/bin/bash -c '/bin/kill $( cat /home/pacs/xyz00/users/mastodon/mastodon/var/streaming.pid )'"
Einrichten des Apache VHost
cd ~/doms/beispiel.social rm -rf htdocs-ssl subs/www subs-ssl/www ln -s ~/live/public htdocs-ssl touch htdocs-ssl/.htaccess
Dann die htdocs-ssl/.htaccess mit dem Editor der Wahl öffnen und folgende Konfiguration einfügen:
DirectoryIndex disabled RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^/api/v1/streaming [NC] RewriteRule .* ws://localhost:32004%{REQUEST_URI} [proxy] RequestHeader set X-Forwarded-Proto "https" RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-l RewriteRule .* http://localhost:32003%{REQUEST_URI} [proxy] RequestHeader set X-Forwarded-Proto "https"
Cronjobs
Cron wird für zwei Aufgaben genutzt:
- Start von monit nach einem Server Reboot
- Aufräumen von alten Resourcen
Einrichten der crontab mit cronttab -e
HOME=/home/pacs/xyz00/users/mastodon MAILTO=mastodon@beispiel.social RAILS_ENV=production NUM_DAYS=31 @reboot /usr/bin/monit -c $HOME/.monitrc 18 4 * * * cd $HOME/mastodon/live && $HOME/.rbenv/shims/bundle exec rake mastodon:media:remove_remote
Volltextsuche
In der installierten Version gibt es noch keine Volltextsuche. Es kann lediglich nach Nutzerkennungen und Hastags gesucht werden. Für die Volltextsuche kann optional Elasticsearch installiert werden.