mirror of https://framagit.org/tykayn/mastodon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
353 B
13 lines
353 B
#!/bin/bash |
|
|
|
echo "########## time to check the services, this script must be run with an user able to manage services, someone with sudo rights for example" |
|
sudo service postgresql status |
|
sudo service mastodon-* status |
|
echo "########## run: |
|
sudo service mastodon-* restart |
|
|
|
and check that everything is working fine |
|
|
|
sudo journalctl -feu mastodon-* |
|
|
|
"
|
|
|